From 7fd7655d885e3cad70bc1b4b3594f0d2e2b76bb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E4=B8=96=E5=BC=BA?= Date: Tue, 14 Feb 2023 20:06:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/xml/TtFeedingEquipMapper.xml | 12 - .../controller/TtPouringEquipController.java | 13 + .../ttpouringequip/entity/TtPouringEquip.java | 4 + .../mapper/TtPouringEquipMapper.java | 1 + .../mapper/xml/TtPouringEquipMapper.xml | 15 + .../service/ITtPouringEquipService.java | 3 + .../impl/TtPouringEquipServiceImpl.java | 9 + .../controller/TtSulfEquipController.java | 2 +- logs/error-log.html | 12448 --- logs/jeecgboot-2023-02-14.0.html | 80286 ---------------- 10 files changed, 46 insertions(+), 92747 deletions(-) delete mode 100644 logs/error-log.html delete mode 100644 logs/jeecgboot-2023-02-14.0.html diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttfeedingequip/mapper/xml/TtFeedingEquipMapper.xml b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttfeedingequip/mapper/xml/TtFeedingEquipMapper.xml index 4f46869..8a0998c 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttfeedingequip/mapper/xml/TtFeedingEquipMapper.xml +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttfeedingequip/mapper/xml/TtFeedingEquipMapper.xml @@ -1,18 +1,6 @@ - \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/controller/TtPouringEquipController.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/controller/TtPouringEquipController.java index 38ccc35..d27f82a 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/controller/TtPouringEquipController.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/controller/TtPouringEquipController.java @@ -91,6 +91,19 @@ public class TtPouringEquipController extends JeecgController> Pouring(TtPouringEquip ttPouringEquip){ + List list = ttPouringEquipService.queryPouringInfo(ttPouringEquip); + return Result.OK(list); + } /** * 添加 diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/entity/TtPouringEquip.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/entity/TtPouringEquip.java index fb3659b..34e24be 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/entity/TtPouringEquip.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/entity/TtPouringEquip.java @@ -65,4 +65,8 @@ public class TtPouringEquip implements Serializable { @TableField(exist = false) private String eqtSupplier; + @TableField(exist = false) + private Integer eqtStatus; + @TableField(exist = false) + private BigDecimal utilizeRate; } diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/TtPouringEquipMapper.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/TtPouringEquipMapper.java index 40e8544..b48c5dd 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/TtPouringEquipMapper.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/TtPouringEquipMapper.java @@ -13,5 +13,6 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; * @Version: V1.0 */ public interface TtPouringEquipMapper extends BaseMapper { + List queryPouring(TtPouringEquip ttPouringEquip); } diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/xml/TtPouringEquipMapper.xml b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/xml/TtPouringEquipMapper.xml index 5991dda..009d567 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/xml/TtPouringEquipMapper.xml +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/mapper/xml/TtPouringEquipMapper.xml @@ -1,5 +1,20 @@ + \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/ITtPouringEquipService.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/ITtPouringEquipService.java index c52d314..2eee0a0 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/ITtPouringEquipService.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/ITtPouringEquipService.java @@ -3,6 +3,8 @@ package org.jeecg.modules.demo.ttpouringequip.service; import org.jeecg.modules.demo.ttpouringequip.entity.TtPouringEquip; import com.baomidou.mybatisplus.extension.service.IService; +import java.util.List; + /** * @Description: tt_pouring_equip * @Author: jeecg-boot @@ -10,5 +12,6 @@ import com.baomidou.mybatisplus.extension.service.IService; * @Version: V1.0 */ public interface ITtPouringEquipService extends IService { + List queryPouringInfo(TtPouringEquip ttPouringEquip); } diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/impl/TtPouringEquipServiceImpl.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/impl/TtPouringEquipServiceImpl.java index 973481d..68ce964 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/impl/TtPouringEquipServiceImpl.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttpouringequip/service/impl/TtPouringEquipServiceImpl.java @@ -7,6 +7,9 @@ import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import javax.annotation.Resource; +import java.util.List; + /** * @Description: tt_pouring_equip * @Author: jeecg-boot @@ -16,4 +19,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; @Service public class TtPouringEquipServiceImpl extends ServiceImpl implements ITtPouringEquipService { + @Resource + private TtPouringEquipMapper ttPouringEquipMapper; + @Override + public List queryPouringInfo(TtPouringEquip ttPouringEquip) { + return ttPouringEquipMapper.queryPouring(ttPouringEquip); + } } diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttsulfequip/controller/TtSulfEquipController.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttsulfequip/controller/TtSulfEquipController.java index 9a0350a..fc10f11 100644 --- a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttsulfequip/controller/TtSulfEquipController.java +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttsulfequip/controller/TtSulfEquipController.java @@ -74,7 +74,7 @@ public class TtSulfEquipController extends JeecgController sulfEquipList = new ArrayList<>(); - for(int i = 1; i<15;i++){ + for(int i = 1; i<27;i++){ Random generator = new Random(); int randomIndex1 = generator.nextInt( 7 ) - 3;//随机数-1到1 int randomIndex2 = generator.nextInt( 5 ) - 2;//随机数-1到1 diff --git a/logs/error-log.html b/logs/error-log.html deleted file mode 100644 index 9a5d64b..0000000 --- a/logs/error-log.html +++ /dev/null @@ -1,12448 +0,0 @@ - - - - Logback Log Messages - - - - -
-

Log session start time Mon Jan 23 21:02:42 GMT+08:00 2023

- - - - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Mon Jan 23 21:13:02 GMT+08:00 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Mon Jan 23 21:17:34 GMT+08:00 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - - - - - - - - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Mon Jan 23 21:26:10 GMT+08:00 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-01-23 21:24:01,470Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 3 second(s)handleExceptionJeecgBootExceptionHandler.java79
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 3 second(s) -
    at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70) -
    at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41) -
    at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44) -
    at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42) -
    at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:272) -
    at org.springframework.data.redis.connection.lettuce.LettuceConnection.await(LettuceConnection.java:1063) -
    at org.springframework.data.redis.connection.lettuce.LettuceConnection.lambda$doInvoke$4(LettuceConnection.java:920) -
    at org.springframework.data.redis.connection.lettuce.LettuceInvoker$Synchronizer.invoke(LettuceInvoker.java:673) -
    at org.springframework.data.redis.connection.lettuce.LettuceInvoker$DefaultSingleInvocationSpec.get(LettuceInvoker.java:589) -
    at org.springframework.data.redis.connection.lettuce.LettuceKeyCommands.exists(LettuceKeyCommands.java:79) -
    at org.springframework.data.redis.connection.DefaultedRedisConnection.exists(DefaultedRedisConnection.java:80) -
    at org.jeecg.common.modules.redis.writer.JeecgRedisCacheWriter.doCheckLock(JeecgRedisCacheWriter.java:181) -
    at org.jeecg.common.modules.redis.writer.JeecgRedisCacheWriter.checkAndPotentiallyWaitUntilUnlocked(JeecgRedisCacheWriter.java:214) -
    at org.jeecg.common.modules.redis.writer.JeecgRedisCacheWriter.execute(JeecgRedisCacheWriter.java:192) -
    at org.jeecg.common.modules.redis.writer.JeecgRedisCacheWriter.get(JeecgRedisCacheWriter.java:67) -
    at org.springframework.data.redis.cache.RedisCache.lookup(RedisCache.java:89) -
    at org.springframework.cache.support.AbstractValueAdaptingCache.get(AbstractValueAdaptingCache.java:58) -
    at org.springframework.cache.transaction.TransactionAwareCacheDecorator.get(TransactionAwareCacheDecorator.java:80) -
    at org.springframework.cache.interceptor.AbstractCacheInvoker.doGet(AbstractCacheInvoker.java:73) -
    at org.springframework.cache.interceptor.CacheAspectSupport.findInCaches(CacheAspectSupport.java:571) -
    at org.springframework.cache.interceptor.CacheAspectSupport.findCachedItem(CacheAspectSupport.java:536) -
    at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:402) -
    at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:345) -
    at org.springframework.cache.interceptor.CacheInterceptor.invoke(CacheInterceptor.java:64) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$30031258.getEncodeUserInfo(<generated>) -
    at org.jeecg.modules.system.service.impl.SysBaseApiImpl.getUserByName(SysBaseApiImpl.java:116) -
    at org.jeecg.modules.system.service.impl.SysBaseApiImpl$$FastClassBySpringCGLIB$$93fd2f03.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.system.service.impl.SysBaseApiImpl$$EnhancerBySpringCGLIB$$a258526e.getUserByName(<generated>) -
    at org.jeecg.modules.system.controller.LoginController.logout(LoginController.java:188) -
    at org.jeecg.modules.system.controller.LoginController$$FastClassBySpringCGLIB$$b307ab61.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.controller.LoginController$$EnhancerBySpringCGLIB$$3fb947b5.logout(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 3 second(s) -
    at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:59) -
    at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246) -
    at io.lettuce.core.LettuceFutures.awaitOrCancel(LettuceFutures.java:74) -
    at org.springframework.data.redis.connection.lettuce.LettuceConnection.await(LettuceConnection.java:1061) -
     ... 137 common frames omitted -
- - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Sat Feb 04 09:41:34 CST 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Sat Feb 04 10:09:03 CST 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-04 09:43:48,817{conn-10005, pstmt-20011} execute error. SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?)statementLogErrorSlf4jLogFilter.java149
java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy382.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectList(Unknown Source) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) -
    at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:710) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$6cf3d057.getOne(<generated>) -
    at org.jeecg.modules.system.controller.LoginController.login(LoginController.java:111) -
    at org.jeecg.modules.system.controller.LoginController$$FastClassBySpringCGLIB$$b307ab61.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.controller.LoginController$$EnhancerBySpringCGLIB$$a4307b84.login(<generated>) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.base/java.lang.Thread.run(Thread.java:834) -
ERROR2023-02-04 09:43:48,965 -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -### The error may exist in org/jeecg/modules/system/mapper/SysUserMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list'handleExceptionJeecgBootExceptionHandler.java79
org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -### The error may exist in org/jeecg/modules/system/mapper/SysUserMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectList(Unknown Source) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) -
    at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:710) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$6cf3d057.getOne(<generated>) -
    at org.jeecg.modules.system.controller.LoginController.login(LoginController.java:111) -
    at org.jeecg.modules.system.controller.LoginController$$FastClassBySpringCGLIB$$b307ab61.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.controller.LoginController$$EnhancerBySpringCGLIB$$a4307b84.login(<generated>) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.base/java.lang.Thread.run(Thread.java:834) -
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy382.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 129 common frames omitted -
ERROR2023-02-04 09:44:09,673{conn-10005, pstmt-20012} execute error. SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?)statementLogErrorSlf4jLogFilter.java149
java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy382.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectList(Unknown Source) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) -
    at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:710) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$6cf3d057.getOne(<generated>) -
    at org.jeecg.modules.system.controller.LoginController.login(LoginController.java:111) -
    at org.jeecg.modules.system.controller.LoginController$$FastClassBySpringCGLIB$$b307ab61.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.controller.LoginController$$EnhancerBySpringCGLIB$$a4307b84.login(<generated>) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.base/java.lang.Thread.run(Thread.java:834) -
ERROR2023-02-04 09:44:09,679 -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -### The error may exist in org/jeecg/modules/system/mapper/SysUserMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list'handleExceptionJeecgBootExceptionHandler.java79
org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -### The error may exist in org/jeecg/modules/system/mapper/SysUserMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, username, realname, password, salt, avatar, birthday, sex, email, phone, org_code, status, del_flag, work_no, post, telephone, create_by, create_time, update_by, update_time, activiti_sync, user_identity, depart_ids, rel_tenant_ids, client_id FROM sys_user WHERE del_flag = 0 AND (username = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectList(Unknown Source) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) -
    at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:710) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy137.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$6cf3d057.getOne(<generated>) -
    at org.jeecg.modules.system.controller.LoginController.login(LoginController.java:111) -
    at org.jeecg.modules.system.controller.LoginController$$FastClassBySpringCGLIB$$b307ab61.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.system.controller.LoginController$$EnhancerBySpringCGLIB$$a4307b84.login(<generated>) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.base/java.lang.Thread.run(Thread.java:834) -
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy382.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy380.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.base/java.lang.reflect.Method.invoke(Method.java:566) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 129 common frames omitted -
- - - - - - - - - - - - - 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
- - - - - - - - - - - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:10:31 CST 2023

- -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 08:14:39,207java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:39,307java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 08:14:43,736 fileList 不合法!!!aOnlCgformApiController.java1274
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:29:40 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:56:43 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:58:16 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:04:03 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:05:15 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:10:41 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:12:08 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:15:12 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:16:21 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 09:17:34,107{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) -
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) -
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) -
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) -
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) -
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:17:56 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:19:02 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 09:20:13,754{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) -
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) -
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) -
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) -
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) -
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:45:22 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 10:02:16 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:09:54 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:11:01,729nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$8dc3f1d8.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e5eb61dc.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:15:25 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:15:48,858nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$cd423a51.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$c8b1ba2a.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:19:06 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:19:16,864Application run failedreportFailureSpringApplication.java835
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jimuReportTokenService': Unsatisfied dependency expressed through field 'sysBaseApi'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysBaseApiImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) -
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) -
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) -
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) -
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) -
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:745) -
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:423) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1317) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306) -
    at org.jeecg.LinkageSystemApplication.main(LinkageSystemApplication.java:30) -
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysBaseApiImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) -
     ... 20 common frames omitted -
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1534) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1417) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) -
    at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) -
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) -
     ... 31 common frames omitted -
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1519) -
     ... 47 common frames omitted -
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) -
     ... 60 common frames omitted -
Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:562) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:628) -
    at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:219) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) -
     ... 61 common frames omitted -
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:123) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.parse(XMLMapperBuilder.java:95) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:560) -
     ... 69 common frames omitted -
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:118) -
    at org.apache.ibatis.builder.xml.XMLStatementBuilder.parseStatementNode(XMLStatementBuilder.java:76) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.buildStatementFromContext(XMLMapperBuilder.java:138) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.buildStatementFromContext(XMLMapperBuilder.java:131) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:121) -
     ... 71 common frames omitted -
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:120) -
    at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:149) -
    at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:116) -
     ... 75 common frames omitted -
Caused by: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:196) -
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:89) -
    at org.apache.ibatis.io.Resources.classForName(Resources.java:261) -
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:116) -
     ... 77 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:19:26 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:20:05,286nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6a772634.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$f6aff112.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:20:27 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:20:49,627nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$cd423a51.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4baa15f5.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:21:34 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:22:14,292nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$3997e02.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2ee49fe.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:24:18 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 11:24:39,423nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$5eb328a6.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$38f6f003.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 12:35:14 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:24:58 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 13:26:20,481nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e98c6f9c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4d96c29e.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:26:58 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 13:27:25,112nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$94e0805c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e3587259.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
ERROR2023-02-14 13:28:03,442nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$94e0805c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e3587259.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:34:50 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:40:36 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 13:41:40,913nested exception is org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$82ef11d9.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$5802ab48.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:44:18 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:52:12 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 13:53:01,684nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
ERROR2023-02-14 13:53:11,318nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
ERROR2023-02-14 13:53:18,671nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
ERROR2023-02-14 13:53:19,563nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
ERROR2023-02-14 13:53:25,200nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 125 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 130 common frames omitted -
ERROR2023-02-14 13:53:33,912nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 125 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 130 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:55:00 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 13:55:29,259nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$349bd680.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$bf0b692c.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 11, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:55:43 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:57:26 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:01:29 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:11:25 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:22:40 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:26:47 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 14:27:10,965nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatchhandleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.selectPage(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$aa30a075.page(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:171) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$20bd8bfc.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:185) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.set(BeanWrapper.java:59) -
    at org.apache.ibatis.reflection.MetaObject.setValue(MetaObject.java:140) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.applyAutomaticMappings(DefaultResultSetHandler.java:567) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.getRowValue(DefaultResultSetHandler.java:403) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:355) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:329) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSet(DefaultResultSetHandler.java:302) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSets(DefaultResultSetHandler.java:195) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy400.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: java.lang.IllegalArgumentException: argument type mismatch -
    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.apache.ibatis.reflection.invoker.MethodInvoker.invoke(MethodInvoker.java:44) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:180) -
     ... 156 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:29:12 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 14:29:48,782nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatchhandleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.selectPage(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6a772634.page(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:171) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$78f10b2b.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:185) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.set(BeanWrapper.java:59) -
    at org.apache.ibatis.reflection.MetaObject.setValue(MetaObject.java:140) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.applyAutomaticMappings(DefaultResultSetHandler.java:567) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.getRowValue(DefaultResultSetHandler.java:403) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:355) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:329) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSet(DefaultResultSetHandler.java:302) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSets(DefaultResultSetHandler.java:195) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy400.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: java.lang.IllegalArgumentException: argument type mismatch -
    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.apache.ibatis.reflection.invoker.MethodInvoker.invoke(MethodInvoker.java:44) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:180) -
     ... 156 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:30:51 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:38:19 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:49:02 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:57:36 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:01:27 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:02:02,384{conn-10004, pstmt-20016} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$73a2bf3c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4b36598.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:02:02,452 -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause'handleExceptionJeecgBootExceptionHandler.java79
org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$73a2bf3c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4b36598.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:02:34 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:03:21,839{conn-10004, pstmt-20018} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:21,900 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
ERROR2023-02-14 15:03:26,558{conn-10004, pstmt-20022} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:26,562 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
ERROR2023-02-14 15:03:37,178{conn-10004, pstmt-20025} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:37,181 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:04:34 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:05:45,069{conn-10004, pstmt-20019} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e7e55e6d.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$65da9ff9.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:05:45,128 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -; Column 'id' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -; Column 'id' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e7e55e6d.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$65da9ff9.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:06:05 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:06:51,395org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-07]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-07'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-07]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-07]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-07'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-07]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:06:56,511org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:09:26 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:09:54,374org.springframework.validation.BeanPropertyBindingResult: 2 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -Field error in object 'ttSulfEquip' on field 'updateTime': rejected value [2023-02-02]; codes [typeMismatch.ttSulfEquip.updateTime,typeMismatch.updateTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.updateTime,updateTime]; arguments []; default message [updateTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'updateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-02'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-02]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 2 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -Field error in object 'ttSulfEquip' on field 'updateTime': rejected value [2023-02-02]; codes [typeMismatch.ttSulfEquip.updateTime,typeMismatch.updateTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.updateTime,updateTime]; arguments []; default message [updateTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'updateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-02'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-02]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:15:43 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:16:13,648nested exception is org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$df341fc6.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$1786efaf.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:16:35 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:17:13,262nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$57754d65.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$7e39630c.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    at sun.reflect.GeneratedMethodAccessor108.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:17:43 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 15:18:10,633nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$a97d0a44.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2930bcc2.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
ERROR2023-02-14 15:18:57,856nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$a97d0a44.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2930bcc2.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:19:07 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:21:37 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:22:30 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:28:58 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:52:29 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:53:36 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-<<<<<<< HEAD -

Log session start time Tue Feb 14 17:27:11 CST 2023

-======= -

Log session start time Tue Feb 14 16:11:45 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:35:46 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:51:45 CST 2023

->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - - - - - - - - - - - -<<<<<<< HEAD - - -======= - - ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - -<<<<<<< HEAD - - - -<<<<<<< HEAD - - -======= - - ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - -<<<<<<< HEAD - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 17:29:41,026null2023-02-14 16:52:13,387Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfohandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:86) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -======= -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfo -
    at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) -
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) -
    at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy334.TtVirsualSortEquipSecondInfo(Unknown Source) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl.QueryTtVirsualSortEquipSecondInfo(TtVirsualSortEquipSecondServiceImpl.java:26) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$FastClassBySpringCGLIB$$9ffb9c0.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c543533f.QueryTtVirsualSortEquipSecondInfo(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.QueryTtVirsualSortEquipSecondInfoList(TtVirsualSortEquipSecondController.java:65) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -<<<<<<< HEAD -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$811bd443.queryPageList(<generated>) -======= -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$8bd6b738.QueryTtVirsualSortEquipSecondInfoList(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 17:29:44,198null2023-02-14 16:52:19,630Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfohandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:86) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -======= -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfo -
    at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) -
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) -
    at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy334.TtVirsualSortEquipSecondInfo(Unknown Source) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl.QueryTtVirsualSortEquipSecondInfo(TtVirsualSortEquipSecondServiceImpl.java:26) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$FastClassBySpringCGLIB$$9ffb9c0.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c543533f.QueryTtVirsualSortEquipSecondInfo(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.QueryTtVirsualSortEquipSecondInfoList(TtVirsualSortEquipSecondController.java:65) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -<<<<<<< HEAD -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$811bd443.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 17:31:03,920nullhandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:86) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$811bd443.queryPageList(<generated>) -======= -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$8bd6b738.QueryTtVirsualSortEquipSecondInfoList(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
- - - - Logback Log Messages - - - - -
-<<<<<<< HEAD -

Log session start time Tue Feb 14 17:32:47 CST 2023

-======= -

Log session start time Tue Feb 14 16:54:02 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:26:08 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:29:03 CST 2023

->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - - - - - - - - - - - -<<<<<<< HEAD - - -======= - - ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - -<<<<<<< HEAD - - - -<<<<<<< HEAD - - -======= - - ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea - - - - -<<<<<<< HEAD - -<<<<<<< HEAD - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 17:33:32,456null2023-02-14 17:32:07,263One record is expected, but the query result is multiple recordshandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:87) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -======= -
com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: One record is expected, but the query result is multiple records -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:176) -
    at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy342.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c39b8fe4.getOne(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.queryPageList(TtVirsualSortEquipSecondController.java:93) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -<<<<<<< HEAD -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$3cc85cb5.queryPageList(<generated>) -======= -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$457376f8.queryPageList(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 17:34:10,073null2023-02-14 17:32:11,817One record is expected, but the query result is multiple recordshandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:87) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -======= -
com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: One record is expected, but the query result is multiple records -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:176) -
    at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy342.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c39b8fe4.getOne(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.queryPageList(TtVirsualSortEquipSecondController.java:93) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -<<<<<<< HEAD -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$3cc85cb5.queryPageList(<generated>) -======= -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$457376f8.queryPageList(<generated>) ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 17:35:10,695nullhandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:87) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$3cc85cb5.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:36:53 CST 2023

- - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 17:42:19,806nullhandleExceptionJeecgBootExceptionHandler.java79
java.lang.NullPointerException: null -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController.queryPageList(TtPouringEquipController.java:87) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$FastClassBySpringCGLIB$$73b12ce.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttpouringequip.controller.TtPouringEquipController$$EnhancerBySpringCGLIB$$162066e3.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:42:29 CST 2023

- - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
- -======= ->>>>>>> 54b615d0d0f2048be237ef3f8ea868f259c144ea diff --git a/logs/jeecgboot-2023-02-14.0.html b/logs/jeecgboot-2023-02-14.0.html deleted file mode 100644 index 79f1e64..0000000 --- a/logs/jeecgboot-2023-02-14.0.html +++ /dev/null @@ -1,80286 +0,0 @@ - - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:10:31 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:10:31,642HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:10:31,705Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18672 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:10:31,706The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:10:36,485Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:10:36,491Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:10:36,871Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:10:37,075 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:10:37,076 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:10:37,077 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,770Bean '(inner bean)#ccd000e#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-14 08:10:37,770Bean '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-14 08:10:37,770Bean '(inner bean)#ccd000e#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-14 08:10:37,770Bean '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-14 08:10:37,770Bean '(inner bean)#ccd000e#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-14 08:10:37,770Bean '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-14 08:10:37,770Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e#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-14 08:10:37,786Bean '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-14 08:10:37,786Bean '(inner bean)#ccd000e' 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-14 08:10:37,786Bean '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-14 08:10:37,817Bean '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-14 08:10:37,817Bean '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-14 08:10:37,864Bean '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-14 08:10:37,864Bean '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-14 08:10:37,864Bean '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-14 08:10:37,864Bean '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-14 08:10:37,879Bean '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-14 08:10:37,879Bean '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-14 08:10:37,879Bean '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-14 08:10:37,926Bean '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-14 08:10:37,926Bean '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-14 08:10:37,926Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/870900038] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,098Bean '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-14 08:10:38,223Bean '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-14 08:10:38,223Bean '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-14 08:10:38,223Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d94c6771] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,641Bean '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-14 08:10:38,641Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e39e9049] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,657Bean '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-14 08:10:38,719Bean '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-14 08:10:39,004===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:10:39,004===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:10:39,004Bean '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-14 08:10:39,020Bean '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-14 08:10:39,051Bean '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-14 08:10:39,083Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$8d28fd28] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,083Bean '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-14 08:10:39,573Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:10:39,589Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,589Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,589Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,951Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:10:39,951Root WebApplicationContext: initialization completed in 8124 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:10:40,141 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:10:41,182{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:10:41,182dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:10:41,182dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:10:44,732 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:10:46,073Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:10:46,088Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:10:46,088Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:10:46,088Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:10:46,104Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:10:46,104JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:10:46,104Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676333446073' - 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-14 08:10:46,104Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:10:46,104Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:10:46,104JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3979c6e8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:10:47,989 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:10:50,242Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:10:51,104 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:10:52,417Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:10:52,448Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:10:54,780Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:10:54,801Started LinkageSystemApplication in 25.927 seconds (JVM running for 30.585)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:10:54,801 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:10:54,958 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:10:55,117Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:10:55,117Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:10:55,117Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:10:55,782Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:10:56,166Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 started.startQuartzScheduler.java547
INFO2023-02-14 08:11:02,492————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:11:27,267获取验证码,Redis key = 4934f90b1dc7686515ddecb5f28c5fd9,checkCode = pWrfrandomImageLoginController.java518
INFO2023-02-14 08:11:28,297获取验证码,Redis key = 37280ab3179ce11f31b52adbc38f204b,checkCode = NHqMrandomImageLoginController.java518
INFO2023-02-14 08:11:32,506redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 08:11:32,903加密操作,Aspect程序耗时:8msaroundSensitiveDataAspect.java76
INFO2023-02-14 08:11:33,548【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:11:40,016拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:40,094---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:40,097排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:11:50,757拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:50,782---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:50,783排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:11:56,121拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:56,140---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:56,142排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:03,386拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:03,406---查询过滤器,Query规则---field:table_name, rule:=, value:tt_inject_equipaddEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:03,407---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:03,407排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:04,420拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:04,438---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:04,439排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:25,216 connect databaseName : ttxh-bootreadAllTableNamesDbReadTableUtil.java67
INFO2023-02-14 08:12:32,508 connect databaseName : ttxh-bootreadOriginalTableColumnDbReadTableUtil.java436
INFO2023-02-14 08:12:33,181拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:33,196---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:33,198排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:14:38,857load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=8528111510940165195, entityPackage=ttinjectequip, entityName=TtInjectEquip, primaryKeyField=id, columns=[{"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], tableVo={"tableName":"tt_inject_equip","ftlDescription":"tt_inject_equip","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttinjectequip","entityName":"TtInjectEquip","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录创建时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"17","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], bussiPackage=org.jeecg.modules.demo, tableName=tt_inject_equip}aCodeGenerateOne.java120
INFO2023-02-14 08:14:38,857 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:E:\workspace\linkage-bootaBaseCodeGenerate.java55
INFO2023-02-14 08:14:39,207[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,207java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,223[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,223[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xmlaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,273[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,273[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sqlaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,290[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,290[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,307[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,307java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。) -
    at java.io.FileOutputStream.open0(Native Method) -
    at java.io.FileOutputStream.open(FileOutputStream.java:270) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) -
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) -
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) -
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) -
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) -
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) -
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) -
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) -
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 08:14:39,323 ----- jeecg-boot ---- generate code success =======> 表名:tt_inject_equip generateCodeFileCodeGenerateOne.java149
ERROR2023-02-14 08:14:43,736 fileList 不合法!!!aOnlCgformApiController.java1274
INFO2023-02-14 08:14:50,252-------通过数据库读取用户拥有的角色Rules------username: admin,Roles size: 2getUserRoleSetSysBaseApiImpl.java839
INFO2023-02-14 08:14:50,286-------通过数据库读取用户拥有的权限Perms------username: admin,Perms size: 3getUserPermissionSetSysBaseApiImpl.java861
INFO2023-02-14 08:14:50,287===============Shiro权限认证成功==============doGetAuthorizationInfoShiroRealm.java79
INFO2023-02-14 08:15:07,619load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=-2080781961818293140, entityPackage=ttinjectequip, entityName=TtInjectEquip, primaryKeyField=id, columns=[{"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], tableVo={"tableName":"tt_inject_equip","ftlDescription":"tt_inject_equip","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttinjectequip","entityName":"TtInjectEquip","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录创建时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"17","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], bussiPackage=org.jeecg.modules.demo, tableName=tt_inject_equip}aCodeGenerateOne.java120
INFO2023-02-14 08:15:07,619 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:D:\leiaBaseCodeGenerate.java55
INFO2023-02-14 08:15:07,786[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,869[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,885[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,885[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xmlaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,902[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,902[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,919[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,950[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sqlaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,952[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,985[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,985[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:08,002 ----- jeecg-boot ---- generate code success =======> 表名:tt_inject_equip generateCodeFileCodeGenerateOne.java149
INFO2023-02-14 08:19:07,255————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:18,540————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:24,240获取验证码,Redis key = f16b137cd688aaf929f4c7946a9383c8,checkCode = sF27randomImageLoginController.java518
INFO2023-02-14 08:19:28,920————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:45,858redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 08:20:03,614————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:20:14,989————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:24:11,686ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 08:24:11,686ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676334151558"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 08:28:11,887ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 08:28:11,887ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676334272249"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 08:29:27,402Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:29:27,552【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:29:27,567Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:29:27,583dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:29:27,583{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:29:27,583{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:29:27,583dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:29:40 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:29:40,964HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:29:40,995Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 8020 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:29:40,995The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:29:44,417Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:29:44,428Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:29:44,783Finished Spring Data repository scanning in 333 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:29:44,987 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:29:44,987 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:29:44,987 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,629Bean '(inner bean)#6e090aaa#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-14 08:29:45,635Bean '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-14 08:29:45,636Bean '(inner bean)#6e090aaa#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-14 08:29:45,637Bean '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-14 08:29:45,637Bean '(inner bean)#6e090aaa#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-14 08:29:45,639Bean '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-14 08:29:45,639Bean '(inner bean)#6e090aaa#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-14 08:29:45,640Bean '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-14 08:29:45,640Bean '(inner bean)#6e090aaa#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-14 08:29:45,641Bean '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-14 08:29:45,642Bean '(inner bean)#6e090aaa#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-14 08:29:45,643Bean '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-14 08:29:45,643Bean '(inner bean)#6e090aaa#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-14 08:29:45,644Bean '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-14 08:29:45,645Bean '(inner bean)#6e090aaa#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-14 08:29:45,645Bean '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-14 08:29:45,646Bean '(inner bean)#6e090aaa#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-14 08:29:45,646Bean '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-14 08:29:45,647Bean '(inner bean)#6e090aaa' 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-14 08:29:45,648Bean '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-14 08:29:45,670Bean '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-14 08:29:45,673Bean '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-14 08:29:45,699Bean '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-14 08:29:45,700Bean '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-14 08:29:45,703Bean '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-14 08:29:45,706Bean '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-14 08:29:45,709Bean '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-14 08:29:45,710Bean '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-14 08:29:45,711Bean '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-14 08:29:45,744Bean '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-14 08:29:45,748Bean '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-14 08:29:45,749Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1895167389] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,881Bean '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-14 08:29:45,981Bean '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-14 08:29:45,987Bean '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-14 08:29:45,988Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$8c9055] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,315Bean '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-14 08:29:46,320Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$adeb92d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,328Bean '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-14 08:29:46,386Bean '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-14 08:29:46,642===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:29:46,645===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:29:46,650Bean '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-14 08:29:46,658Bean '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-14 08:29:46,687Bean '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-14 08:29:46,716Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$b469260c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,718Bean '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-14 08:29:47,146Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:29:47,162Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,162Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,162Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,473Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:29:47,473Root WebApplicationContext: initialization completed in 6382 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:29:47,629 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:29:48,576{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:29:48,576dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:29:48,576dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:29:51,639 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:29:52,857Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:29:52,857Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:29:52,873Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:29:52,873Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:29:52,873Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:29:52,873JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:29:52,873Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676334592857' - 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-14 08:29:52,873Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:29:52,888Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:29:52,888JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@34714012setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:29:54,450 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:29:56,569Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:29:56,728 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:29:57,783Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:29:57,814Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:30:00,064Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:30:00,079Started LinkageSystemApplication in 20.099 seconds (JVM running for 21.528)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:30:00,079 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:30:00,204 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:30:00,974Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:30:00,974Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:30:00,976Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:30:01,072Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:30:01,383Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 started.startQuartzScheduler.java547
INFO2023-02-14 08:30:11,520【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:30:51,323————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:30:57,255————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:56:35,707Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:56:35,843【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:56:35,860Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:56:35,861Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:56:35,861Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:56:35,862Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:56:35,867dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:56:35,870{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:56:35,881{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:56:35,881dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:56:43 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:56:43,706HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:56:43,732Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18760 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:56:43,733The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:56:47,327Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:56:47,331Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:56:47,707Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:56:47,910 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:56:47,910 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:56:47,911 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:56:48,160register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,161register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,161register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,567Bean '(inner bean)#1eb6037d#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-14 08:56:48,573Bean '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-14 08:56:48,573Bean '(inner bean)#1eb6037d#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-14 08:56:48,574Bean '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-14 08:56:48,575Bean '(inner bean)#1eb6037d#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-14 08:56:48,576Bean '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-14 08:56:48,577Bean '(inner bean)#1eb6037d#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-14 08:56:48,578Bean '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-14 08:56:48,579Bean '(inner bean)#1eb6037d#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-14 08:56:48,580Bean '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-14 08:56:48,580Bean '(inner bean)#1eb6037d#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-14 08:56:48,581Bean '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-14 08:56:48,582Bean '(inner bean)#1eb6037d#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-14 08:56:48,583Bean '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-14 08:56:48,583Bean '(inner bean)#1eb6037d#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-14 08:56:48,584Bean '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-14 08:56:48,585Bean '(inner bean)#1eb6037d#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-14 08:56:48,585Bean '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-14 08:56:48,586Bean '(inner bean)#1eb6037d' 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-14 08:56:48,587Bean '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-14 08:56:48,610Bean '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-14 08:56:48,612Bean '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-14 08:56:48,638Bean '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-14 08:56:48,639Bean '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-14 08:56:48,643Bean '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-14 08:56:48,646Bean '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-14 08:56:48,648Bean '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-14 08:56:48,649Bean '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-14 08:56:48,650Bean '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-14 08:56:48,686Bean '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-14 08:56:48,690Bean '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-14 08:56:48,691Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/140736469] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,822Bean '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-14 08:56:48,920Bean '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-14 08:56:48,926Bean '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-14 08:56:48,927Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$90e34fbb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,239Bean '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-14 08:56:49,244Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$9b357893] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,252Bean '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-14 08:56:49,306Bean '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-14 08:56:49,560===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:56:49,563===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:56:49,568Bean '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-14 08:56:49,577Bean '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-14 08:56:49,604Bean '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-14 08:56:49,634Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$44bfe572] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,637Bean '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-14 08:56:50,067Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:56:50,083Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,084Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,084Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,398Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:56:50,398Root WebApplicationContext: initialization completed in 6595 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:56:50,572 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:56:51,606{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:56:51,607dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:56:51,608dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:56:54,741 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:56:56,007Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:56:56,011Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:56:56,024Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:56:56,025Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:56:56,029Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:56:56,032JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:56:56,033Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336216010' - 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-14 08:56:56,034Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:56:56,034Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:56:56,034JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54464330setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:56:57,794 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:56:59,819Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:56:59,953 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:57:01,129Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:57:01,157Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:57:03,073Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:57:03,087Started LinkageSystemApplication in 20.35 seconds (JVM running for 21.794)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:57:03,095 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:57:03,229 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:57:03,547Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:57:03,547Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:57:03,551Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:57:04,081Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:57:04,296Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 started.startQuartzScheduler.java547
INFO2023-02-14 08:57:19,517【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:57:24,453————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:58:09,040Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:58:09,171【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:58:09,188Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:58:09,189Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:58:09,189Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:58:09,190Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:58:09,196dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:58:09,198{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:58:09,208{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:58:09,209dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 08:58:16 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:58:16,752HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:58:16,778Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 6712 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:58:16,779The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:58:20,149Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:58:20,154Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:58:20,519Finished Spring Data repository scanning in 340 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:58:20,714 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:58:20,715 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:58:20,716 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:58:20,961register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:21,353Bean '(inner bean)#1f48fa72#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-14 08:58:21,358Bean '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-14 08:58:21,359Bean '(inner bean)#1f48fa72#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-14 08:58:21,360Bean '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-14 08:58:21,360Bean '(inner bean)#1f48fa72#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-14 08:58:21,362Bean '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-14 08:58:21,363Bean '(inner bean)#1f48fa72#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-14 08:58:21,364Bean '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-14 08:58:21,365Bean '(inner bean)#1f48fa72#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-14 08:58:21,366Bean '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-14 08:58:21,366Bean '(inner bean)#1f48fa72#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-14 08:58:21,367Bean '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-14 08:58:21,368Bean '(inner bean)#1f48fa72#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-14 08:58:21,369Bean '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-14 08:58:21,370Bean '(inner bean)#1f48fa72#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-14 08:58:21,371Bean '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-14 08:58:21,371Bean '(inner bean)#1f48fa72#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-14 08:58:21,372Bean '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-14 08:58:21,372Bean '(inner bean)#1f48fa72' 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-14 08:58:21,373Bean '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-14 08:58:21,396Bean '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-14 08:58:21,399Bean '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-14 08:58:21,425Bean '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-14 08:58:21,427Bean '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-14 08:58:21,430Bean '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-14 08:58:21,433Bean '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-14 08:58:21,436Bean '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-14 08:58:21,436Bean '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-14 08:58:21,437Bean '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-14 08:58:21,470Bean '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-14 08:58:21,473Bean '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-14 08:58:21,474Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515244925] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,602Bean '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-14 08:58:21,700Bean '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-14 08:58:21,705Bean '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-14 08:58:21,708Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6015d6a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,018Bean '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-14 08:58:22,023Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6a67ff80] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,031Bean '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-14 08:58:22,085Bean '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-14 08:58:22,328===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:58:22,331===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:58:22,336Bean '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-14 08:58:22,344Bean '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-14 08:58:22,372Bean '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-14 08:58:22,401Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$13f26c5f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,403Bean '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-14 08:58:22,827Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:58:22,842Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:58:22,843Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:58:22,843Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:58:23,147Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:58:23,147Root WebApplicationContext: initialization completed in 6300 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:58:23,307 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:58:24,268{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:58:24,270dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:58:24,270dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:58:27,400 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:58:28,694Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:58:28,697Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:58:28,711Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:58:28,711Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:58:28,716Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:58:28,719JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:58:28,720Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336308696' - 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-14 08:58:28,720Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:58:28,720Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:58:28,721JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@e8ce5b1setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:58:30,551 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:58:32,657Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:58:32,795 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:58:33,920Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:58:33,945Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:58:35,851Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:58:35,866Started LinkageSystemApplication in 20.013 seconds (JVM running for 21.385)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:58:35,873 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:58:35,996 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:58:36,334Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:58:36,334Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:58:36,337Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:58:36,853Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:58:37,122Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 started.startQuartzScheduler.java547
INFO2023-02-14 08:58:53,269【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 09:03:55,666Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:03:55,801【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 09:03:55,820Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:03:55,820Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:03:55,821Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:03:55,821Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:03:55,828dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:03:55,831{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:03:55,840{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:03:55,840dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:04:03 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:04:03,488HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:04:03,513Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17896 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:04:03,514The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:04:06,932Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:04:06,937Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:04:07,301Finished Spring Data repository scanning in 339 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:04:07,501 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:04:07,502 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:04:07,503 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:04:07,733register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,734register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,734register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:08,127Bean '(inner bean)#7be7c052#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-14 09:04:08,132Bean '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-14 09:04:08,133Bean '(inner bean)#7be7c052#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-14 09:04:08,134Bean '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-14 09:04:08,135Bean '(inner bean)#7be7c052#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-14 09:04:08,136Bean '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-14 09:04:08,136Bean '(inner bean)#7be7c052#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-14 09:04:08,137Bean '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-14 09:04:08,138Bean '(inner bean)#7be7c052#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-14 09:04:08,139Bean '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-14 09:04:08,139Bean '(inner bean)#7be7c052#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-14 09:04:08,140Bean '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-14 09:04:08,141Bean '(inner bean)#7be7c052#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-14 09:04:08,142Bean '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-14 09:04:08,143Bean '(inner bean)#7be7c052#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-14 09:04:08,144Bean '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-14 09:04:08,145Bean '(inner bean)#7be7c052#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-14 09:04:08,146Bean '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-14 09:04:08,146Bean '(inner bean)#7be7c052' 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-14 09:04:08,147Bean '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-14 09:04:08,169Bean '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-14 09:04:08,172Bean '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-14 09:04:08,199Bean '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-14 09:04:08,200Bean '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-14 09:04:08,202Bean '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-14 09:04:08,206Bean '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-14 09:04:08,209Bean '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-14 09:04:08,209Bean '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-14 09:04:08,210Bean '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-14 09:04:08,243Bean '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-14 09:04:08,246Bean '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-14 09:04:08,247Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/504973670] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,379Bean '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-14 09:04:08,479Bean '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-14 09:04:08,484Bean '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-14 09:04:08,485Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$1425f239] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,799Bean '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-14 09:04:08,804Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$1e781b11] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,812Bean '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-14 09:04:08,868Bean '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-14 09:04:09,116===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:04:09,119===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:04:09,124Bean '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-14 09:04:09,132Bean '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-14 09:04:09,160Bean '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-14 09:04:09,191Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c80287f0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,194Bean '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-14 09:04:09,627Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:04:09,642Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,643Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,643Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,951Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:04:09,951Root WebApplicationContext: initialization completed in 6369 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:04:10,114 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:04:11,079{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:04:11,081dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:04:11,081dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:04:14,149 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:04:15,350Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:04:15,353Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:04:15,366Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:04:15,366Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:04:15,370Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:04:15,374JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:04:15,375Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336655352' - 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-14 09:04:15,375Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:04:15,375Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:04:15,375JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@79408109setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:04:16,860 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:04:18,989Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:04:19,121 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:04:20,183Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:04:20,208Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:04:22,183Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:04:22,198Started LinkageSystemApplication in 19.599 seconds (JVM running for 20.978)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:04:22,206 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:04:22,329 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:04:22,717Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:04:22,717Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:04:22,720Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:04:23,190Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:04:23,385ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:04:23,386ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676336308696"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:04:23,452Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 started.startQuartzScheduler.java547
INFO2023-02-14 09:04:24,957————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:04:39,260【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 09:05:07,779Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:05:07,921【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 09:05:07,937Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:05:07,938Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:05:07,938Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:05:07,941Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:05:07,948dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:05:07,953{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:05:07,963{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:05:07,964dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:05:15 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:05:15,598HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:05:15,621Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 12832 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:05:15,621The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:05:19,079Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:05:19,083Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:05:19,483Finished Spring Data repository scanning in 372 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:05:19,688 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:05:19,688 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:05:19,689 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:05:19,944register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:20,336Bean '(inner bean)#2c1ea7be#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-14 09:05:20,343Bean '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-14 09:05:20,343Bean '(inner bean)#2c1ea7be#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-14 09:05:20,344Bean '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-14 09:05:20,345Bean '(inner bean)#2c1ea7be#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-14 09:05:20,346Bean '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-14 09:05:20,347Bean '(inner bean)#2c1ea7be#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-14 09:05:20,348Bean '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-14 09:05:20,348Bean '(inner bean)#2c1ea7be#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-14 09:05:20,349Bean '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-14 09:05:20,349Bean '(inner bean)#2c1ea7be#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-14 09:05:20,350Bean '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-14 09:05:20,351Bean '(inner bean)#2c1ea7be#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-14 09:05:20,352Bean '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-14 09:05:20,352Bean '(inner bean)#2c1ea7be#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-14 09:05:20,353Bean '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-14 09:05:20,354Bean '(inner bean)#2c1ea7be#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-14 09:05:20,354Bean '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-14 09:05:20,355Bean '(inner bean)#2c1ea7be' 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-14 09:05:20,356Bean '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-14 09:05:20,378Bean '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-14 09:05:20,380Bean '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-14 09:05:20,408Bean '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-14 09:05:20,409Bean '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-14 09:05:20,412Bean '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-14 09:05:20,415Bean '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-14 09:05:20,418Bean '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-14 09:05:20,419Bean '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-14 09:05:20,420Bean '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-14 09:05:20,455Bean '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-14 09:05:20,459Bean '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-14 09:05:20,460Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/711320119] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,591Bean '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-14 09:05:20,693Bean '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-14 09:05:20,698Bean '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-14 09:05:20,701Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$60d6da87] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,035Bean '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-14 09:05:21,040Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6b29035f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,048Bean '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-14 09:05:21,102Bean '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-14 09:05:21,366===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:05:21,369===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:05:21,373Bean '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-14 09:05:21,382Bean '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-14 09:05:21,410Bean '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-14 09:05:21,445Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$14b3703e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,448Bean '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-14 09:05:21,892Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:05:21,908Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:05:21,908Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:05:21,909Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:05:22,234Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:05:22,234Root WebApplicationContext: initialization completed in 6546 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:05:22,398 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:05:23,416{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:05:23,417dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:05:23,417dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:05:26,563 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:05:27,783Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:05:27,786Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:05:27,799Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:05:27,800Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:05:27,804Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:05:27,807JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:05:27,808Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336727785' - 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-14 09:05:27,809Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:05:27,809Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:05:27,809JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@56589f00setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:05:29,717 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:05:31,811Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:05:31,980 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:05:33,166Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:05:33,191Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:05:35,100Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:05:35,115Started LinkageSystemApplication in 20.447 seconds (JVM running for 21.814)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:05:35,123 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:05:35,245 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:05:35,508Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:05:35,509Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:05:35,511Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:05:36,113Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:05:36,374Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 started.startQuartzScheduler.java547
INFO2023-02-14 09:05:38,837————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:08:06,491ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:08:06,491ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:08:36,506ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:08:36,506ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:10:28,355————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:10:33,783Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:10:33,940Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:10:33,940Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:10:33,941Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:10:33,942Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:10:33,951dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:10:33,953{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:10:33,964{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:10:33,964dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:10:41 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:10:41,490HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:10:41,516Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20308 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:10:41,517The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:10:44,885Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:10:44,890Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:10:45,249Finished Spring Data repository scanning in 336 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:10:45,446 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:10:45,446 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:10:45,447 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:10:45,694register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,695register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,695register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:46,099Bean '(inner bean)#76134b9b#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-14 09:10:46,105Bean '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-14 09:10:46,105Bean '(inner bean)#76134b9b#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-14 09:10:46,106Bean '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-14 09:10:46,107Bean '(inner bean)#76134b9b#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-14 09:10:46,108Bean '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-14 09:10:46,109Bean '(inner bean)#76134b9b#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-14 09:10:46,109Bean '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-14 09:10:46,110Bean '(inner bean)#76134b9b#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-14 09:10:46,111Bean '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-14 09:10:46,112Bean '(inner bean)#76134b9b#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-14 09:10:46,112Bean '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-14 09:10:46,113Bean '(inner bean)#76134b9b#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-14 09:10:46,114Bean '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-14 09:10:46,114Bean '(inner bean)#76134b9b#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-14 09:10:46,115Bean '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-14 09:10:46,116Bean '(inner bean)#76134b9b#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-14 09:10:46,117Bean '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-14 09:10:46,117Bean '(inner bean)#76134b9b' 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-14 09:10:46,118Bean '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-14 09:10:46,139Bean '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-14 09:10:46,142Bean '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-14 09:10:46,170Bean '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-14 09:10:46,171Bean '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-14 09:10:46,174Bean '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-14 09:10:46,178Bean '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-14 09:10:46,180Bean '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-14 09:10:46,181Bean '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-14 09:10:46,182Bean '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-14 09:10:46,216Bean '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-14 09:10:46,219Bean '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-14 09:10:46,221Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/437490503] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,351Bean '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-14 09:10:46,452Bean '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-14 09:10:46,457Bean '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-14 09:10:46,459Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$18fd414e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,778Bean '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-14 09:10:46,783Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$234f6a26] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,791Bean '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-14 09:10:46,850Bean '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-14 09:10:47,101===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:10:47,104===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:10:47,110Bean '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-14 09:10:47,118Bean '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-14 09:10:47,148Bean '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-14 09:10:47,179Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ccd9d705] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,181Bean '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-14 09:10:47,613Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:10:47,629Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,630Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,630Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,940Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:10:47,940Root WebApplicationContext: initialization completed in 6356 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:10:48,100 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:10:49,065{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:10:49,067dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:10:49,067dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:10:52,128 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:10:53,341Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:10:53,344Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:10:53,358Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:10:53,358Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:10:53,363Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:10:53,366JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:10:53,367Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337053343' - 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-14 09:10:53,367Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:10:53,367Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:10:53,368JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1e8c9083setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:10:55,020 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:10:56,978Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:10:57,113 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:10:58,229Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:10:58,253Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:11:00,186Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:11:00,201Started LinkageSystemApplication in 19.601 seconds (JVM running for 20.967)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:11:00,209 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:11:00,330 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:11:00,870Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:11:00,870Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:11:00,873Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:11:01,190Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:11:01,424Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 started.startQuartzScheduler.java547
INFO2023-02-14 09:11:20,863————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:12:00,408Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:12:00,553Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:12:00,554Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:12:00,554Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:12:00,555Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:12:00,561dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:12:00,563{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:12:00,571{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:12:00,571dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:12:08 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:12:08,229HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:12:08,254Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19432 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:12:08,255The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:12:11,647Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:12:11,652Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:12:12,017Finished Spring Data repository scanning in 341 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:12:12,214 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:12:12,215 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:12:12,216 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:12:12,465register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,465register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,852Bean '(inner bean)#1f48fa72#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-14 09:12:12,858Bean '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-14 09:12:12,859Bean '(inner bean)#1f48fa72#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-14 09:12:12,860Bean '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-14 09:12:12,861Bean '(inner bean)#1f48fa72#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-14 09:12:12,862Bean '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-14 09:12:12,862Bean '(inner bean)#1f48fa72#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-14 09:12:12,863Bean '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-14 09:12:12,864Bean '(inner bean)#1f48fa72#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-14 09:12:12,865Bean '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-14 09:12:12,865Bean '(inner bean)#1f48fa72#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-14 09:12:12,866Bean '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-14 09:12:12,866Bean '(inner bean)#1f48fa72#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-14 09:12:12,867Bean '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-14 09:12:12,868Bean '(inner bean)#1f48fa72#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-14 09:12:12,869Bean '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-14 09:12:12,869Bean '(inner bean)#1f48fa72#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-14 09:12:12,870Bean '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-14 09:12:12,870Bean '(inner bean)#1f48fa72' 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-14 09:12:12,871Bean '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-14 09:12:12,894Bean '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-14 09:12:12,897Bean '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-14 09:12:12,922Bean '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-14 09:12:12,924Bean '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-14 09:12:12,927Bean '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-14 09:12:12,930Bean '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-14 09:12:12,932Bean '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-14 09:12:12,933Bean '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-14 09:12:12,934Bean '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-14 09:12:12,967Bean '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-14 09:12:12,972Bean '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-14 09:12:12,972Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515244925] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,099Bean '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-14 09:12:13,198Bean '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-14 09:12:13,203Bean '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-14 09:12:13,205Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6015d6a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,518Bean '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-14 09:12:13,524Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6a67ff80] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,532Bean '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-14 09:12:13,586Bean '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-14 09:12:13,838===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:12:13,841===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:12:13,846Bean '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-14 09:12:13,854Bean '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-14 09:12:13,884Bean '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-14 09:12:13,912Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$13f26c5f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,915Bean '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-14 09:12:14,338Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:12:14,353Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,354Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,354Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,661Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:12:14,661Root WebApplicationContext: initialization completed in 6341 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:12:14,825 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:12:15,892{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:12:15,894dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:12:15,894dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:12:18,973 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:12:20,210Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:12:20,213Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:12:20,227Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:12:20,227Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:12:20,231Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:12:20,235JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:12:20,235Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337140212' - 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-14 09:12:20,236Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:12:20,236Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:12:20,236JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3956df0asetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:12:22,038 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:12:24,013Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:12:24,141 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:12:25,271Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:12:25,297Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:12:27,237Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:12:27,252Started LinkageSystemApplication in 19.9 seconds (JVM running for 21.263)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:12:27,260 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:12:27,389 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:12:27,631Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:12:27,631Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:12:27,634Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:12:28,243Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:12:28,544Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 started.startQuartzScheduler.java547
INFO2023-02-14 09:12:29,282————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:15:04,718Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:15:04,879Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:15:04,881Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:15:04,882Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:15:04,883Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:15:04,890dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:15:04,894{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:15:04,903{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:15:04,904dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:15:12 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:15:12,525HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:15:12,553Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19176 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:15:12,554The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:15:16,054Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:15:16,058Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:15:16,433Finished Spring Data repository scanning in 350 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:15:16,629 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:15:16,630 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:15:16,631 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:15:16,885register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:17,284Bean '(inner bean)#45f1413c#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-14 09:15:17,290Bean '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-14 09:15:17,290Bean '(inner bean)#45f1413c#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-14 09:15:17,291Bean '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-14 09:15:17,292Bean '(inner bean)#45f1413c#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-14 09:15:17,293Bean '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-14 09:15:17,294Bean '(inner bean)#45f1413c#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-14 09:15:17,295Bean '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-14 09:15:17,295Bean '(inner bean)#45f1413c#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-14 09:15:17,296Bean '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-14 09:15:17,297Bean '(inner bean)#45f1413c#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-14 09:15:17,298Bean '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-14 09:15:17,299Bean '(inner bean)#45f1413c#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-14 09:15:17,300Bean '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-14 09:15:17,300Bean '(inner bean)#45f1413c#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-14 09:15:17,301Bean '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-14 09:15:17,302Bean '(inner bean)#45f1413c#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-14 09:15:17,302Bean '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-14 09:15:17,303Bean '(inner bean)#45f1413c' 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-14 09:15:17,303Bean '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-14 09:15:17,328Bean '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-14 09:15:17,331Bean '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-14 09:15:17,361Bean '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-14 09:15:17,363Bean '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-14 09:15:17,365Bean '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-14 09:15:17,369Bean '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-14 09:15:17,372Bean '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-14 09:15:17,374Bean '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-14 09:15:17,375Bean '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-14 09:15:17,410Bean '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-14 09:15:17,414Bean '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-14 09:15:17,415Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/378838522] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,549Bean '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-14 09:15:17,648Bean '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-14 09:15:17,653Bean '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-14 09:15:17,655Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$3cea07cf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,971Bean '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-14 09:15:17,976Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$473c30a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,984Bean '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-14 09:15:18,043Bean '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-14 09:15:18,298===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:15:18,301===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:15:18,306Bean '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-14 09:15:18,314Bean '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-14 09:15:18,343Bean '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-14 09:15:18,372Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f0c69d86] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,375Bean '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-14 09:15:18,819Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:15:18,838Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:15:18,839Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:15:18,839Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:15:19,163Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:15:19,163Root WebApplicationContext: initialization completed in 6543 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:15:19,327 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:15:20,356{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:15:20,357dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:15:20,358dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:15:23,455 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:15:24,674Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:15:24,677Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:15:24,689Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:15:24,690Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:15:24,694Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:15:24,697JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:15:24,698Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337324676' - 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-14 09:15:24,699Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:15:24,699Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:15:24,699JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@68312b85setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:15:26,476 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:15:28,503Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:15:28,650 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:15:29,883Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:15:29,910Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:15:31,992Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:15:32,007Started LinkageSystemApplication in 20.386 seconds (JVM running for 21.825)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:15:32,016 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:15:32,141 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:15:32,671Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:15:32,673Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:15:32,675Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:15:33,001Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:15:34,317————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:16:13,999Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:16:14,001Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:16:14,001Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:16:14,004Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:16:14,010dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:16:14,013{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:16:14,021{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:16:14,022dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:16:21 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:16:21,743HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:16:21,773Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17688 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:16:21,774The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:16:25,405Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:16:25,409Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:16:25,801Finished Spring Data repository scanning in 363 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:16:26,015 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:16:26,015 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:16:26,016 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:16:26,268register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,703Bean '(inner bean)#11015ca0#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-14 09:16:26,709Bean '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-14 09:16:26,710Bean '(inner bean)#11015ca0#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-14 09:16:26,711Bean '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-14 09:16:26,712Bean '(inner bean)#11015ca0#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-14 09:16:26,713Bean '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-14 09:16:26,714Bean '(inner bean)#11015ca0#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-14 09:16:26,715Bean '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-14 09:16:26,715Bean '(inner bean)#11015ca0#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-14 09:16:26,716Bean '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-14 09:16:26,717Bean '(inner bean)#11015ca0#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-14 09:16:26,718Bean '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-14 09:16:26,718Bean '(inner bean)#11015ca0#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-14 09:16:26,719Bean '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-14 09:16:26,720Bean '(inner bean)#11015ca0#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-14 09:16:26,721Bean '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-14 09:16:26,721Bean '(inner bean)#11015ca0#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-14 09:16:26,722Bean '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-14 09:16:26,722Bean '(inner bean)#11015ca0' 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-14 09:16:26,723Bean '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-14 09:16:26,747Bean '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-14 09:16:26,750Bean '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-14 09:16:26,780Bean '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-14 09:16:26,781Bean '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-14 09:16:26,784Bean '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-14 09:16:26,788Bean '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-14 09:16:26,791Bean '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-14 09:16:26,792Bean '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-14 09:16:26,793Bean '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-14 09:16:26,831Bean '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-14 09:16:26,835Bean '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-14 09:16:26,836Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1316317287] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,984Bean '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-14 09:16:27,102Bean '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-14 09:16:27,108Bean '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-14 09:16:27,110Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$f18db37b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,464Bean '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-14 09:16:27,470Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$fbdfdc53] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,478Bean '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-14 09:16:27,538Bean '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-14 09:16:27,790===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:16:27,793===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:16:27,798Bean '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-14 09:16:27,808Bean '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-14 09:16:27,839Bean '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-14 09:16:27,871Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$a56a4932] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,874Bean '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-14 09:16:28,335Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:16:28,352Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,352Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,352Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,670Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:16:28,670Root WebApplicationContext: initialization completed in 6821 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:16:28,840 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:16:29,859{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:16:29,861dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:16:29,861dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:16:33,276 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:16:34,557Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:16:34,560Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:16:34,575Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:16:34,575Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:16:34,580Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:16:34,583JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:16:34,584Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337394559' - 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-14 09:16:34,585Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:16:34,585Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:16:34,585JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3979c6e8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:16:36,220 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:16:38,509Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:16:38,660 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:16:39,806Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:16:39,833Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:16:41,838Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:16:41,853Started LinkageSystemApplication in 21.086 seconds (JVM running for 22.494)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:16:41,861 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:16:41,985 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:16:42,279Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:16:42,279Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:16:42,282Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:16:42,845Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
ERROR2023-02-14 09:17:34,107{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) -
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) -
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) -
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) -
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) -
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) -
INFO2023-02-14 09:17:49,268Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:17:49,269Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:17:49,269Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:17:49,270Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:17:49,275dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:17:49,277{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:17:49,284{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:17:49,285dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:17:56 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:17:57,025HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:17:57,051Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 7908 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:17:57,052The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:18:00,498Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:18:00,503Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:18:00,870Finished Spring Data repository scanning in 342 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:18:01,066 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:18:01,066 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:18:01,067 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:18:01,313register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,714Bean '(inner bean)#18811c42#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-14 09:18:01,720Bean '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-14 09:18:01,721Bean '(inner bean)#18811c42#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-14 09:18:01,722Bean '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-14 09:18:01,722Bean '(inner bean)#18811c42#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-14 09:18:01,724Bean '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-14 09:18:01,725Bean '(inner bean)#18811c42#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-14 09:18:01,725Bean '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-14 09:18:01,726Bean '(inner bean)#18811c42#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-14 09:18:01,727Bean '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-14 09:18:01,728Bean '(inner bean)#18811c42#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-14 09:18:01,728Bean '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-14 09:18:01,729Bean '(inner bean)#18811c42#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-14 09:18:01,730Bean '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-14 09:18:01,730Bean '(inner bean)#18811c42#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-14 09:18:01,731Bean '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-14 09:18:01,732Bean '(inner bean)#18811c42#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-14 09:18:01,732Bean '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-14 09:18:01,733Bean '(inner bean)#18811c42' 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-14 09:18:01,733Bean '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-14 09:18:01,755Bean '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-14 09:18:01,758Bean '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-14 09:18:01,784Bean '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-14 09:18:01,785Bean '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-14 09:18:01,789Bean '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-14 09:18:01,792Bean '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-14 09:18:01,794Bean '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-14 09:18:01,795Bean '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-14 09:18:01,796Bean '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-14 09:18:01,829Bean '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-14 09:18:01,833Bean '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-14 09:18:01,834Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/639264440] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,967Bean '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-14 09:18:02,068Bean '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-14 09:18:02,072Bean '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-14 09:18:02,074Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$2f74641e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,393Bean '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-14 09:18:02,399Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$39c68cf6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,407Bean '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-14 09:18:02,462Bean '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-14 09:18:02,724===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:18:02,728===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:18:02,733Bean '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-14 09:18:02,742Bean '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-14 09:18:02,772Bean '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-14 09:18:02,802Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e350f9d5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,805Bean '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-14 09:18:03,231Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:18:03,246Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,247Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,247Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,556Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:18:03,557Root WebApplicationContext: initialization completed in 6437 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:18:03,715 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:18:04,795{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:18:04,796dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:18:04,797dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:18:07,919 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:18:09,205Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:18:09,210Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:18:09,223Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:18:09,224Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:18:09,228Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:18:09,231JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:18:09,232Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337489208' - 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-14 09:18:09,233Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:18:09,233Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:18:09,233JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@30be6a05setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:18:10,990 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:18:13,065Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:18:13,201 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:18:14,329Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:18:14,355Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:18:16,250Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:18:16,267Started LinkageSystemApplication in 20.141 seconds (JVM running for 21.517)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:18:16,275 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:18:16,398 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:18:17,160Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:18:17,160Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:18:17,163Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:18:17,262Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:18:54,614Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:18:54,614Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:18:54,615Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:18:54,615Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:18:54,621dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:18:54,623{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:18:54,631{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:18:54,632dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:19:02 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:19:02,223HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:19:02,250Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 7748 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:19:02,250The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:19:05,729Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:19:05,734Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:19:06,110Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:19:06,313 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:19:06,313 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:19:06,314 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:19:06,575register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,576register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,975Bean '(inner bean)#29519337#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-14 09:19:06,981Bean '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-14 09:19:06,982Bean '(inner bean)#29519337#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-14 09:19:06,983Bean '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-14 09:19:06,983Bean '(inner bean)#29519337#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-14 09:19:06,984Bean '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-14 09:19:06,985Bean '(inner bean)#29519337#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-14 09:19:06,985Bean '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-14 09:19:06,986Bean '(inner bean)#29519337#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-14 09:19:06,987Bean '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-14 09:19:06,987Bean '(inner bean)#29519337#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-14 09:19:06,988Bean '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-14 09:19:06,988Bean '(inner bean)#29519337#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-14 09:19:06,989Bean '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-14 09:19:06,990Bean '(inner bean)#29519337#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-14 09:19:06,991Bean '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-14 09:19:06,991Bean '(inner bean)#29519337#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-14 09:19:06,992Bean '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-14 09:19:06,993Bean '(inner bean)#29519337' 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-14 09:19:06,993Bean '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-14 09:19:07,017Bean '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-14 09:19:07,020Bean '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-14 09:19:07,046Bean '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-14 09:19:07,047Bean '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-14 09:19:07,050Bean '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-14 09:19:07,054Bean '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-14 09:19:07,057Bean '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-14 09:19:07,058Bean '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-14 09:19:07,059Bean '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-14 09:19:07,094Bean '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-14 09:19:07,098Bean '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-14 09:19:07,099Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515495578] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,230Bean '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-14 09:19:07,330Bean '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-14 09:19:07,335Bean '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-14 09:19:07,338Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$516ab456] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,688Bean '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-14 09:19:07,694Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$5bbcdd2e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,703Bean '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-14 09:19:07,762Bean '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-14 09:19:08,008===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:19:08,010===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:19:08,015Bean '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-14 09:19:08,024Bean '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-14 09:19:08,053Bean '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-14 09:19:08,082Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5474a0d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,085Bean '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-14 09:19:08,523Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:19:08,538Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,538Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,538Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,853Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:19:08,853Root WebApplicationContext: initialization completed in 6521 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:19:09,013 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:19:10,024{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:19:10,025dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:19:10,026dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:19:13,140 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:19:14,375Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:19:14,378Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:19:14,392Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:19:14,392Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:19:14,396Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:19:14,399JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:19:14,400Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337554377' - 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-14 09:19:14,401Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:19:14,401Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:19:14,401JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@48463900setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:19:16,021 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:19:18,304Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:19:18,440 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:19:19,510Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:19:19,536Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:19:21,543Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:19:21,558Started LinkageSystemApplication in 20.234 seconds (JVM running for 21.592)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:19:21,567 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:19:21,690 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:19:22,047Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:19:22,047Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:19:22,049Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:19:22,557Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:19:24,567————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:19:28,259————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:19:31,611————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
ERROR2023-02-14 09:20:13,754{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) -
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) -
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) -
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) -
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) -
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) -
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) -
INFO2023-02-14 09:20:15,734ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:20:15,734ClusterManager: Scanning for instance "WIN-DH86GAI2CNG1676294701465"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:20:15,762Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 started.startQuartzScheduler.java547
WARN2023-02-14 09:22:53,443This scheduler instance (DESKTOP-9EB22GD1676337554377) is still active but was recovered by another instance in the cluster. This may cause inconsistent behavior.findFailedInstancesJobStoreSupport.java3411
INFO2023-02-14 09:27:07,749ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:27:07,749ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:28:22,803ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:28:22,804ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676338037449"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:45:08,383ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:45:08,384ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676338037449"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:45:14,968Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:45:15,107Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:45:15,108Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:45:15,108Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:45:15,109Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:45:15,115dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:45:15,117{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:45:15,124{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:45:15,124dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 09:45:22 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:45:23,088HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:45:23,113Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 420 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:45:23,113The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:45:26,502Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:45:26,506Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:45:26,875Finished Spring Data repository scanning in 344 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:45:27,072 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:45:27,073 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:45:27,074 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:45:27,324register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,325register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,325register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,725Bean '(inner bean)#2ce47652#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-14 09:45:27,731Bean '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-14 09:45:27,732Bean '(inner bean)#2ce47652#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-14 09:45:27,733Bean '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-14 09:45:27,733Bean '(inner bean)#2ce47652#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-14 09:45:27,735Bean '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-14 09:45:27,735Bean '(inner bean)#2ce47652#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-14 09:45:27,736Bean '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-14 09:45:27,737Bean '(inner bean)#2ce47652#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-14 09:45:27,737Bean '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-14 09:45:27,738Bean '(inner bean)#2ce47652#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-14 09:45:27,739Bean '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-14 09:45:27,739Bean '(inner bean)#2ce47652#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-14 09:45:27,740Bean '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-14 09:45:27,741Bean '(inner bean)#2ce47652#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-14 09:45:27,742Bean '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-14 09:45:27,742Bean '(inner bean)#2ce47652#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-14 09:45:27,743Bean '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-14 09:45:27,743Bean '(inner bean)#2ce47652' 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-14 09:45:27,744Bean '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-14 09:45:27,766Bean '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-14 09:45:27,769Bean '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-14 09:45:27,796Bean '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-14 09:45:27,797Bean '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-14 09:45:27,800Bean '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-14 09:45:27,803Bean '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-14 09:45:27,805Bean '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-14 09:45:27,807Bean '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-14 09:45:27,808Bean '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-14 09:45:27,842Bean '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-14 09:45:27,845Bean '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-14 09:45:27,846Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1038014730] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,976Bean '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-14 09:45:28,074Bean '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-14 09:45:28,079Bean '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-14 09:45:28,080Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d4122407] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,404Bean '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-14 09:45:28,410Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$de644cdf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,418Bean '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-14 09:45:28,475Bean '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-14 09:45:28,751===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:45:28,754===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:45:28,760Bean '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-14 09:45:28,768Bean '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-14 09:45:28,798Bean '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-14 09:45:28,827Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$87eeb9be] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,830Bean '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-14 09:45:29,299Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:45:29,315Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,316Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,316Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,645Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:45:29,645Root WebApplicationContext: initialization completed in 6468 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:45:29,809 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:45:30,855{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:45:30,856dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:45:30,857dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:45:34,008 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:45:35,243Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:45:35,246Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:45:35,260Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:45:35,260Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:45:35,264Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:45:35,268JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:45:35,269Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676339135245' - 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-14 09:45:35,269Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:45:35,269Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:45:35,269JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@52d9a150setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:45:36,945 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:45:38,969Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:45:39,102 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:45:40,223Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:45:40,248Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:45:42,174Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:45:42,190Started LinkageSystemApplication in 19.995 seconds (JVM running for 21.419)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:45:42,199 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:45:42,325 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:45:42,858Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:45:42,858Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:45:42,861Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:45:43,184Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:45:43,408Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 started.startQuartzScheduler.java547
INFO2023-02-14 09:45:51,047————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 10:02:08,572Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 paused.standbyQuartzScheduler.java585
INFO2023-02-14 10:02:08,718Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 10:02:08,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 10:02:08,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 paused.standbyQuartzScheduler.java585
INFO2023-02-14 10:02:08,720Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 10:02:08,725dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 10:02:08,728{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 10:02:08,735{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 10:02:08,736dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 10:02:16 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 10:02:16,609HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 10:02:16,636Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 8128 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 10:02:16,637The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 10:02:20,122Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 10:02:20,127Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 10:02:20,507Finished Spring Data repository scanning in 355 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 10:02:20,733 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 10:02:20,733 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 10:02:20,734 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 10:02:20,969register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:21,365Bean '(inner bean)#12be4f83#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-14 10:02:21,371Bean '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-14 10:02:21,372Bean '(inner bean)#12be4f83#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-14 10:02:21,373Bean '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-14 10:02:21,374Bean '(inner bean)#12be4f83#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-14 10:02:21,376Bean '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-14 10:02:21,376Bean '(inner bean)#12be4f83#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-14 10:02:21,377Bean '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-14 10:02:21,378Bean '(inner bean)#12be4f83#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-14 10:02:21,379Bean '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-14 10:02:21,379Bean '(inner bean)#12be4f83#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-14 10:02:21,380Bean '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-14 10:02:21,381Bean '(inner bean)#12be4f83#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-14 10:02:21,382Bean '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-14 10:02:21,382Bean '(inner bean)#12be4f83#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-14 10:02:21,383Bean '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-14 10:02:21,384Bean '(inner bean)#12be4f83#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-14 10:02:21,384Bean '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-14 10:02:21,385Bean '(inner bean)#12be4f83' 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-14 10:02:21,385Bean '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-14 10:02:21,408Bean '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-14 10:02:21,411Bean '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-14 10:02:21,438Bean '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-14 10:02:21,439Bean '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-14 10:02:21,442Bean '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-14 10:02:21,445Bean '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-14 10:02:21,448Bean '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-14 10:02:21,449Bean '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-14 10:02:21,450Bean '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-14 10:02:21,486Bean '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-14 10:02:21,490Bean '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-14 10:02:21,491Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2025652936] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,622Bean '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-14 10:02:21,723Bean '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-14 10:02:21,728Bean '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-14 10:02:21,730Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6297b105] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,066Bean '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-14 10:02:22,071Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6ce9d9dd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,080Bean '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-14 10:02:22,136Bean '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-14 10:02:22,384===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 10:02:22,387===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 10:02:22,392Bean '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-14 10:02:22,400Bean '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-14 10:02:22,429Bean '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-14 10:02:22,458Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$167446bc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,460Bean '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-14 10:02:22,892Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 10:02:22,906Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 10:02:22,907Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 10:02:22,907Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 10:02:23,220Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 10:02:23,221Root WebApplicationContext: initialization completed in 6513 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 10:02:23,391 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 10:02:27,962{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 10:02:27,963dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 10:02:27,964dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 10:02:31,078 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 10:02:32,320Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 10:02:32,323Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 10:02:32,337Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 10:02:32,338Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 10:02:32,342Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 10:02:32,345JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 10:02:32,346Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676340152322' - 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-14 10:02:32,347Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 10:02:32,347Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 10:02:32,347JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@416bff93setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 10:02:33,943 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 10:02:36,092Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 10:02:36,230 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 10:02:37,295Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 10:02:37,320Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 10:02:39,301Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 10:02:39,317Started LinkageSystemApplication in 23.669 seconds (JVM running for 25.106)logStartedStartupInfoLogger.java61
INFO2023-02-14 10:02:39,324 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 10:02:39,448 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 10:02:39,834Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 10:02:39,835Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 10:02:39,837Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 10:02:40,308Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 10:02:40,611Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 started.startQuartzScheduler.java547
INFO2023-02-14 10:11:10,649【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 10:11:16,387拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 10:11:16,472---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 10:11:16,475排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 10:18:56,749ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 10:18:56,750ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676339818639"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 10:27:12,148ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 10:27:12,149ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676341216477"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 10:31:57,275ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 10:31:57,276ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676341864579"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 10:32:43,791排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 10:32:44,390拦截请求 >> /sys/tenant/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 10:32:44,459排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 10:32:47,414拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 10:32:47,436---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 10:32:47,438排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 11:09:45,076Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:09:45,209【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:09:45,229Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:09:45,230Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:09:45,230Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:09:45,231Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:09:45,231dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:09:45,231{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:09:45,246{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:09:45,246dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:09:54 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:09:54,952HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:09:54,983Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 21564 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:09:54,983The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:09:58,671Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:09:58,671Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:09:59,066Finished Spring Data repository scanning in 358 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:09:59,269 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:09:59,269 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:09:59,269 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:09:59,541register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,542register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,542register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,543register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,543register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,543register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,543register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,543register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,544register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,544register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:09:59,968Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af#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-14 11:09:59,983Bean '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-14 11:09:59,983Bean '(inner bean)#13ee97af' 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-14 11:09:59,983Bean '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-14 11:10:00,030Bean '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-14 11:10:00,034Bean '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-14 11:10:00,066Bean '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-14 11:10:00,068Bean '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-14 11:10:00,068Bean '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-14 11:10:00,068Bean '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-14 11:10:00,068Bean '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-14 11:10:00,068Bean '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-14 11:10:00,068Bean '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-14 11:10:00,114Bean '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-14 11:10:00,114Bean '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-14 11:10:00,114Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1513046042] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:10:00,272Bean '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-14 11:10:00,383Bean '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-14 11:10:00,389Bean '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-14 11:10:00,391Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$ee12a8c6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:10:00,752Bean '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-14 11:10:00,758Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$f864d19e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:10:00,767Bean '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-14 11:10:00,828Bean '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-14 11:10:01,088===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:10:01,091===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:10:01,096Bean '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-14 11:10:01,105Bean '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-14 11:10:01,136Bean '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-14 11:10:01,168Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$a1ef3e7d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:10:01,170Bean '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-14 11:10:01,646Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:10:01,663Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:10:01,663Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:10:01,664Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:10:01,992Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:10:01,993Root WebApplicationContext: initialization completed in 6931 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:10:02,170 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:10:03,189{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:10:03,189dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:10:03,189dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:10:06,602 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:10:07,867Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:10:07,867Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:10:07,883Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:10:07,883Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:10:07,883Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:10:07,883JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:10:07,883Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676344207867' - 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-14 11:10:07,883Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:10:07,883Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:10:07,883JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@42365c82setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:10:09,474 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:10:11,701Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:10:11,852 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:10:13,078Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:10:13,105Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:10:15,279Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:10:15,295Started LinkageSystemApplication in 21.332 seconds (JVM running for 22.742)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:10:15,310 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:10:15,449 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:10:15,619Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:10:15,619Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:10:15,622Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:10:16,316Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:10:16,568Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344207867 started.startQuartzScheduler.java547
INFO2023-02-14 11:10:29,556【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 11:10:40,374————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 11:10:51,854————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
ERROR2023-02-14 11:11:01,729nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$8dc3f1d8.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e5eb61dc.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 11:15:20,068Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344207867 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:15:20,206【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:15:20,224Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:15:20,225Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344207867 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:15:20,225Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344207867 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:15:20,226Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344207867 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:15:20,226dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:15:20,226{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:15:20,242{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:15:20,242dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:15:25 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:15:25,738HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:15:25,767Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20032 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:15:25,768The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:15:29,156Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:15:29,156Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:15:29,531Finished Spring Data repository scanning in 342 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:15:29,718 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:15:29,718 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:15:29,718 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:29,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:15:30,405Bean '(inner bean)#eb1d475#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-14 11:15:30,405Bean '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-14 11:15:30,405Bean '(inner bean)#eb1d475#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-14 11:15:30,405Bean '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-14 11:15:30,405Bean '(inner bean)#eb1d475#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-14 11:15:30,421Bean '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-14 11:15:30,422Bean '(inner bean)#eb1d475#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-14 11:15:30,424Bean '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-14 11:15:30,425Bean '(inner bean)#eb1d475#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-14 11:15:30,426Bean '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-14 11:15:30,427Bean '(inner bean)#eb1d475#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-14 11:15:30,428Bean '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-14 11:15:30,429Bean '(inner bean)#eb1d475#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-14 11:15:30,431Bean '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-14 11:15:30,432Bean '(inner bean)#eb1d475#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-14 11:15:30,434Bean '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-14 11:15:30,434Bean '(inner bean)#eb1d475#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-14 11:15:30,436Bean '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-14 11:15:30,436Bean '(inner bean)#eb1d475' 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-14 11:15:30,437Bean '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-14 11:15:30,461Bean '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-14 11:15:30,465Bean '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-14 11:15:30,493Bean '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-14 11:15:30,494Bean '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-14 11:15:30,496Bean '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-14 11:15:30,501Bean '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-14 11:15:30,507Bean '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-14 11:15:30,508Bean '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-14 11:15:30,510Bean '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-14 11:15:30,547Bean '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-14 11:15:30,552Bean '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-14 11:15:30,553Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2025652936] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:15:30,698Bean '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-14 11:15:30,809Bean '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-14 11:15:30,814Bean '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-14 11:15:30,816Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6297b105] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:15:31,150Bean '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-14 11:15:31,155Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6ce9d9dd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:15:31,164Bean '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-14 11:15:31,222Bean '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-14 11:15:31,473===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:15:31,476===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:15:31,481Bean '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-14 11:15:31,489Bean '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-14 11:15:31,518Bean '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-14 11:15:31,547Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$167446bc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:15:31,549Bean '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-14 11:15:31,982Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:15:31,998Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:15:31,998Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:15:31,998Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:15:32,312Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:15:32,313Root WebApplicationContext: initialization completed in 6477 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:15:32,479 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:15:33,455{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:15:33,455dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:15:33,455dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:15:36,554 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:15:37,792Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:15:37,792Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:15:37,808Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:15:37,808Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:15:37,808Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:15:37,824JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:15:37,824Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676344537792' - 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-14 11:15:37,824Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:15:37,824Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:15:37,824JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2db07651setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:15:39,455 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:15:41,682Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:15:41,821 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:15:42,929Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:15:42,960Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:15:43,116Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:15:43,116Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:15:43,132Completed initialization in 16 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:15:45,292Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:15:45,308Started LinkageSystemApplication in 20.495 seconds (JVM running for 21.86)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:15:45,308 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:15:45,430【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 11:15:45,475 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:15:46,300Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:15:46,539Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344537792 started.startQuartzScheduler.java547
ERROR2023-02-14 11:15:48,858nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$cd423a51.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$c8b1ba2a.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 11:19:00,966Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344537792 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:19:01,102【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:19:01,119Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:19:01,120Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344537792 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:19:01,120Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344537792 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:19:01,121Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344537792 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:19:01,127dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:19:01,129{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:19:01,136{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:19:01,137dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:19:06 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:19:06,612HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:19:06,627Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22152 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:19:06,627The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:19:10,018Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:19:10,018Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:19:10,377Finished Spring Data repository scanning in 345 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:19:10,599 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:19:10,599 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:19:10,601 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:19:10,839register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,840register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,840register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,841register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,841register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,841register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,841register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,842register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,842register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:10,842register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:11,243Bean '(inner bean)#5891b7c5#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-14 11:19:11,248Bean '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-14 11:19:11,249Bean '(inner bean)#5891b7c5#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-14 11:19:11,251Bean '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-14 11:19:11,252Bean '(inner bean)#5891b7c5#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-14 11:19:11,253Bean '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-14 11:19:11,254Bean '(inner bean)#5891b7c5#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-14 11:19:11,255Bean '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-14 11:19:11,255Bean '(inner bean)#5891b7c5#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-14 11:19:11,256Bean '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-14 11:19:11,257Bean '(inner bean)#5891b7c5#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-14 11:19:11,258Bean '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-14 11:19:11,258Bean '(inner bean)#5891b7c5#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-14 11:19:11,259Bean '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-14 11:19:11,260Bean '(inner bean)#5891b7c5#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-14 11:19:11,261Bean '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-14 11:19:11,261Bean '(inner bean)#5891b7c5#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-14 11:19:11,262Bean '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-14 11:19:11,262Bean '(inner bean)#5891b7c5' 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-14 11:19:11,263Bean '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-14 11:19:11,286Bean '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-14 11:19:11,288Bean '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-14 11:19:11,316Bean '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-14 11:19:11,317Bean '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-14 11:19:11,320Bean '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-14 11:19:11,323Bean '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-14 11:19:11,326Bean '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-14 11:19:11,326Bean '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-14 11:19:11,327Bean '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-14 11:19:11,360Bean '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-14 11:19:11,364Bean '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-14 11:19:11,365Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1214850053] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:11,496Bean '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-14 11:19:11,599Bean '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-14 11:19:11,604Bean '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-14 11:19:11,606Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$e022fd20] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:11,924Bean '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-14 11:19:11,929Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$ea7525f8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:11,938Bean '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-14 11:19:11,993Bean '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-14 11:19:12,249===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:19:12,252===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:19:12,257Bean '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-14 11:19:12,265Bean '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-14 11:19:12,295Bean '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-14 11:19:12,324Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$93ff92d7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:12,327Bean '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-14 11:19:12,742Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:19:12,758Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:19:12,758Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:19:12,758Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:19:13,058Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:19:13,058Root WebApplicationContext: initialization completed in 6353 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:19:13,230 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:19:14,236{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:19:14,236dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:19:14,236dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
WARN2023-02-14 11:19:16,698Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jimuReportTokenService': Unsatisfied dependency expressed through field 'sysBaseApi'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysBaseApiImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequiprefreshAbstractApplicationContext.java591
INFO2023-02-14 11:19:16,699dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:19:16,703{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:19:16,710{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:19:16,711dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
INFO2023-02-14 11:19:16,783Stopping service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:19:16,800 - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.logMessageConditionEvaluationReportLoggingListener.java136
ERROR2023-02-14 11:19:16,864Application run failedreportFailureSpringApplication.java835
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jimuReportTokenService': Unsatisfied dependency expressed through field 'sysBaseApi'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysBaseApiImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) -
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) -
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) -
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) -
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) -
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:745) -
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:423) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1317) -
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306) -
    at org.jeecg.LinkageSystemApplication.main(LinkageSystemApplication.java:30) -
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysBaseApiImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) -
     ... 20 common frames omitted -
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserMapper' defined in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\org\jeecg\modules\system\mapper\SysUserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1534) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1417) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) -
    at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) -
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) -
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) -
     ... 31 common frames omitted -
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) -
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) -
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) -
    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) -
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) -
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1519) -
     ... 47 common frames omitted -
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) -
    at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) -
     ... 60 common frames omitted -
Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:562) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:628) -
    at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:219) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) -
     ... 61 common frames omitted -
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:123) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.parse(XMLMapperBuilder.java:95) -
    at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:560) -
     ... 69 common frames omitted -
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:118) -
    at org.apache.ibatis.builder.xml.XMLStatementBuilder.parseStatementNode(XMLStatementBuilder.java:76) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.buildStatementFromContext(XMLMapperBuilder.java:138) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.buildStatementFromContext(XMLMapperBuilder.java:131) -
    at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:121) -
     ... 71 common frames omitted -
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'ttsulfequip'. Cause: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:120) -
    at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:149) -
    at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:116) -
     ... 75 common frames omitted -
Caused by: java.lang.ClassNotFoundException: Cannot find class: ttsulfequip -
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:196) -
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:89) -
    at org.apache.ibatis.io.Resources.classForName(Resources.java:261) -
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:116) -
     ... 77 common frames omitted -
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:19:26 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:19:26,308HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:19:26,332Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 21176 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:19:26,333The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:19:29,705Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:19:29,705Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:19:30,095Finished Spring Data repository scanning in 355 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:19:30,298 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:19:30,298 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:19:30,298 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:19:30,563register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,564register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,564register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,565register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,565register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,565register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,565register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,566register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,566register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,566register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:19:30,987Bean '(inner bean)#1686ed85#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-14 11:19:30,995Bean '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-14 11:19:30,996Bean '(inner bean)#1686ed85#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-14 11:19:30,997Bean '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-14 11:19:30,997Bean '(inner bean)#1686ed85#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-14 11:19:30,998Bean '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-14 11:19:30,999Bean '(inner bean)#1686ed85#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-14 11:19:31,000Bean '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-14 11:19:31,001Bean '(inner bean)#1686ed85#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-14 11:19:31,001Bean '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-14 11:19:31,002Bean '(inner bean)#1686ed85#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-14 11:19:31,003Bean '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-14 11:19:31,003Bean '(inner bean)#1686ed85#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-14 11:19:31,004Bean '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-14 11:19:31,005Bean '(inner bean)#1686ed85#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-14 11:19:31,006Bean '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-14 11:19:31,006Bean '(inner bean)#1686ed85#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-14 11:19:31,007Bean '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-14 11:19:31,007Bean '(inner bean)#1686ed85' 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-14 11:19:31,008Bean '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-14 11:19:31,029Bean '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-14 11:19:31,032Bean '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-14 11:19:31,059Bean '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-14 11:19:31,060Bean '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-14 11:19:31,062Bean '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-14 11:19:31,067Bean '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-14 11:19:31,070Bean '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-14 11:19:31,071Bean '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-14 11:19:31,072Bean '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-14 11:19:31,105Bean '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-14 11:19:31,109Bean '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-14 11:19:31,110Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/184147252] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:31,241Bean '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-14 11:19:31,343Bean '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-14 11:19:31,348Bean '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-14 11:19:31,350Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$78d35eac] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:31,671Bean '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-14 11:19:31,677Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$83258784] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:31,686Bean '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-14 11:19:31,747Bean '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-14 11:19:31,995===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:19:31,998===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:19:32,004Bean '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-14 11:19:32,012Bean '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-14 11:19:32,041Bean '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-14 11:19:32,070Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$2caff463] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:19:32,073Bean '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-14 11:19:32,505Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:19:32,506Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:19:32,506Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:19:32,506Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:19:32,819Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:19:32,819Root WebApplicationContext: initialization completed in 6416 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:19:32,991 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:19:33,957{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:19:33,957dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:19:33,957dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:19:37,043 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:19:38,250Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:19:38,250Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:19:38,266Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:19:38,266Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:19:38,266Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:19:38,266JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:19:38,266Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676344778250' - 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-14 11:19:38,266Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:19:38,266Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:19:38,266JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@577b2c5fsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:19:39,788 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:19:41,943Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:19:42,075 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:19:43,119Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:19:43,150Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:19:44,315Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:19:44,315Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:19:44,315Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:19:45,334Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:19:45,350Started LinkageSystemApplication in 19.954 seconds (JVM running for 21.317)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:19:45,365 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:19:45,465【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 11:19:45,506 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:19:46,340Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:19:46,573Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344778250 started.startQuartzScheduler.java547
ERROR2023-02-14 11:20:05,286nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6a772634.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$f6aff112.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 11:20:21,910Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344778250 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:20:22,045【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:20:22,062Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:20:22,063Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344778250 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:20:22,063Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344778250 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:20:22,064Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344778250 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:20:22,064dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:20:22,064{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:20:22,064{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:20:22,064dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:20:27 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:20:27,573HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:20:27,605Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19536 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:20:27,605The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:20:30,979Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:20:30,984Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:20:31,360Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:20:31,555 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:20:31,556 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:20:31,557 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:20:31,810register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,811register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,811register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,812register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,812register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,812register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,812register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,812register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,813register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:31,813register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:20:32,217Bean '(inner bean)#48af5f38#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-14 11:20:32,223Bean '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-14 11:20:32,224Bean '(inner bean)#48af5f38#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-14 11:20:32,225Bean '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-14 11:20:32,226Bean '(inner bean)#48af5f38#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-14 11:20:32,227Bean '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-14 11:20:32,227Bean '(inner bean)#48af5f38#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-14 11:20:32,228Bean '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-14 11:20:32,229Bean '(inner bean)#48af5f38#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-14 11:20:32,229Bean '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-14 11:20:32,230Bean '(inner bean)#48af5f38#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-14 11:20:32,231Bean '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-14 11:20:32,232Bean '(inner bean)#48af5f38#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-14 11:20:32,233Bean '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-14 11:20:32,233Bean '(inner bean)#48af5f38#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-14 11:20:32,234Bean '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-14 11:20:32,235Bean '(inner bean)#48af5f38#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-14 11:20:32,235Bean '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-14 11:20:32,236Bean '(inner bean)#48af5f38' 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-14 11:20:32,237Bean '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-14 11:20:32,259Bean '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-14 11:20:32,263Bean '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-14 11:20:32,290Bean '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-14 11:20:32,292Bean '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-14 11:20:32,295Bean '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-14 11:20:32,299Bean '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-14 11:20:32,301Bean '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-14 11:20:32,302Bean '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-14 11:20:32,303Bean '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-14 11:20:32,338Bean '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-14 11:20:32,343Bean '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-14 11:20:32,344Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/345723898] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:20:32,474Bean '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-14 11:20:32,562Bean '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-14 11:20:32,562Bean '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-14 11:20:32,578Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$bb3d2812] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:20:32,874Bean '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-14 11:20:32,889Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$c58f50ea] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:20:32,889Bean '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-14 11:20:32,952Bean '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-14 11:20:33,204===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:20:33,204===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:20:33,220Bean '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-14 11:20:33,220Bean '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-14 11:20:33,251Bean '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-14 11:20:33,282Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$6f19bdc9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:20:33,282Bean '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-14 11:20:33,707Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:20:33,723Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:20:33,723Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:20:33,723Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:20:34,023Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:20:34,023Root WebApplicationContext: initialization completed in 6356 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:20:34,182 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:20:35,139{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:20:35,154dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:20:35,154dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:20:38,292 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:20:39,545Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:20:39,545Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:20:39,561Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:20:39,561Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:20:39,561Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:20:39,561JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:20:39,561Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676344839545' - 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-14 11:20:39,576Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:20:39,576Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:20:39,576JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3fe7c87csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:20:41,405 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:20:43,572Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:20:43,720 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:20:44,873Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:20:44,905Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:20:46,907Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:20:46,922Started LinkageSystemApplication in 20.235 seconds (JVM running for 21.642)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:20:46,932 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:20:47,055 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:20:47,186Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:20:47,186Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:20:47,188Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:20:47,924Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:20:48,130Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344839545 started.startQuartzScheduler.java547
ERROR2023-02-14 11:20:49,627nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$cd423a51.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4baa15f5.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 11:21:03,217ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 11:21:03,217ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676341917677"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 11:21:05,292【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 11:21:28,313Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344839545 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:21:28,446【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:21:28,460Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:21:28,461Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344839545 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:21:28,461Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344839545 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:21:28,462Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344839545 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:21:28,462dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:21:28,462{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:21:28,462{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:21:28,462dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:21:34 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:21:34,470HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:21:34,501Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 1264 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:21:34,501The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:21:38,308Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:21:38,312Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:21:38,689Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:21:38,885 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:21:38,885 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:21:38,886 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:21:39,142register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,143register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,143register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,144register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,144register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,144register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,144register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,145register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,145register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,145register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:21:39,541Bean '(inner bean)#40017e98#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-14 11:21:39,547Bean '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-14 11:21:39,548Bean '(inner bean)#40017e98#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-14 11:21:39,549Bean '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-14 11:21:39,550Bean '(inner bean)#40017e98#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-14 11:21:39,551Bean '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-14 11:21:39,552Bean '(inner bean)#40017e98#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-14 11:21:39,553Bean '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-14 11:21:39,553Bean '(inner bean)#40017e98#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-14 11:21:39,554Bean '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-14 11:21:39,555Bean '(inner bean)#40017e98#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-14 11:21:39,556Bean '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-14 11:21:39,556Bean '(inner bean)#40017e98#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-14 11:21:39,557Bean '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-14 11:21:39,558Bean '(inner bean)#40017e98#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-14 11:21:39,559Bean '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-14 11:21:39,559Bean '(inner bean)#40017e98#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-14 11:21:39,560Bean '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-14 11:21:39,560Bean '(inner bean)#40017e98' 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-14 11:21:39,561Bean '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-14 11:21:39,586Bean '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-14 11:21:39,589Bean '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-14 11:21:39,620Bean '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-14 11:21:39,622Bean '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-14 11:21:39,625Bean '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-14 11:21:39,630Bean '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-14 11:21:39,633Bean '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-14 11:21:39,634Bean '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-14 11:21:39,636Bean '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-14 11:21:39,670Bean '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-14 11:21:39,673Bean '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-14 11:21:39,674Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/683005404] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:21:39,806Bean '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-14 11:21:39,907Bean '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-14 11:21:39,913Bean '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-14 11:21:39,915Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$e0ef9a0f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:21:40,240Bean '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-14 11:21:40,246Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$eb41c2e7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:21:40,254Bean '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-14 11:21:40,309Bean '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-14 11:21:40,566===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:21:40,570===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:21:40,575Bean '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-14 11:21:40,583Bean '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-14 11:21:40,613Bean '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-14 11:21:40,644Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$94cc2fc6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:21:40,646Bean '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-14 11:21:41,091Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:21:41,108Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:21:41,108Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:21:41,108Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:21:41,427Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:21:41,428Root WebApplicationContext: initialization completed in 6856 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:21:41,595 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:21:42,831{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:21:42,833dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:21:42,833dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:21:46,062 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:21:47,320Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:21:47,324Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:21:47,338Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:21:47,338Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:21:47,343Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:21:47,347JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:21:47,348Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676344907323' - 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-14 11:21:47,348Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:21:47,348Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:21:47,348JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@52d9a150setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:21:48,959 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:21:51,115Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:21:51,252 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:21:52,385Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:21:52,411Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:21:54,373Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:21:54,389Started LinkageSystemApplication in 20.854 seconds (JVM running for 22.279)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:21:54,398 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:21:54,560 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:21:54,971Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:21:54,972Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:21:54,974Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:21:55,390Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:21:55,612Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344907323 started.startQuartzScheduler.java547
INFO2023-02-14 11:22:12,526【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
ERROR2023-02-14 11:22:14,292nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$3997e02.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2ee49fe.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.TrimSqlNode.apply(TrimSqlNode.java:55) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 11:24:12,689Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344907323 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:24:12,832【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 11:24:12,851Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 11:24:12,852Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344907323 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 11:24:12,852Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344907323 paused.standbyQuartzScheduler.java585
INFO2023-02-14 11:24:12,853Scheduler MyScheduler_$_DESKTOP-9EB22GD1676344907323 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 11:24:12,853dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 11:24:12,853{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 11:24:12,868{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 11:24:12,868dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 11:24:18 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 11:24:18,410HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 11:24:18,441Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 10652 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 11:24:18,441The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 11:24:21,853Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 11:24:21,853Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 11:24:22,228Finished Spring Data repository scanning in 345 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 11:24:22,416 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 11:24:22,416 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 11:24:22,416 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,666register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,681register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:22,681register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 11:24:23,072Bean '(inner bean)#30a01dd8#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-14 11:24:23,072Bean '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-14 11:24:23,072Bean '(inner bean)#30a01dd8#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-14 11:24:23,072Bean '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-14 11:24:23,072Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8#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-14 11:24:23,087Bean '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-14 11:24:23,087Bean '(inner bean)#30a01dd8' 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-14 11:24:23,087Bean '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-14 11:24:23,119Bean '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-14 11:24:23,119Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,150Bean '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-14 11:24:23,197Bean '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-14 11:24:23,197Bean '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-14 11:24:23,197Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/692864183] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:24:23,322Bean '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-14 11:24:23,415Bean '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-14 11:24:23,431Bean '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-14 11:24:23,431Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$66e30698] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:24:23,750Bean '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-14 11:24:23,750Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$71352f70] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:24:23,750Bean '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-14 11:24:23,813Bean '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-14 11:24:24,065===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 11:24:24,065===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 11:24:24,065Bean '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-14 11:24:24,081Bean '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-14 11:24:24,096Bean '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-14 11:24:24,131Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$1abf9c4f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 11:24:24,131Bean '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-14 11:24:24,556Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 11:24:24,572Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:24:24,572Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 11:24:24,572Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 11:24:24,888Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 11:24:24,888Root WebApplicationContext: initialization completed in 6384 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 11:24:25,046 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 11:24:25,998{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 11:24:26,000dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 11:24:26,001dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 11:24:29,119 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 11:24:30,334Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 11:24:30,334Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 11:24:30,349Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 11:24:30,349Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 11:24:30,349Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 11:24:30,349JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 11:24:30,365Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676345070334' - 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-14 11:24:30,365Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 11:24:30,365Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 11:24:30,365JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@87cb1d8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 11:24:32,210 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 11:24:34,128Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 11:24:34,247 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 11:24:35,415Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 11:24:35,445Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 11:24:35,617Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 11:24:35,617Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 11:24:35,622Completed initialization in 4 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 11:24:36,867【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 11:24:36,964Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 11:24:36,979Started LinkageSystemApplication in 19.459 seconds (JVM running for 20.827)logStartedStartupInfoLogger.java61
INFO2023-02-14 11:24:36,995 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 11:24:37,125 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 11:24:37,994Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 11:24:38,269Scheduler MyScheduler_$_DESKTOP-9EB22GD1676345070334 started.startQuartzScheduler.java547
ERROR2023-02-14 11:24:39,423nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip'handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$5eb328a6.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.addselect(TtSulfEquipController.java:188) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.AutoLogAspect.around(AutoLogAspect.java:58) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$38f6f003.addselect(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ttSulfEquip' in 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' -
    at org.apache.ibatis.reflection.Reflector.getGetInvoker(Reflector.java:374) -
    at org.apache.ibatis.reflection.MetaClass.getGetInvoker(MetaClass.java:164) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.getBeanProperty(BeanWrapper.java:162) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.get(BeanWrapper.java:49) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextMap.get(DynamicContext.java:102) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:113) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy398.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 130 common frames omitted -
INFO2023-02-14 12:35:06,813Scheduler MyScheduler_$_DESKTOP-9EB22GD1676345070334 paused.standbyQuartzScheduler.java585
INFO2023-02-14 12:35:06,976【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:35:06,995Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 12:35:06,996Scheduler MyScheduler_$_DESKTOP-9EB22GD1676345070334 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 12:35:06,996Scheduler MyScheduler_$_DESKTOP-9EB22GD1676345070334 paused.standbyQuartzScheduler.java585
INFO2023-02-14 12:35:06,998Scheduler MyScheduler_$_DESKTOP-9EB22GD1676345070334 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 12:35:06,998dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 12:35:06,998{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 12:35:07,014{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 12:35:07,014dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 12:35:14 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 12:35:14,503HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 12:35:14,534Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 11176 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 12:35:14,534The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 12:35:18,621Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 12:35:18,621Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 12:35:18,996Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 12:35:19,217 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 12:35:19,217 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 12:35:19,217 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 12:35:19,866Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,883Bean '(inner bean)#380fdcf2#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-14 12:35:19,883Bean '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-14 12:35:19,899Bean '(inner bean)#380fdcf2#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-14 12:35:19,900Bean '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-14 12:35:19,900Bean '(inner bean)#380fdcf2' 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-14 12:35:19,900Bean '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-14 12:35:19,917Bean '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-14 12:35:19,917Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,950Bean '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-14 12:35:19,983Bean '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-14 12:35:20,002Bean '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-14 12:35:20,002Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/164865953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 12:35:20,153Bean '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-14 12:35:20,251Bean '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-14 12:35:20,251Bean '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-14 12:35:20,269Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d0369f11] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 12:35:20,609Bean '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-14 12:35:20,614Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$da88c7e9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 12:35:20,625Bean '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-14 12:35:20,690Bean '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-14 12:35:20,949===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 12:35:20,953===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 12:35:20,958Bean '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-14 12:35:20,967Bean '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-14 12:35:20,985Bean '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-14 12:35:21,019Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$841334c8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 12:35:21,019Bean '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-14 12:35:21,501Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 12:35:21,503Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 12:35:21,519Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 12:35:21,519Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 12:35:21,842Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 12:35:21,843Root WebApplicationContext: initialization completed in 7230 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 12:35:22,002 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 12:35:23,058{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 12:35:23,058dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 12:35:23,058dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 12:35:26,761 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 12:35:28,093Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 12:35:28,093Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 12:35:28,109Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 12:35:28,110Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 12:35:28,110Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 12:35:28,110JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 12:35:28,110Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676349328093' - 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-14 12:35:28,110Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 12:35:28,110Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 12:35:28,110JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2df0a4c3setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 12:35:29,744 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 12:35:32,204Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 12:35:32,358 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 12:35:33,460Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 12:35:33,488Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 12:35:35,557Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 12:35:35,573Started LinkageSystemApplication in 22.166 seconds (JVM running for 24.24)logStartedStartupInfoLogger.java61
INFO2023-02-14 12:35:35,584 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 12:35:35,717 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 12:35:36,094Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 12:35:36,094Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 12:35:36,098Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 12:35:36,569Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 12:35:36,794Scheduler MyScheduler_$_DESKTOP-9EB22GD1676349328093 started.startQuartzScheduler.java547
INFO2023-02-14 12:36:20,802————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 12:38:55,125 用户名: ����Ա,退出成功! logoutLoginController.java195
INFO2023-02-14 12:38:55,171获取验证码,Redis key = f066975d0ed0b195c54d93a5da57c627,checkCode = 0zcnrandomImageLoginController.java518
INFO2023-02-14 12:38:58,108获取验证码,Redis key = b22e9b0a3a1fe9a92824258784f305cf,checkCode = rebSrandomImageLoginController.java518
INFO2023-02-14 12:44:20,621获取验证码,Redis key = a73759ca9ccfc07e7165b8a12b5f2823,checkCode = eSL9randomImageLoginController.java518
INFO2023-02-14 12:44:22,258获取验证码,Redis key = 3a76547f204a6a2a70e690dae18c117f,checkCode = zXkQrandomImageLoginController.java518
INFO2023-02-14 12:44:24,910redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 12:44:25,270加密操作,Aspect程序耗时:2msaroundSensitiveDataAspect.java76
INFO2023-02-14 12:44:40,470【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:44:43,403======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:44:46,023排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:44:46,946======获取一级菜单数据=====耗时:14毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:44:53,696拦截请求 >> /sys/user/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 12:44:53,762排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:44:53,834com.baomidou.mybatisplus.extension.plugins.pagination.Page@53e81ae0queryPageListSysUserController.java158
INFO2023-02-14 12:44:56,293排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:44:56,316拦截请求 >> /sys/user/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 12:44:56,354排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:44:56,384com.baomidou.mybatisplus.extension.plugins.pagination.Page@96a2948queryPageListSysUserController.java158
INFO2023-02-14 12:44:59,092排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:00,383---查询过滤器,Query规则---field:pid, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 12:45:00,385排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:00,890---查询过滤器,Query规则---field:del_flag, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 12:45:00,891排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:02,205排序规则>>列:null,排序方式:nulldoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:02,211排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:02,988排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:45:04,275======获取一级菜单数据=====耗时:15毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:46:55,724======获取一级菜单数据=====耗时:13毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:47:05,694排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:05,730拦截请求 >> /sys/user/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 12:47:05,761排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:05,794com.baomidou.mybatisplus.extension.plugins.pagination.Page@49752ceaqueryPageListSysUserController.java158
INFO2023-02-14 12:47:06,099排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:08,173排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:19,201---查询过滤器,Query规则---field:del_flag, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 12:47:19,202排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:19,582---查询过滤器,Query规则---field:pid, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 12:47:19,583排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:20,280排序规则>>列:null,排序方式:nulldoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:21,600【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:47:22,922【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:47:22,972排序规则>>列:null,排序方式:nulldoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:24,999拦截请求 >> /sys/user/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 12:47:25,025排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:25,051com.baomidou.mybatisplus.extension.plugins.pagination.Page@2a31b686queryPageListSysUserController.java158
INFO2023-02-14 12:47:30,766---查询过滤器,Query规则---field:code, rule:IN, value:[总经理]addEasyQueryQueryGenerator.java648
INFO2023-02-14 12:47:30,766排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:30,767Sign Interceptor request URI = /linkage-boot/sys/dict/getDictItems/undefinedpreHandleSignAuthInterceptor.java35
INFO2023-02-14 12:47:30,767排序规则>>列:null,排序方式:nulldoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:47:30,777Param paramsJsonStr : {}getParamsSignSignUtil.java50
INFO2023-02-14 12:47:30,780Param Sign : E19D6243CB1945AB4F7202A1B00F77D5verifySignSignUtil.java37
INFO2023-02-14 12:47:30,782 dictCode : undefinedgetDictItemsSysDictController.java161
INFO2023-02-14 12:47:48,110排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
WARN2023-02-14 12:47:55,964SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@103e1f3b] Transaction not enabledexecuteBatchSqlHelper.java179
INFO2023-02-14 12:47:55,985======角色授权成功=====耗时:24毫秒saveRolePermissionSysPermissionController.java562
INFO2023-02-14 12:47:56,667【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:47:57,796【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:47:57,847排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:48:11,295【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:48:15,229【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:48:15,302排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 12:48:37,503======获取一级菜单数据=====耗时:15毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:49:05,871======获取一级菜单数据=====耗时:73毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:49:07,741【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:49:11,437【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:49:11,512======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:49:44,179======获取一级菜单数据=====耗时:19毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:49:46,556【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:49:50,348【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:49:50,419======获取一级菜单数据=====耗时:15毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:50:11,227======获取一级菜单数据=====耗时:33毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:50:12,803【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:50:16,528【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:50:16,598======获取一级菜单数据=====耗时:17毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:50:27,472======获取一级菜单数据=====耗时:12毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:51:48,812======获取一级菜单数据=====耗时:13毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:51:50,184【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:51:53,993【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:51:54,063======获取一级菜单数据=====耗时:15毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:58:38,258======获取一级菜单数据=====耗时:65毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 12:58:40,210【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 12:58:44,119【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 12:58:44,262======获取一级菜单数据=====耗时:79毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 13:00:00,991======获取一级菜单数据=====耗时:28毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 13:00:02,701【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:00:07,553【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:00:08,817======获取一级菜单数据=====耗时:1202毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 13:00:10,952排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:00:16,759排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:00:35,966排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:00:37,798排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:02:17,080排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:02:34,442【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:02:36,786【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:02:36,840排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:06,963【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:03:10,018【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:03:10,043排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:39,718【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:03:43,656【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:03:43,711排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:45,463加密操作,Aspect程序耗时:0msaroundSensitiveDataAspect.java76
INFO2023-02-14 13:03:45,534---查询过滤器,Query规则---field:eqt_no, rule:=, value:1addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:03:45,534排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:46,403排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:50,732---查询过滤器,Query规则---field:eqt_no, rule:=, value:36addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:03:50,733排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:03:59,514排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:04:01,755排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:04:12,227---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:04:12,228排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:48,817---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:48,817排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:49,834---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:49,834排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:50,633---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:50,634排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:51,953---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:51,953排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:54,306---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:54,306排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:56,769---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:56,770排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:06:59,561---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:06:59,561排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:07:02,696---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:07:02,696排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:14:15,118ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:14:15,118ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676344961280"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:15:06,263---查询过滤器,Query规则---field:eqt_no, rule:=, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:15:06,263排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:15:11,631排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:16:00,211ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:16:00,211ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676351658117"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:23:00,801ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:23:00,801ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676351760159"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:24:45,937ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:24:45,938ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676352172660"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:24:47,040Scheduler MyScheduler_$_DESKTOP-9EB22GD1676349328093 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:24:47,194【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:24:47,232Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:24:47,233Scheduler MyScheduler_$_DESKTOP-9EB22GD1676349328093 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:24:47,234Scheduler MyScheduler_$_DESKTOP-9EB22GD1676349328093 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:24:47,235Scheduler MyScheduler_$_DESKTOP-9EB22GD1676349328093 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:24:47,251dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:24:47,259{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:24:47,279{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:24:47,279dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:24:58 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:24:58,169HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:24:58,202Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18092 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:24:58,202The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:25:03,270Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:25:03,285Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:25:03,656Finished Spring Data repository scanning in 346 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:25:03,850 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:25:03,850 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:25:03,850 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:25:04,106register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,122register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:25:04,513Bean '(inner bean)#23d0944b#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-14 13:25:04,513Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b#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-14 13:25:04,528Bean '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-14 13:25:04,528Bean '(inner bean)#23d0944b' 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-14 13:25:04,528Bean '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-14 13:25:04,559Bean '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-14 13:25:04,559Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,591Bean '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-14 13:25:04,622Bean '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-14 13:25:04,637Bean '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-14 13:25:04,637Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1972950645] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:25:04,762Bean '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-14 13:25:04,872Bean '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-14 13:25:04,872Bean '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-14 13:25:04,872Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$43439ed7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:25:05,197Bean '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-14 13:25:05,197Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$4d95c7af] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:25:05,213Bean '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-14 13:25:05,259Bean '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-14 13:25:05,544===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:25:05,547===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:25:05,552Bean '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-14 13:25:05,561Bean '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-14 13:25:05,592Bean '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-14 13:25:05,625Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f720348e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:25:05,629Bean '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-14 13:25:06,117Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:25:06,133Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:25:06,133Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:25:06,133Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:25:06,465Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:25:06,465Root WebApplicationContext: initialization completed in 8176 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:25:06,653 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:25:07,735{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:25:07,735dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:25:07,735dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:25:11,075 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:25:12,341Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:25:12,344Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:25:12,358Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:25:12,359Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:25:12,363Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:25:12,366JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:25:12,367Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676352312344' - 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-14 13:25:12,368Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:25:12,368Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:25:12,369JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3299ee2csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:25:14,018 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:25:16,181Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:25:16,355 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:25:17,443Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:25:17,468Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:25:19,437Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:25:19,451Started LinkageSystemApplication in 22.214 seconds (JVM running for 23.862)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:25:19,461 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:25:19,875 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:25:19,913Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:25:19,913Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:25:19,916Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:25:20,445Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:25:20,682Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352312344 started.startQuartzScheduler.java547
INFO2023-02-14 13:25:31,517【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:26:16,296【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:26:20,157【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:26:20,399排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:26:20,481nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e98c6f9c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4d96c29e.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 13:26:52,959Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352312344 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:26:53,096【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:26:53,117Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:26:53,118Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352312344 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:26:53,118Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352312344 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:26:53,119Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352312344 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:26:53,119dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:26:53,119{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:26:53,135{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:26:53,135dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:26:58 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:26:58,938HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:26:58,954Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 4988 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:26:58,954The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:27:02,585Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:27:02,585Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:27:02,960Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:27:03,179 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:27:03,179 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:27:03,194 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,460register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,460register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:27:03,850Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,866Bean '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-14 13:27:03,866Bean '(inner bean)#638977e0#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-14 13:27:03,882Bean '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-14 13:27:03,882Bean '(inner bean)#638977e0#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-14 13:27:03,882Bean '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-14 13:27:03,882Bean '(inner bean)#638977e0' 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-14 13:27:03,882Bean '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-14 13:27:03,897Bean '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-14 13:27:03,897Bean '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-14 13:27:03,928Bean '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-14 13:27:03,928Bean '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-14 13:27:03,928Bean '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-14 13:27:03,944Bean '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-14 13:27:03,944Bean '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-14 13:27:03,944Bean '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-14 13:27:03,944Bean '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-14 13:27:03,975Bean '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-14 13:27:03,975Bean '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-14 13:27:03,975Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/688392165] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:27:04,116Bean '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-14 13:27:04,210Bean '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-14 13:27:04,225Bean '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-14 13:27:04,225Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$ea6ce86a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:27:04,541Bean '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-14 13:27:04,541Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$f4bf1142] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:27:04,557Bean '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-14 13:27:04,603Bean '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-14 13:27:04,857===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:27:04,857===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:27:04,872Bean '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-14 13:27:04,872Bean '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-14 13:27:04,903Bean '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-14 13:27:04,938Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$9e497e21] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:27:04,938Bean '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-14 13:27:05,369Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:27:05,385Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:27:05,385Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:27:05,385Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:27:05,725Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:27:05,725Root WebApplicationContext: initialization completed in 6693 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:27:05,892 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:27:06,853{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:27:06,869dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:27:06,869dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:27:09,923 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:27:11,147Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:27:11,150Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:27:11,164Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:27:11,164Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:27:11,168Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:27:11,172JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:27:11,173Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676352431149' - 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-14 13:27:11,173Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:27:11,173Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:27:11,174JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@88fe9a8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:27:12,773 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:27:14,904Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:27:15,054 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:27:16,142Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:27:16,168Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:27:18,173Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:27:18,188Started LinkageSystemApplication in 20.136 seconds (JVM running for 21.604)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:27:18,188 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:27:18,323 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:27:18,604Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:27:18,604Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:27:18,622Completed initialization in 18 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:27:19,173Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:27:19,394Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352431149 started.startQuartzScheduler.java547
INFO2023-02-14 13:27:25,012【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:27:25,062排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:27:25,112nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$94e0805c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e3587259.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 13:27:48,195【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:27:49,265【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:27:51,289排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:28:03,442nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$94e0805c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$e3587259.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 13:28:04,209Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352431149 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:28:04,346【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:28:04,366Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:28:04,367Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352431149 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:28:04,369Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352431149 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:28:04,373Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352431149 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:28:04,373dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:28:04,373{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:28:04,388{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:28:04,388dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:34:50 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:34:50,692HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:34:50,719Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 5760 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:34:50,720The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:34:54,189Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:34:54,189Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:34:54,564Finished Spring Data repository scanning in 342 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:34:54,767 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:34:54,767 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:34:54,767 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,017register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:34:55,440Bean '(inner bean)#fde487b#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-14 13:34:55,449Bean '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-14 13:34:55,450Bean '(inner bean)#fde487b#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-14 13:34:55,451Bean '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-14 13:34:55,451Bean '(inner bean)#fde487b#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-14 13:34:55,453Bean '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-14 13:34:55,453Bean '(inner bean)#fde487b#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-14 13:34:55,455Bean '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-14 13:34:55,456Bean '(inner bean)#fde487b#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-14 13:34:55,457Bean '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-14 13:34:55,458Bean '(inner bean)#fde487b#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-14 13:34:55,459Bean '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-14 13:34:55,459Bean '(inner bean)#fde487b#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-14 13:34:55,461Bean '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-14 13:34:55,461Bean '(inner bean)#fde487b#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-14 13:34:55,462Bean '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-14 13:34:55,462Bean '(inner bean)#fde487b#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-14 13:34:55,463Bean '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-14 13:34:55,464Bean '(inner bean)#fde487b' 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-14 13:34:55,464Bean '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-14 13:34:55,489Bean '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-14 13:34:55,492Bean '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-14 13:34:55,519Bean '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-14 13:34:55,520Bean '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-14 13:34:55,523Bean '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-14 13:34:55,526Bean '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-14 13:34:55,528Bean '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-14 13:34:55,529Bean '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-14 13:34:55,530Bean '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-14 13:34:55,564Bean '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-14 13:34:55,568Bean '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-14 13:34:55,569Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1946338463] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:34:55,701Bean '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-14 13:34:55,812Bean '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-14 13:34:55,817Bean '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-14 13:34:55,819Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$38f7093a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:34:56,146Bean '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-14 13:34:56,153Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$43493212] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:34:56,161Bean '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-14 13:34:56,217Bean '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-14 13:34:56,474===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:34:56,477===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:34:56,482Bean '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-14 13:34:56,490Bean '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-14 13:34:56,519Bean '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-14 13:34:56,548Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ecd39ef1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:34:56,551Bean '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-14 13:34:56,989Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:34:57,003Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:34:57,004Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:34:57,004Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:34:57,325Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:34:57,325Root WebApplicationContext: initialization completed in 6535 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:34:57,498 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:34:58,511{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:34:58,511dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:34:58,511dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:35:01,661 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:35:02,895Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:35:02,895Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:35:02,910Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:35:02,910Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:35:02,926Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:35:02,926JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:35:02,926Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676352902895' - 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-14 13:35:02,926Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:35:02,926Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:35:02,926JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@12e3cf1csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:35:04,732 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:35:06,736Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:35:06,864 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:35:08,001Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:35:08,016Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:35:09,973Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:35:09,989Started LinkageSystemApplication in 20.198 seconds (JVM running for 21.596)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:35:09,989 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:35:10,117 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:35:10,489Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:35:10,489Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:35:10,492Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:35:10,977Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:35:11,174Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352902895 started.startQuartzScheduler.java547
INFO2023-02-14 13:35:20,378获取验证码,Redis key = bc8d6a874fc0dedc586d4e68f668cae5,checkCode = sngJrandomImageLoginController.java518
INFO2023-02-14 13:35:24,561redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 13:35:24,993加密操作,Aspect程序耗时:6msaroundSensitiveDataAspect.java76
INFO2023-02-14 13:35:31,005【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:35:31,006排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:35:34,825---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:6addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:35:34,828排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:35:54,765---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 14 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:35:54,766---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:6addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:35:54,767---查询过滤器,Query规则---field:create_time, rule:=, value:Tue Feb 14 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:35:54,767排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:35:56,222ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:35:56,223ClusterManager: Scanning for instance "DESKTOP-NV2FPM81676352490189"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:35:56,667排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:01,967---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 14 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:36:01,968---查询过滤器,Query规则---field:create_time, rule:=, value:Wed Feb 01 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:36:01,968排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:02,857排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:14,449---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:2addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:36:14,450排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:15,756排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:18,712---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:4addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:36:18,713排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:36:24,368---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:1addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:36:24,369排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:37:41,308ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 13:37:41,309ClusterManager: Scanning for instance "DESKTOP-NV2FPM81676352968611"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 13:39:40,559Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352902895 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:39:40,696【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:39:40,714Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:39:40,714Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352902895 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:39:40,715Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352902895 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:39:40,715Scheduler MyScheduler_$_DESKTOP-9EB22GD1676352902895 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:39:40,726dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:39:40,730{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:39:40,744{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:39:40,744dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:40:36 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:40:36,384HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:40:36,412Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17476 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:40:36,412The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:40:39,909Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:40:39,913Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:40:40,288Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:40:40,505 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:40:40,506 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:40:40,508 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:40:40,751register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,752register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,752register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,753register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:40,754register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:40:41,171Bean '(inner bean)#11bfd751#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-14 13:40:41,178Bean '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-14 13:40:41,179Bean '(inner bean)#11bfd751#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-14 13:40:41,180Bean '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-14 13:40:41,181Bean '(inner bean)#11bfd751#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-14 13:40:41,182Bean '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-14 13:40:41,182Bean '(inner bean)#11bfd751#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-14 13:40:41,183Bean '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-14 13:40:41,184Bean '(inner bean)#11bfd751#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-14 13:40:41,184Bean '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-14 13:40:41,185Bean '(inner bean)#11bfd751#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-14 13:40:41,186Bean '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-14 13:40:41,186Bean '(inner bean)#11bfd751#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-14 13:40:41,187Bean '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-14 13:40:41,188Bean '(inner bean)#11bfd751#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-14 13:40:41,189Bean '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-14 13:40:41,190Bean '(inner bean)#11bfd751#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-14 13:40:41,191Bean '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-14 13:40:41,191Bean '(inner bean)#11bfd751' 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-14 13:40:41,192Bean '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-14 13:40:41,216Bean '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-14 13:40:41,219Bean '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-14 13:40:41,248Bean '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-14 13:40:41,249Bean '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-14 13:40:41,251Bean '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-14 13:40:41,255Bean '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-14 13:40:41,258Bean '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-14 13:40:41,259Bean '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-14 13:40:41,260Bean '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-14 13:40:41,295Bean '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-14 13:40:41,298Bean '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-14 13:40:41,299Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/397284309] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:40:41,440Bean '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-14 13:40:41,554Bean '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-14 13:40:41,561Bean '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-14 13:40:41,564Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$250db27a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:40:41,905Bean '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-14 13:40:41,911Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$2f5fdb52] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:40:41,919Bean '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-14 13:40:41,979Bean '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-14 13:40:42,231===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:40:42,234===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:40:42,239Bean '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-14 13:40:42,248Bean '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-14 13:40:42,278Bean '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-14 13:40:42,306Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d8ea4831] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:40:42,310Bean '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-14 13:40:42,747Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:40:42,764Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:40:42,764Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:40:42,764Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:40:43,074Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:40:43,074Root WebApplicationContext: initialization completed in 6592 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:40:43,239 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:40:44,231{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:40:44,234dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:40:44,234dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:40:47,449 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:40:48,701Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:40:48,704Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:40:48,714Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:40:48,714Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:40:48,714Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:40:48,714JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:40:48,714Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676353248703' - 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-14 13:40:48,714Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:40:48,714Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:40:48,714JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@522fc988setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:40:50,350 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:40:52,551Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:40:52,718 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:40:53,821Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:40:53,839Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:40:55,887Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:40:55,901Started LinkageSystemApplication in 20.422 seconds (JVM running for 21.893)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:40:55,914 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:40:56,041 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:40:56,284Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:40:56,285Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:40:56,287Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:40:56,901Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:40:57,118Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353248703 started.startQuartzScheduler.java547
INFO2023-02-14 13:41:09,253【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:41:38,025【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:41:40,691【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:41:40,857排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:41:40,913nested exception is org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:27) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$82ef11d9.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$5802ab48.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'createTime' not found. Available parameters are [page, eqtNo, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 13:44:08,065Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353248703 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:44:08,207【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:44:08,224Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:44:08,225Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353248703 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:44:08,225Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353248703 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:44:08,226Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353248703 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:44:08,231dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:44:08,231{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:44:08,231{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:44:08,231dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:44:18 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:44:18,431HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:44:18,461Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 13040 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:44:18,462The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:44:22,091Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:44:22,107Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:44:22,468Finished Spring Data repository scanning in 340 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:44:22,659 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:44:22,659 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:44:22,659 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:22,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:44:23,314Bean '(inner bean)#7e3d168e#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-14 13:44:23,314Bean '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-14 13:44:23,314Bean '(inner bean)#7e3d168e#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-14 13:44:23,314Bean '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-14 13:44:23,314Bean '(inner bean)#7e3d168e#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-14 13:44:23,314Bean '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-14 13:44:23,314Bean '(inner bean)#7e3d168e#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-14 13:44:23,314Bean '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-14 13:44:23,314Bean '(inner bean)#7e3d168e#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-14 13:44:23,330Bean '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-14 13:44:23,330Bean '(inner bean)#7e3d168e#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-14 13:44:23,330Bean '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-14 13:44:23,330Bean '(inner bean)#7e3d168e#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-14 13:44:23,330Bean '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-14 13:44:23,330Bean '(inner bean)#7e3d168e#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-14 13:44:23,330Bean '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-14 13:44:23,330Bean '(inner bean)#7e3d168e#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-14 13:44:23,330Bean '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-14 13:44:23,330Bean '(inner bean)#7e3d168e' 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-14 13:44:23,330Bean '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-14 13:44:23,345Bean '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-14 13:44:23,361Bean '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-14 13:44:23,377Bean '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-14 13:44:23,377Bean '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-14 13:44:23,393Bean '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-14 13:44:23,393Bean '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-14 13:44:23,393Bean '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-14 13:44:23,393Bean '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-14 13:44:23,393Bean '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-14 13:44:23,446Bean '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-14 13:44:23,456Bean '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-14 13:44:23,458Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1350518777] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:44:23,611Bean '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-14 13:44:23,728Bean '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-14 13:44:23,728Bean '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-14 13:44:23,728Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$14105a8f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:44:24,066Bean '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-14 13:44:24,071Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$1e628367] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:44:24,080Bean '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-14 13:44:24,143Bean '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-14 13:44:24,402===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:44:24,405===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:44:24,410Bean '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-14 13:44:24,418Bean '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-14 13:44:24,445Bean '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-14 13:44:24,477Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c7ecf046] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:44:24,480Bean '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-14 13:44:25,056Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:44:25,077Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:44:25,077Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:44:25,077Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:44:25,425Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:44:25,426Root WebApplicationContext: initialization completed in 6896 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:44:25,636 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:44:26,734{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:44:26,736dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:44:26,736dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:44:30,393 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:44:31,749Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:44:31,752Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:44:31,775Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:44:31,776Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:44:31,784Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:44:31,789JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:44:31,791Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676353471751' - 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-14 13:44:31,791Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:44:31,792Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:44:31,792JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4587675csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:44:33,661 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:44:35,888Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:44:36,030 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:44:37,164Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:44:37,191Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:44:39,288Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:44:39,303Started LinkageSystemApplication in 21.82 seconds (JVM running for 23.392)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:44:39,314 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:44:39,440 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:44:40,070Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:44:40,071Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:44:40,076Completed initialization in 4 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:44:40,304Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:44:40,586Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353471751 started.startQuartzScheduler.java547
INFO2023-02-14 13:45:24,219获取验证码,Redis key = 1267e2df8cb78c81c618d4098f3d0497,checkCode = Y3SNrandomImageLoginController.java518
INFO2023-02-14 13:45:30,837redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 13:45:31,250加密操作,Aspect程序耗时:8msaroundSensitiveDataAspect.java76
INFO2023-02-14 13:45:31,951排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:45:31,953【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:47:07,118======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 13:50:28,332排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:09,497排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:23,667排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:28,089排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:33,829排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:43,178排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:47,948排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:51:49,736排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:52:06,657Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353471751 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:52:06,803【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:52:06,821Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:52:06,822Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353471751 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:52:06,822Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353471751 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:52:06,823Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353471751 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:52:06,823dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:52:06,823{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:52:06,839{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:52:06,839dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:52:12 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:52:12,573HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:52:12,589Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17172 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:52:12,589The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:52:16,056Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:52:16,061Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:52:16,459Finished Spring Data repository scanning in 373 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:52:16,664 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:52:16,664 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:52:16,666 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:52:16,968register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,972register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,972register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,972register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,973register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,973register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:16,973register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:52:17,391Bean '(inner bean)#173a5fad#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-14 13:52:17,398Bean '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-14 13:52:17,398Bean '(inner bean)#173a5fad#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-14 13:52:17,399Bean '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-14 13:52:17,400Bean '(inner bean)#173a5fad#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-14 13:52:17,401Bean '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-14 13:52:17,402Bean '(inner bean)#173a5fad#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-14 13:52:17,402Bean '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-14 13:52:17,403Bean '(inner bean)#173a5fad#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-14 13:52:17,404Bean '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-14 13:52:17,404Bean '(inner bean)#173a5fad#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-14 13:52:17,405Bean '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-14 13:52:17,406Bean '(inner bean)#173a5fad#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-14 13:52:17,407Bean '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-14 13:52:17,407Bean '(inner bean)#173a5fad#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-14 13:52:17,408Bean '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-14 13:52:17,408Bean '(inner bean)#173a5fad#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-14 13:52:17,409Bean '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-14 13:52:17,409Bean '(inner bean)#173a5fad' 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-14 13:52:17,410Bean '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-14 13:52:17,433Bean '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-14 13:52:17,435Bean '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-14 13:52:17,461Bean '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-14 13:52:17,462Bean '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-14 13:52:17,465Bean '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-14 13:52:17,468Bean '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-14 13:52:17,468Bean '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-14 13:52:17,468Bean '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-14 13:52:17,468Bean '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-14 13:52:17,500Bean '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-14 13:52:17,500Bean '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-14 13:52:17,500Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1106675375] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:52:17,640Bean '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-14 13:52:17,734Bean '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-14 13:52:17,750Bean '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-14 13:52:17,750Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$bdb22eb9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:52:18,080Bean '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-14 13:52:18,080Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$c8045791] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:52:18,096Bean '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-14 13:52:18,146Bean '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-14 13:52:18,427===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:52:18,427===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:52:18,427Bean '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-14 13:52:18,444Bean '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-14 13:52:18,462Bean '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-14 13:52:18,493Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$718ec470] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:52:18,493Bean '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-14 13:52:18,917Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:52:18,933Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:52:18,933Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:52:18,933Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:52:19,236Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:52:19,236Root WebApplicationContext: initialization completed in 6584 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:52:19,394 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:52:20,441{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:52:20,442dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:52:20,444dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:52:23,520 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:52:24,705Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:52:24,705Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:52:24,721Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:52:24,721Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:52:24,721Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:52:24,721JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:52:24,736Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676353944705' - 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-14 13:52:24,736Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:52:24,736Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:52:24,736JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@21bf1b1fsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:52:26,305 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:52:28,354Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:52:28,495 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:52:29,568Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:52:29,599Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:52:31,530Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:52:31,545Started LinkageSystemApplication in 19.917 seconds (JVM running for 21.354)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:52:31,553 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:52:31,680 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:52:32,184Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:52:32,184Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:52:32,186Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:52:32,546Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:52:32,733Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353944705 started.startQuartzScheduler.java547
INFO2023-02-14 13:52:49,897【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:52:52,605【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:52:55,438【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:52:55,579排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:53:01,637---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:01,640排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:01,684nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
INFO2023-02-14 13:53:11,299---查询过滤器,Query规则---field:update_time, rule:=, value:Sun Feb 05 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:11,300---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:11,300---查询过滤器,Query规则---field:create_time, rule:=, value:Thu Feb 02 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:11,300排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:11,318nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
INFO2023-02-14 13:53:18,652---查询过滤器,Query规则---field:update_time, rule:=, value:Sun Feb 05 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:18,653---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:18,654---查询过滤器,Query规则---field:create_time, rule:=, value:Thu Feb 02 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:18,654排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:18,671nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
INFO2023-02-14 13:53:19,543---查询过滤器,Query规则---field:update_time, rule:=, value:Sun Feb 05 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:19,543---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:19,544---查询过滤器,Query规则---field:create_time, rule:=, value:Thu Feb 02 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:19,544排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:19,563nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
INFO2023-02-14 13:53:25,181---查询过滤器,Query规则---field:update_time, rule:=, value:Sun Feb 05 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:25,181---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:25,182---查询过滤器,Query规则---field:create_time, rule:=, value:Thu Feb 02 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:25,182排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:25,200nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') - - - and date_format(open_date,'%Y-%m-%d') >= date_format(?,'%Y-%m-%d') - - - and date_format(open_date,'%Y-%m-%d') <= date_format(?,'%Y-%m-%d') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 125 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 130 common frames omitted -
INFO2023-02-14 13:53:30,144【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:53:31,452【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:53:31,502排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:53:33,895---查询过滤器,Query规则---field:eqt_no, rule:=, value:24addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:53:33,896排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:53:33,912nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$fc5bcf0e.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$8475f633.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 125 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 8, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 130 common frames omitted -
INFO2023-02-14 13:54:55,264Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353944705 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:54:55,412【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:54:55,430Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:54:55,431Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353944705 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:54:55,431Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353944705 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:54:55,432Scheduler MyScheduler_$_DESKTOP-9EB22GD1676353944705 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:54:55,441dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:54:55,446{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:54:55,460{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:54:55,460dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:55:00 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:55:00,955HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:55:00,982Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22512 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:55:00,983The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:55:04,388Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:55:04,404Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:55:04,763Finished Spring Data repository scanning in 338 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:55:04,966 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:55:04,966 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:55:04,966 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,200register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:05,609Bean '(inner bean)#5ddd84d2#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-14 13:55:05,615Bean '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-14 13:55:05,615Bean '(inner bean)#5ddd84d2#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-14 13:55:05,616Bean '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-14 13:55:05,617Bean '(inner bean)#5ddd84d2#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-14 13:55:05,618Bean '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-14 13:55:05,619Bean '(inner bean)#5ddd84d2#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-14 13:55:05,620Bean '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-14 13:55:05,620Bean '(inner bean)#5ddd84d2#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-14 13:55:05,621Bean '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-14 13:55:05,621Bean '(inner bean)#5ddd84d2#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-14 13:55:05,622Bean '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-14 13:55:05,623Bean '(inner bean)#5ddd84d2#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-14 13:55:05,624Bean '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-14 13:55:05,625Bean '(inner bean)#5ddd84d2#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-14 13:55:05,626Bean '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-14 13:55:05,627Bean '(inner bean)#5ddd84d2#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-14 13:55:05,627Bean '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-14 13:55:05,628Bean '(inner bean)#5ddd84d2' 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-14 13:55:05,628Bean '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-14 13:55:05,652Bean '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-14 13:55:05,655Bean '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-14 13:55:05,682Bean '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-14 13:55:05,683Bean '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-14 13:55:05,687Bean '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-14 13:55:05,690Bean '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-14 13:55:05,693Bean '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-14 13:55:05,694Bean '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-14 13:55:05,695Bean '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-14 13:55:05,728Bean '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-14 13:55:05,732Bean '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-14 13:55:05,733Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2009885224] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:05,861Bean '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-14 13:55:05,959Bean '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-14 13:55:05,964Bean '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-14 13:55:05,967Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d2438121] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:06,269Bean '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-14 13:55:06,269Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$dc95a9f9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:06,285Bean '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-14 13:55:06,332Bean '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-14 13:55:06,585===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:55:06,585===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:55:06,585Bean '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-14 13:55:06,601Bean '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-14 13:55:06,632Bean '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-14 13:55:06,648Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$862016d8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:06,663Bean '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-14 13:55:07,076Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:55:07,092Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:55:07,092Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:55:07,092Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:55:07,392Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:55:07,392Root WebApplicationContext: initialization completed in 6341 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:55:07,564 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:55:08,528{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:55:08,528dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:55:08,528dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:55:11,671 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:55:12,892Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:55:12,892Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:55:12,908Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:55:12,908Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:55:12,908Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:55:12,908JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:55:12,908Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676354112892' - 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-14 13:55:12,908Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:55:12,908Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:55:12,908JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@64f1e9f8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:55:14,428 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:55:16,597Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:55:16,731 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:55:17,801Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:55:17,817Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:55:18,117Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:55:18,117Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:55:18,133Completed initialization in 16 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:55:19,313Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:55:19,329Started LinkageSystemApplication in 19.286 seconds (JVM running for 20.756)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:55:19,345 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:55:19,407【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:55:19,470 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:55:20,331Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:55:20,560Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354112892 started.startQuartzScheduler.java547
INFO2023-02-14 13:55:25,074【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:55:26,826【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:55:26,977排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:55:29,226---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:55:29,226排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 13:55:29,259nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%')handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$349bd680.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$bf0b692c.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Failed to process, Error SQL: SELECT - * -FROM - tt_sulf_equip a, - tt_eqt_base b -WHERE 1=1 --- AND --- b.eqt_type = 3 --- AND a.eqt_no = b.eqt_no - - AND a.eqt_no like like concat('%',?,'%') -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:39) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:52) -
    at com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor.beforeQuery(TenantLineInnerInterceptor.java:65) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:78) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
     ... 126 common frames omitted -
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "like" "LIKE" - at line 11, column 26. - -Was expecting one of: - - "&" - "::" - ";" - "<<" - ">>" - "COLLATE" - "CONNECT" - "EMIT" - "GROUP" - "HAVING" - "START" - "[" - "^" - "|" - <EOF> - -
    at net.sf.jsqlparser.parser.CCJSqlParser.generateParseException(CCJSqlParser.java:31234) -
    at net.sf.jsqlparser.parser.CCJSqlParser.jj_consume_token(CCJSqlParser.java:31067) -
    at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:163) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:188) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:63) -
    at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:38) -
    at com.baomidou.mybatisplus.extension.parser.JsqlParserSupport.parserSingle(JsqlParserSupport.java:49) -
     ... 131 common frames omitted -
INFO2023-02-14 13:55:37,806Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354112892 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:55:37,931【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:55:37,947Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:55:37,947Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354112892 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:55:37,947Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354112892 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:55:37,947Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354112892 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:55:37,962dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:55:37,962{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:55:37,962{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:55:37,962dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:55:43 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:55:43,191HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:55:43,223Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 15916 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:55:43,223The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:55:46,624Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:55:46,629Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:55:46,998Finished Spring Data repository scanning in 347 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:55:47,192 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:55:47,192 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:55:47,193 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:55:47,440register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,441register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,442register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,442register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,442register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,443register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,443register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,443register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,444register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:55:47,822Bean '(inner bean)#41059616#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-14 13:55:47,822Bean '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-14 13:55:47,822Bean '(inner bean)#41059616#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-14 13:55:47,822Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616#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-14 13:55:47,837Bean '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-14 13:55:47,837Bean '(inner bean)#41059616' 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-14 13:55:47,837Bean '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-14 13:55:47,869Bean '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-14 13:55:47,869Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,900Bean '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-14 13:55:47,931Bean '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-14 13:55:47,947Bean '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-14 13:55:47,947Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/385041270] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:48,072Bean '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-14 13:55:48,165Bean '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-14 13:55:48,165Bean '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-14 13:55:48,165Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$312fc229] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:48,485Bean '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-14 13:55:48,485Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$3b81eb01] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:48,485Bean '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-14 13:55:48,548Bean '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-14 13:55:48,801===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:55:48,801===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:55:48,801Bean '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-14 13:55:48,816Bean '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-14 13:55:48,832Bean '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-14 13:55:48,863Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e50c57e0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:55:48,863Bean '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-14 13:55:49,291Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:55:49,307Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:55:49,307Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:55:49,307Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:55:49,607Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:55:49,607Root WebApplicationContext: initialization completed in 6322 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:55:49,763 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:55:50,753{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:55:50,755dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:55:50,756dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:55:53,841 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:55:55,063Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:55:55,063Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:55:55,078Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:55:55,078Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:55:55,078Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:55:55,078JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:55:55,078Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676354155063' - 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-14 13:55:55,094Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:55:55,094Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:55:55,094JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@42ceb67fsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:55:56,927 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:55:59,054Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:55:59,194 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:56:00,363Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:56:00,394Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:56:00,644Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:56:00,644Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:56:00,647Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:56:02,056Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:56:02,071【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:56:02,073Started LinkageSystemApplication in 19.745 seconds (JVM running for 21.19)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:56:02,083 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:56:02,219 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:56:03,071Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:56:03,375Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354155063 started.startQuartzScheduler.java547
INFO2023-02-14 13:56:04,838---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:04,844排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:06,020【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:56:07,218【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:56:07,268排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:11,024---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:11,025排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:13,552排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:16,569---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:16,570排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:22,388---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:22,389排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:23,416---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:23,417排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:27,979---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:27,979---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:27,980---查询过滤器,Query规则---field:create_time, rule:=, value:Wed Feb 01 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:27,980排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:29,196---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:29,197---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:29,198---查询过滤器,Query规则---field:create_time, rule:=, value:Wed Feb 01 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:29,198排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:32,279---查询过滤器,Query规则---field:update_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:32,280---查询过滤器,Query规则---field:eqt_no, rule:=, value:35addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:32,280---查询过滤器,Query规则---field:create_time, rule:=, value:Wed Feb 01 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:32,281排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:34,158排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:40,655---查询过滤器,Query规则---field:update_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:40,656---查询过滤器,Query规则---field:create_time, rule:=, value:Thu Feb 02 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:40,656排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:45,813---查询过滤器,Query规则---field:update_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:45,814---查询过滤器,Query规则---field:create_time, rule:=, value:Sun Feb 05 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:45,815排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:48,697---查询过滤器,Query规则---field:update_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:48,698---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:48,698排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:51,155---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:51,156---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:51,157排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:54,087---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:54,088---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:54,089排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:55,463---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:55,463---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:55,464排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:56,180---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:56,181---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:56,181排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:56,629---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:56,629---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:56,630排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:57,072---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,072---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,072排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:57,440---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,440---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,440排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:57,814---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,815---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:57,815排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:58,327---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:58,328---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:58,328排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:56:59,350---查询过滤器,Query规则---field:update_time, rule:=, value:Tue Feb 07 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:59,351---查询过滤器,Query规则---field:create_time, rule:=, value:Mon Feb 06 00:00:00 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 13:56:59,352排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:57:20,949Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354155063 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:57:21,086【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:57:21,104Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 13:57:21,105Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354155063 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 13:57:21,105Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354155063 paused.standbyQuartzScheduler.java585
INFO2023-02-14 13:57:21,107Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354155063 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 13:57:21,107dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 13:57:21,107{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 13:57:21,123{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 13:57:21,123dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 13:57:26 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 13:57:26,467HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 13:57:26,493Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 9380 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 13:57:26,493The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 13:57:29,814Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 13:57:29,814Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 13:57:30,173Finished Spring Data repository scanning in 338 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 13:57:30,360 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 13:57:30,360 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 13:57:30,360 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 13:57:30,622register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,623register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,623register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,623register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,623register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,623register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,624register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,624register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,624register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:30,624register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 13:57:31,022Bean '(inner bean)#6bf0f70a#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-14 13:57:31,028Bean '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-14 13:57:31,029Bean '(inner bean)#6bf0f70a#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-14 13:57:31,030Bean '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-14 13:57:31,031Bean '(inner bean)#6bf0f70a#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-14 13:57:31,032Bean '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-14 13:57:31,032Bean '(inner bean)#6bf0f70a#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-14 13:57:31,033Bean '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-14 13:57:31,034Bean '(inner bean)#6bf0f70a#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-14 13:57:31,035Bean '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-14 13:57:31,035Bean '(inner bean)#6bf0f70a#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-14 13:57:31,036Bean '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-14 13:57:31,037Bean '(inner bean)#6bf0f70a#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-14 13:57:31,038Bean '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-14 13:57:31,038Bean '(inner bean)#6bf0f70a#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-14 13:57:31,039Bean '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-14 13:57:31,039Bean '(inner bean)#6bf0f70a#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-14 13:57:31,040Bean '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-14 13:57:31,040Bean '(inner bean)#6bf0f70a' 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-14 13:57:31,041Bean '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-14 13:57:31,063Bean '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-14 13:57:31,066Bean '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-14 13:57:31,092Bean '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-14 13:57:31,093Bean '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-14 13:57:31,096Bean '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-14 13:57:31,100Bean '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-14 13:57:31,102Bean '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-14 13:57:31,103Bean '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-14 13:57:31,104Bean '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-14 13:57:31,140Bean '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-14 13:57:31,143Bean '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-14 13:57:31,144Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/337314074] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:57:31,275Bean '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-14 13:57:31,376Bean '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-14 13:57:31,381Bean '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-14 13:57:31,383Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$a61bf599] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:57:31,700Bean '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-14 13:57:31,705Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$b06e1e71] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:57:31,713Bean '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-14 13:57:31,769Bean '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-14 13:57:32,023===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 13:57:32,026===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 13:57:32,031Bean '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-14 13:57:32,039Bean '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-14 13:57:32,068Bean '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-14 13:57:32,097Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$59f88b50] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 13:57:32,100Bean '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-14 13:57:32,545Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 13:57:32,576Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:57:32,576Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 13:57:32,576Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 13:57:32,888Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 13:57:32,888Root WebApplicationContext: initialization completed in 6324 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 13:57:33,060 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 13:57:34,076{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 13:57:34,076dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 13:57:34,076dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 13:57:37,167 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 13:57:38,386Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 13:57:38,386Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 13:57:38,401Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 13:57:38,401Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 13:57:38,401Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 13:57:38,401JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 13:57:38,401Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676354258386' - 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-14 13:57:38,401Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 13:57:38,401Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 13:57:38,401JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6e95c023setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 13:57:40,135 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 13:57:42,245Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 13:57:42,383 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 13:57:43,478Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 13:57:43,510Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 13:57:45,404Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 13:57:45,419Started LinkageSystemApplication in 19.854 seconds (JVM running for 21.246)logStartedStartupInfoLogger.java61
INFO2023-02-14 13:57:45,419 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 13:57:45,559 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 13:57:45,623Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 13:57:45,623Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 13:57:45,627Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 13:57:46,408Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 13:57:46,648Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354258386 started.startQuartzScheduler.java547
INFO2023-02-14 13:58:03,760【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:58:18,648【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:58:20,430【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:58:20,582排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 13:59:18,164【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 13:59:20,137【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 13:59:20,186排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:00:16,830ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:00:16,831ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676354284918"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:01:23,586Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354258386 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:01:23,733【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:01:23,750Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:01:23,752Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354258386 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:01:23,752Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354258386 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:01:23,753Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354258386 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:01:23,761dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:01:23,764{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:01:23,764{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:01:23,764dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:01:29 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:01:29,720HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:01:29,754Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 4204 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:01:29,755The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:01:33,906Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:01:33,911Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:01:34,339Finished Spring Data repository scanning in 400 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:01:34,612 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:01:34,612 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:01:34,614 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:01:34,878register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,878register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,879register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,879register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,879register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,879register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,879register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,880register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,880register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:34,880register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:01:35,344Bean '(inner bean)#2328ec73#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-14 14:01:35,351Bean '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-14 14:01:35,352Bean '(inner bean)#2328ec73#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-14 14:01:35,353Bean '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-14 14:01:35,353Bean '(inner bean)#2328ec73#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-14 14:01:35,354Bean '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-14 14:01:35,356Bean '(inner bean)#2328ec73#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-14 14:01:35,357Bean '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-14 14:01:35,358Bean '(inner bean)#2328ec73#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-14 14:01:35,359Bean '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-14 14:01:35,360Bean '(inner bean)#2328ec73#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-14 14:01:35,361Bean '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-14 14:01:35,362Bean '(inner bean)#2328ec73#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-14 14:01:35,363Bean '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-14 14:01:35,363Bean '(inner bean)#2328ec73#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-14 14:01:35,364Bean '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-14 14:01:35,365Bean '(inner bean)#2328ec73#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-14 14:01:35,365Bean '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-14 14:01:35,366Bean '(inner bean)#2328ec73' 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-14 14:01:35,366Bean '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-14 14:01:35,391Bean '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-14 14:01:35,393Bean '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-14 14:01:35,424Bean '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-14 14:01:35,425Bean '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-14 14:01:35,432Bean '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-14 14:01:35,438Bean '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-14 14:01:35,442Bean '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-14 14:01:35,443Bean '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-14 14:01:35,445Bean '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-14 14:01:35,486Bean '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-14 14:01:35,490Bean '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-14 14:01:35,491Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1670196451] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:01:35,644Bean '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-14 14:01:35,789Bean '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-14 14:01:35,796Bean '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-14 14:01:35,798Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$7bce94b5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:01:36,167Bean '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-14 14:01:36,174Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$8620bd8d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:01:36,183Bean '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-14 14:01:36,245Bean '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-14 14:01:36,511===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:01:36,514===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:01:36,520Bean '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-14 14:01:36,529Bean '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-14 14:01:36,561Bean '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-14 14:01:36,593Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$2fab2a6c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:01:36,596Bean '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-14 14:01:37,109Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:01:37,128Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:01:37,128Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:01:37,128Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:01:37,464Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:01:37,464Root WebApplicationContext: initialization completed in 7630 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:01:37,646 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:01:38,736{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:01:38,740dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:01:38,740dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:01:43,206 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:01:44,522Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:01:44,526Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:01:44,540Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:01:44,541Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:01:44,545Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:01:44,549JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:01:44,550Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676354504525' - 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-14 14:01:44,551Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:01:44,551Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:01:44,551JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7a925ac4setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:01:46,190 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:01:48,883Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:01:49,033 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:01:50,373Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:01:50,406Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:01:52,753Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:01:52,770Started LinkageSystemApplication in 24.178 seconds (JVM running for 25.71)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:01:52,779 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:01:52,908 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:01:53,300Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:01:53,300Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:01:53,303Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:01:53,766Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:01:54,012Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354504525 started.startQuartzScheduler.java547
INFO2023-02-14 14:02:06,908【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:03:19,637【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:03:22,473【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:03:22,611排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:29,943【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:07:32,083【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:07:32,135排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:39,512排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:40,359排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:40,976排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:41,619排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:42,015排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:43,138排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:43,548排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:43,933排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:44,559排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:45,969排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:46,722排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:07:48,571排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:08:09,241ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:08:09,242ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676354420733"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:08:16,956排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:09:01,682排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:18,900排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:21,449排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:22,059排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:22,542排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:25,839排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:26,344排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:26,749排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:27,094排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:27,398排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:27,661排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:28,077排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:29,170排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:31,198排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:32,585排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:33,570排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:34,681排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:35,328排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:35,901排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:36,620排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:37,025排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:37,376排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:37,716排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:37,979排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:38,226排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:38,418排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:38,794排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:39,122排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:39,472排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:39,656排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:39,834排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:40,220排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:40,418排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:40,776排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:41,195排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:41,637排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:42,059排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:42,327排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:42,737排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:43,098排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:43,641排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:44,041排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:44,786排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:45,236排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:46,364排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:46,962排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:47,447排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:48,246排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:49,298排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:49,899排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:50,419排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:50,890排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:51,363排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:52,347排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:54,923排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:56,018排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:57,107排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:10:58,474排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:11:19,732Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354504525 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:11:19,859【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:11:19,877Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:11:19,877Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354504525 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:11:19,877Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354504525 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:11:19,879Scheduler MyScheduler_$_DESKTOP-9EB22GD1676354504525 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:11:19,879dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:11:19,879{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:11:19,879{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:11:19,879dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:11:25 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:11:25,812HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:11:25,833Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18956 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:11:25,834The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:11:29,247Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:11:29,252Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:11:29,613Finished Spring Data repository scanning in 340 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:11:29,801 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:11:29,801 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:11:29,801 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:11:30,035register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,050register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:11:30,437Bean '(inner bean)#48af5f38#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-14 14:11:30,443Bean '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-14 14:11:30,444Bean '(inner bean)#48af5f38#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-14 14:11:30,445Bean '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-14 14:11:30,445Bean '(inner bean)#48af5f38#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-14 14:11:30,446Bean '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-14 14:11:30,447Bean '(inner bean)#48af5f38#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-14 14:11:30,448Bean '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-14 14:11:30,448Bean '(inner bean)#48af5f38#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-14 14:11:30,449Bean '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-14 14:11:30,450Bean '(inner bean)#48af5f38#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-14 14:11:30,450Bean '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-14 14:11:30,451Bean '(inner bean)#48af5f38#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-14 14:11:30,452Bean '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-14 14:11:30,453Bean '(inner bean)#48af5f38#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-14 14:11:30,453Bean '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-14 14:11:30,454Bean '(inner bean)#48af5f38#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-14 14:11:30,454Bean '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-14 14:11:30,455Bean '(inner bean)#48af5f38' 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-14 14:11:30,456Bean '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-14 14:11:30,479Bean '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-14 14:11:30,482Bean '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-14 14:11:30,509Bean '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-14 14:11:30,510Bean '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-14 14:11:30,512Bean '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-14 14:11:30,516Bean '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-14 14:11:30,518Bean '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-14 14:11:30,519Bean '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-14 14:11:30,520Bean '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-14 14:11:30,555Bean '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-14 14:11:30,559Bean '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-14 14:11:30,560Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/345723898] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:11:30,693Bean '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-14 14:11:30,793Bean '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-14 14:11:30,798Bean '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-14 14:11:30,801Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$bb3d2812] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:11:31,118Bean '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-14 14:11:31,123Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$c58f50ea] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:11:31,132Bean '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-14 14:11:31,188Bean '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-14 14:11:31,434===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:11:31,434===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:11:31,434Bean '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-14 14:11:31,458Bean '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-14 14:11:31,486Bean '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-14 14:11:31,516Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$6f19bdc9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:11:31,519Bean '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-14 14:11:31,974Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:11:31,990Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:11:31,991Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:11:31,991Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:11:32,314Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:11:32,314Root WebApplicationContext: initialization completed in 6405 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:11:32,494 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:11:33,671{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:11:33,671dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:11:33,671dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:11:36,814 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:11:38,060Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:11:38,063Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:11:38,077Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:11:38,077Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:11:38,082Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:11:38,085JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:11:38,086Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676355098062' - 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-14 14:11:38,086Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:11:38,086Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:11:38,087JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5397d41esetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:11:39,641 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:11:41,824Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:11:41,958 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:11:43,014Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:11:43,045Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:11:44,978Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:11:44,993Started LinkageSystemApplication in 20.156 seconds (JVM running for 21.643)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:11:45,009 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:11:45,134 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:11:45,894Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:11:45,895Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:11:45,897Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:11:45,991Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:11:46,211ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:11:46,211ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676354504525"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:11:46,256Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355098062 started.startQuartzScheduler.java547
INFO2023-02-14 14:12:03,512【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:12:43,547【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:12:45,487【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:12:45,632排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:14:16,347ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:14:16,348ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676355100619"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:18:53,419排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:19:28,733排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:22:28,024【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:22:30,164【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:22:30,247排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:22:34,794Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355098062 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:22:34,948【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:22:34,966Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:22:34,967Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355098062 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:22:34,967Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355098062 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:22:34,968Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355098062 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:22:34,974dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:22:34,977{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:22:34,982{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:22:34,982dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:22:40 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:22:40,599HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:22:40,625Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 7412 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:22:40,626The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:22:44,079Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:22:44,084Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:22:44,464Finished Spring Data repository scanning in 357 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:22:44,661 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:22:44,661 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:22:44,661 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:44,896register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:22:45,286Bean '(inner bean)#129b69b2#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-14 14:22:45,286Bean '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-14 14:22:45,286Bean '(inner bean)#129b69b2#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-14 14:22:45,286Bean '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-14 14:22:45,286Bean '(inner bean)#129b69b2#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-14 14:22:45,286Bean '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-14 14:22:45,286Bean '(inner bean)#129b69b2#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-14 14:22:45,286Bean '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-14 14:22:45,286Bean '(inner bean)#129b69b2#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-14 14:22:45,302Bean '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-14 14:22:45,302Bean '(inner bean)#129b69b2#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-14 14:22:45,302Bean '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-14 14:22:45,302Bean '(inner bean)#129b69b2#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-14 14:22:45,302Bean '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-14 14:22:45,302Bean '(inner bean)#129b69b2#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-14 14:22:45,302Bean '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-14 14:22:45,302Bean '(inner bean)#129b69b2#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-14 14:22:45,302Bean '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-14 14:22:45,302Bean '(inner bean)#129b69b2' 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-14 14:22:45,302Bean '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-14 14:22:45,318Bean '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-14 14:22:45,333Bean '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-14 14:22:45,349Bean '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-14 14:22:45,349Bean '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-14 14:22:45,364Bean '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-14 14:22:45,364Bean '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-14 14:22:45,364Bean '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-14 14:22:45,364Bean '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-14 14:22:45,364Bean '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-14 14:22:45,396Bean '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-14 14:22:45,396Bean '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-14 14:22:45,396Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1155566202] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:22:45,546Bean '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-14 14:22:45,645Bean '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-14 14:22:45,651Bean '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-14 14:22:45,653Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$84968192] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:22:45,970Bean '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-14 14:22:45,975Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$8ee8aa6a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:22:45,983Bean '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-14 14:22:46,038Bean '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-14 14:22:46,284===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:22:46,288===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:22:46,293Bean '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-14 14:22:46,301Bean '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-14 14:22:46,330Bean '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-14 14:22:46,359Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$38731749] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:22:46,362Bean '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-14 14:22:46,786Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:22:46,802Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:22:46,802Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:22:46,802Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:22:47,118Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:22:47,118Root WebApplicationContext: initialization completed in 6423 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:22:47,281 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:22:48,242{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:22:48,242dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:22:48,242dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:22:51,332 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:22:52,519Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:22:52,535Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:22:52,551Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:22:52,551Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:22:52,551Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:22:52,551JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:22:52,551Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676355772535' - 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-14 14:22:52,551Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:22:52,551Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:22:52,551JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@caee26esetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:22:54,066 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:22:56,221Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:22:56,352 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:22:57,419Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:22:57,445Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:22:57,595Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:22:57,595Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:22:57,595Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:22:58,829【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:22:58,938Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:22:58,954Started LinkageSystemApplication in 19.242 seconds (JVM running for 20.678)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:22:58,954 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:22:59,079 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:22:59,939Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:23:00,110ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:23:00,110ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676355098062"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:23:00,188Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355772535 started.startQuartzScheduler.java547
INFO2023-02-14 14:23:12,513【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:23:14,427【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:23:14,583排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:23:15,374排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:24:15,161ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:24:15,162ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676355264206"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:24:44,175排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:24:55,485排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:26:37,454Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355772535 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:26:37,593【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:26:37,612Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:26:37,613Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355772535 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:26:37,614Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355772535 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:26:37,614Scheduler MyScheduler_$_DESKTOP-9EB22GD1676355772535 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:26:37,614dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:26:37,614{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:26:37,630{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:26:37,630dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:26:47 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:26:47,512HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:26:47,543Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22952 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:26:47,543The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:26:50,938Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:26:50,942Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:26:51,299Finished Spring Data repository scanning in 344 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:26:51,486 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:26:51,486 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:26:51,486 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:51,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:26:52,127Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734#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-14 14:26:52,142Bean '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-14 14:26:52,142Bean '(inner bean)#6b7c4734' 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-14 14:26:52,142Bean '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-14 14:26:52,174Bean '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-14 14:26:52,174Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,205Bean '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-14 14:26:52,252Bean '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-14 14:26:52,252Bean '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-14 14:26:52,252Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/953107607] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:26:52,377Bean '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-14 14:26:52,486Bean '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-14 14:26:52,486Bean '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-14 14:26:52,486Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$3ed03400] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:26:52,805Bean '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-14 14:26:52,805Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$49225cd8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:26:52,805Bean '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-14 14:26:52,868Bean '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-14 14:26:53,121===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:26:53,121===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:26:53,121Bean '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-14 14:26:53,136Bean '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-14 14:26:53,168Bean '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-14 14:26:53,187Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f2acc9b7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:26:53,187Bean '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-14 14:26:53,603Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:26:53,618Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:26:53,618Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:26:53,618Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:26:53,933Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:26:53,933Root WebApplicationContext: initialization completed in 6327 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:26:54,089 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:26:55,230{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:26:55,230dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:26:55,230dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:26:58,319 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:26:59,536Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:26:59,536Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:26:59,552Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:26:59,552Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:26:59,552Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:26:59,552JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:26:59,552Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676356019536' - 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-14 14:26:59,552Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:26:59,552Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:26:59,552JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@a6fc2e1setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:27:01,129 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:27:03,380Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:27:03,552 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:27:04,618Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:27:04,634Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:27:06,688Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:27:06,703Started LinkageSystemApplication in 20.07 seconds (JVM running for 21.535)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:27:06,719 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:27:06,834 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:27:07,217Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:27:07,217Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:27:07,217Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:27:07,690Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:27:07,897Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356019536 started.startQuartzScheduler.java547
INFO2023-02-14 14:27:10,891【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:27:10,912排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 14:27:10,965nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatchhandleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.selectPage(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$aa30a075.page(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:171) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$20bd8bfc.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:185) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.set(BeanWrapper.java:59) -
    at org.apache.ibatis.reflection.MetaObject.setValue(MetaObject.java:140) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.applyAutomaticMappings(DefaultResultSetHandler.java:567) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.getRowValue(DefaultResultSetHandler.java:403) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:355) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:329) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSet(DefaultResultSetHandler.java:302) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSets(DefaultResultSetHandler.java:195) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy400.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: java.lang.IllegalArgumentException: argument type mismatch -
    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.apache.ibatis.reflection.invoker.MethodInvoker.invoke(MethodInvoker.java:44) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:180) -
     ... 156 common frames omitted -
INFO2023-02-14 14:27:22,887ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:27:22,887ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676355976773"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:28:17,565Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356019536 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:28:17,699【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:28:17,718Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:28:17,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356019536 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:28:17,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356019536 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:28:17,721Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356019536 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:28:17,721dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:28:17,721{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:28:17,721{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:28:17,736dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:29:12 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:29:12,206HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:29:12,232Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 10492 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:29:12,232The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:29:15,606Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:29:15,610Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:29:15,985Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:29:16,182 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:29:16,183 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:29:16,184 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:29:16,437register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,438register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,438register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,439register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,439register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,439register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,439register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,440register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,440register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,440register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:29:16,837Bean '(inner bean)#5f3ddc86#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-14 14:29:16,843Bean '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-14 14:29:16,844Bean '(inner bean)#5f3ddc86#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-14 14:29:16,845Bean '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-14 14:29:16,846Bean '(inner bean)#5f3ddc86#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-14 14:29:16,848Bean '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-14 14:29:16,848Bean '(inner bean)#5f3ddc86#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-14 14:29:16,849Bean '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-14 14:29:16,850Bean '(inner bean)#5f3ddc86#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-14 14:29:16,851Bean '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-14 14:29:16,851Bean '(inner bean)#5f3ddc86#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-14 14:29:16,852Bean '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-14 14:29:16,853Bean '(inner bean)#5f3ddc86#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-14 14:29:16,854Bean '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-14 14:29:16,854Bean '(inner bean)#5f3ddc86#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-14 14:29:16,855Bean '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-14 14:29:16,855Bean '(inner bean)#5f3ddc86#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-14 14:29:16,856Bean '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-14 14:29:16,857Bean '(inner bean)#5f3ddc86' 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-14 14:29:16,857Bean '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-14 14:29:16,883Bean '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-14 14:29:16,887Bean '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-14 14:29:16,919Bean '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-14 14:29:16,920Bean '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-14 14:29:16,924Bean '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-14 14:29:16,929Bean '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-14 14:29:16,932Bean '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-14 14:29:16,933Bean '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-14 14:29:16,934Bean '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-14 14:29:16,970Bean '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-14 14:29:16,974Bean '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-14 14:29:16,975Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1334378672] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:29:17,106Bean '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-14 14:29:17,207Bean '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-14 14:29:17,212Bean '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-14 14:29:17,214Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$1d882a44] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:29:17,527Bean '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-14 14:29:17,543Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$27da531c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:29:17,543Bean '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-14 14:29:17,605Bean '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-14 14:29:17,855===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:29:17,855===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:29:17,855Bean '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-14 14:29:17,871Bean '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-14 14:29:17,902Bean '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-14 14:29:17,922Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d164bffb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:29:17,922Bean '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-14 14:29:18,362Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:29:18,377Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:29:18,377Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:29:18,377Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:29:18,693Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:29:18,693Root WebApplicationContext: initialization completed in 6390 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:29:18,853 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:29:19,815{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:29:19,830dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:29:19,830dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:29:22,940 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:29:24,168Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:29:24,184Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:29:24,184Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:29:24,199Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:29:24,199Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:29:24,199JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:29:24,199Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676356164184' - 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-14 14:29:24,199Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:29:24,199Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:29:24,199JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7c7d83ffsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:29:25,832 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:29:27,978Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:29:28,121 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:29:29,224Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:29:29,255Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:29:31,305Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:29:31,321Started LinkageSystemApplication in 20.013 seconds (JVM running for 21.431)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:29:31,331 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:29:31,455 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:29:32,185Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:29:32,186Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:29:32,188Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:29:32,494Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:29:32,837Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356164184 started.startQuartzScheduler.java547
INFO2023-02-14 14:29:46,931【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
WARN2023-02-14 14:29:46,937【系统 WebSocket】消息出现错误onErrorWebSocket.java132
INFO2023-02-14 14:29:46,946【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:29:48,605【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:29:48,733排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 14:29:48,782nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatchhandleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.selectPage(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6a772634.page(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:171) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$78f10b2b.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.reflection.ReflectionException: Could not set property 'createTime' of 'class org.jeecg.modules.demo.ttsulfequip.entity.TtSulfEquip' with value 'Tue Feb 07 17:57:30 CST 2023' Cause: java.lang.IllegalArgumentException: argument type mismatch -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:185) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.set(BeanWrapper.java:59) -
    at org.apache.ibatis.reflection.MetaObject.setValue(MetaObject.java:140) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.applyAutomaticMappings(DefaultResultSetHandler.java:567) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.getRowValue(DefaultResultSetHandler.java:403) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:355) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:329) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSet(DefaultResultSetHandler.java:302) -
    at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSets(DefaultResultSetHandler.java:195) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy400.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy399.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
Caused by: java.lang.IllegalArgumentException: argument type mismatch -
    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.apache.ibatis.reflection.invoker.MethodInvoker.invoke(MethodInvoker.java:44) -
    at org.apache.ibatis.reflection.wrapper.BeanWrapper.setBeanProperty(BeanWrapper.java:180) -
     ... 156 common frames omitted -
INFO2023-02-14 14:30:36,198Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356164184 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:30:36,331【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:30:36,350Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:30:36,351Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356164184 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:30:36,351Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356164184 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:30:36,352Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356164184 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:30:36,352dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:30:36,352{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:30:36,352{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:30:36,367dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:30:51 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:30:51,369HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:30:51,384Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 15368 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:30:51,384The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:30:54,922Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:30:54,928Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:30:55,300Finished Spring Data repository scanning in 354 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:30:55,506 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:30:55,506 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:30:55,508 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:30:55,760register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,761register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,762register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,762register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,762register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,762register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,763register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,763register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,763register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:55,764register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:30:56,174Bean '(inner bean)#380fdcf2#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-14 14:30:56,180Bean '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-14 14:30:56,181Bean '(inner bean)#380fdcf2#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-14 14:30:56,182Bean '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-14 14:30:56,182Bean '(inner bean)#380fdcf2#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-14 14:30:56,184Bean '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-14 14:30:56,184Bean '(inner bean)#380fdcf2#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-14 14:30:56,185Bean '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-14 14:30:56,186Bean '(inner bean)#380fdcf2#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-14 14:30:56,187Bean '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-14 14:30:56,187Bean '(inner bean)#380fdcf2#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-14 14:30:56,188Bean '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-14 14:30:56,189Bean '(inner bean)#380fdcf2#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-14 14:30:56,190Bean '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-14 14:30:56,191Bean '(inner bean)#380fdcf2#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-14 14:30:56,191Bean '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-14 14:30:56,192Bean '(inner bean)#380fdcf2#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-14 14:30:56,193Bean '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-14 14:30:56,193Bean '(inner bean)#380fdcf2' 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-14 14:30:56,194Bean '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-14 14:30:56,234Bean '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-14 14:30:56,240Bean '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-14 14:30:56,272Bean '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-14 14:30:56,273Bean '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-14 14:30:56,277Bean '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-14 14:30:56,284Bean '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-14 14:30:56,288Bean '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-14 14:30:56,290Bean '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-14 14:30:56,291Bean '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-14 14:30:56,330Bean '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-14 14:30:56,334Bean '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-14 14:30:56,335Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/164865953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:30:56,485Bean '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-14 14:30:56,588Bean '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-14 14:30:56,593Bean '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-14 14:30:56,594Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d0369f11] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:30:56,949Bean '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-14 14:30:56,955Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$da88c7e9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:30:56,964Bean '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-14 14:30:57,025Bean '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-14 14:30:57,300===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:30:57,302===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:30:57,307Bean '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-14 14:30:57,317Bean '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-14 14:30:57,345Bean '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-14 14:30:57,376Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$841334c8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:30:57,378Bean '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-14 14:30:57,816Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:30:57,833Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:30:57,833Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:30:57,833Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:30:58,179Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:30:58,179Root WebApplicationContext: initialization completed in 6716 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:30:58,367 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:30:59,335{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:30:59,342dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:30:59,342dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:31:02,638 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:31:03,888Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:31:03,891Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:31:03,906Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:31:03,907Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:31:03,912Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:31:03,915JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:31:03,916Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676356263890' - 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-14 14:31:03,917Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:31:03,917Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:31:03,918JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4d65fbadsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:31:05,644 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:31:07,854Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:31:08,006 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:31:09,227Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:31:09,257Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:31:11,330Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:31:11,345Started LinkageSystemApplication in 20.897 seconds (JVM running for 22.376)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:31:11,355 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:31:11,480 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:31:11,790Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:31:11,790Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:31:11,792Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:31:12,342Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:31:12,581Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356263890 started.startQuartzScheduler.java547
INFO2023-02-14 14:31:20,543【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:31:30,791【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:31:32,711【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:31:32,884排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:31:43,104拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:31:43,139---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:31:43,143排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:31:46,073 connect databaseName : ttxh-bootreadAllTableNamesDbReadTableUtil.java67
INFO2023-02-14 14:31:57,523 connect databaseName : ttxh-bootreadAllTableNamesDbReadTableUtil.java67
INFO2023-02-14 14:32:02,580 connect databaseName : ttxh-bootreadOriginalTableColumnDbReadTableUtil.java436
INFO2023-02-14 14:32:03,088拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:32:03,104---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:32:03,104排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:34:22,704拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:34:22,725---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:34:22,727排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:34:42,476 db update sql : [alter table tt_virsual_sort_equip MODIFY COLUMN company_id int(3) NULL COMMENT '公司id, 1表示电气元器件,2表示轨道扣件' ;, alter table tt_virsual_sort_equip MODIFY COLUMN type_id int(3) NULL COMMENT '产品类型id,1表示底座,2表示胶塞' ;]bDbTableProcess.java322
INFO2023-02-14 14:34:43,469拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:34:43,488---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:34:43,491排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:35:40,146load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=-3960584350703441810, entityPackage=ttvirsualsortequip, entityName=TtVirsualSortEquip, primaryKeyField=id, columns=[{"fieldDbName":"ps_name","fieldName":"psName","filedComment":"工位","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"test_item","fieldName":"testItem","filedComment":"检测项","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"upper_limit","fieldName":"upperLimit","filedComment":"公差上限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"lower_limit","fieldName":"lowerLimit","filedComment":"公差下限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"total_count","fieldName":"totalCount","filedComment":"总数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_count","fieldName":"ngCount","filedComment":"NG数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_rate","fieldName":"ngRate","filedComment":"NG率","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"type_id","fieldName":"typeId","filedComment":"产品类型id,1表示底座,2表示胶塞","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"company_id","fieldName":"companyId","filedComment":"公司id, 1表示电气元器件,2表示轨道扣件","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_by","fieldName":"createBy","filedComment":"记录的创建人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_time","fieldName":"updateTime","filedComment":"记录的修改时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"13","isKey":"N","isShow":"N","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}], tableVo={"tableName":"tt_virsual_sort_equip","ftlDescription":"tt_virsual_sort_equip","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttvirsualsortequip","entityName":"TtVirsualSortEquip","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ps_name","fieldName":"psName","filedComment":"工位","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"test_item","fieldName":"testItem","filedComment":"检测项","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"upper_limit","fieldName":"upperLimit","filedComment":"公差上限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"lower_limit","fieldName":"lowerLimit","filedComment":"公差下限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"total_count","fieldName":"totalCount","filedComment":"总数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_count","fieldName":"ngCount","filedComment":"NG数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_rate","fieldName":"ngRate","filedComment":"NG率","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"type_id","fieldName":"typeId","filedComment":"产品类型id,1表示底座,2表示胶塞","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"company_id","fieldName":"companyId","filedComment":"公司id, 1表示电气元器件,2表示轨道扣件","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录的创建时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"11","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_by","fieldName":"createBy","filedComment":"记录的创建人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_time","fieldName":"updateTime","filedComment":"记录的修改时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"13","isKey":"N","isShow":"N","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_by","fieldName":"updateBy","filedComment":"记录的修改人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}], bussiPackage=org.jeecg.modules.demo, tableName=tt_virsual_sort_equip}aCodeGenerateOne.java120
INFO2023-02-14 14:35:40,146 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:D:\leiaBaseCodeGenerate.java55
INFO2023-02-14 14:35:40,510[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\controller\TtVirsualSortEquipController.javaaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,575[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\entity\TtVirsualSortEquip.javaaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,621[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\mapper\TtVirsualSortEquipMapper.javaaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,627[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\mapper\xml\TtVirsualSortEquipMapper.xmlaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,633[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\service\ITtVirsualSortEquipService.javaaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,638[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\service\impl\TtVirsualSortEquipServiceImpl.javaaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,668[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\vue\TtVirsualSortEquipList.vueaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,694[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\vue\TtVirsualSortEquip_menu_insert.sqlaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,719[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\vue\modules\TtVirsualSortEquipForm.vueaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,750[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\vue\modules\TtVirsualSortEquipModal.vueaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,759[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequip\vue\modules\TtVirsualSortEquipModal.Style#Drawer.vueaBaseCodeGenerate.java129
INFO2023-02-14 14:35:40,779 ----- jeecg-boot ---- generate code success =======> 表名:tt_virsual_sort_equip generateCodeFileCodeGenerateOne.java149
INFO2023-02-14 14:35:58,141ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:35:58,141ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676356207637"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:36:22,486【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:36:24,745【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:36:24,805拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:36:24,834---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:36:24,835排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:38:10,907Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356263890 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:38:11,046【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:38:11,064Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:38:11,065Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356263890 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:38:11,066Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356263890 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:38:11,066Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356263890 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:38:11,072dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:38:11,075{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:38:11,077{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:38:11,077dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:38:19 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:38:20,030HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:38:20,058Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 23236 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:38:20,059The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:38:24,856Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:38:24,860Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:38:25,417Finished Spring Data repository scanning in 531 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:38:25,635 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:38:25,636 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:38:25,637 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:38:25,957register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,958register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,958register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,959register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,959register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,959register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,959register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,959register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,960register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:25,960register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:38:26,387Bean '(inner bean)#5855b0ed#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-14 14:38:26,393Bean '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-14 14:38:26,394Bean '(inner bean)#5855b0ed#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-14 14:38:26,394Bean '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-14 14:38:26,395Bean '(inner bean)#5855b0ed#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-14 14:38:26,396Bean '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-14 14:38:26,397Bean '(inner bean)#5855b0ed#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-14 14:38:26,398Bean '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-14 14:38:26,398Bean '(inner bean)#5855b0ed#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-14 14:38:26,399Bean '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-14 14:38:26,400Bean '(inner bean)#5855b0ed#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-14 14:38:26,400Bean '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-14 14:38:26,401Bean '(inner bean)#5855b0ed#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-14 14:38:26,409Bean '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-14 14:38:26,410Bean '(inner bean)#5855b0ed#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-14 14:38:26,411Bean '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-14 14:38:26,411Bean '(inner bean)#5855b0ed#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-14 14:38:26,412Bean '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-14 14:38:26,412Bean '(inner bean)#5855b0ed' 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-14 14:38:26,413Bean '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-14 14:38:26,436Bean '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-14 14:38:26,439Bean '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-14 14:38:26,465Bean '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-14 14:38:26,466Bean '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-14 14:38:26,469Bean '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-14 14:38:26,473Bean '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-14 14:38:26,476Bean '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-14 14:38:26,477Bean '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-14 14:38:26,478Bean '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-14 14:38:26,512Bean '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-14 14:38:26,516Bean '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-14 14:38:26,517Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/293583290] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:38:26,657Bean '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-14 14:38:26,767Bean '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-14 14:38:26,773Bean '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-14 14:38:26,775Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$2ab83987] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:38:27,115Bean '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-14 14:38:27,120Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$350a625f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:38:27,129Bean '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-14 14:38:27,189Bean '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-14 14:38:27,453===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:38:27,464===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:38:27,470Bean '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-14 14:38:27,478Bean '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-14 14:38:27,506Bean '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-14 14:38:27,536Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$de94cf3e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:38:27,538Bean '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-14 14:38:27,968Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:38:27,984Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:38:27,985Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:38:27,985Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:38:28,303Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:38:28,303Root WebApplicationContext: initialization completed in 8176 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:38:28,470 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:38:29,485{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:38:29,487dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:38:29,487dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:38:33,069 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:38:34,471Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:38:34,475Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:38:34,488Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:38:34,489Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:38:34,494Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:38:34,497JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:38:34,498Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676356714474' - 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-14 14:38:34,499Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:38:34,499Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:38:34,499JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6a2d0a19setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:38:36,185 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:38:38,538Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:38:38,695 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:38:39,832Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:38:39,866Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:38:42,317Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:38:42,337Started LinkageSystemApplication in 23.242 seconds (JVM running for 24.695)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:38:42,348 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:38:42,494 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:38:42,934Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:38:42,934Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:38:42,940Completed initialization in 5 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:38:43,322Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:38:43,630ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:38:43,631ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676356581329"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:38:43,660Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356714474 started.startQuartzScheduler.java547
INFO2023-02-14 14:38:54,568【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:39:10,703【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:39:13,756【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:39:13,856拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 14:39:13,938---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:39:13,940排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:39:17,013======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 14:41:11,746======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 14:41:29,276排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
WARN2023-02-14 14:41:35,604SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@79d298cd] Transaction not enabledexecuteBatchSqlHelper.java179
INFO2023-02-14 14:41:35,648======角色授权成功=====耗时:49毫秒saveRolePermissionSysPermissionController.java562
INFO2023-02-14 14:41:36,558【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:41:37,822【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:41:37,874排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:41:41,727排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:41:54,668---查询过滤器,Query规则---field:update_time, rule:>=, value:Wed Feb 01 14:41:41 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:41:54,668---查询过滤器,Query规则---field:update_time, rule:<=, value:Thu Feb 09 14:41:41 CST 2023addEasyQueryQueryGenerator.java648
INFO2023-02-14 14:41:54,668排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:41:55,612排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:44:35,187【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:44:37,569【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:44:37,643排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:44:48,576排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:45:53,809【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:45:56,140【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:45:56,193排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:31,972排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:32,546排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:32,967排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:33,167排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:33,508排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:33,841排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:34,032排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:34,216排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:34,397排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:34,592排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:34,786排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:35,365排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:35,630排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:35,998排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:46:36,466排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:48:45,981排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:48:47,280【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:48:49,514【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:48:49,561排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:48:56,461Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356714474 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:48:56,593【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:48:56,611Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:48:56,611Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356714474 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:48:56,612Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356714474 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:48:56,612Scheduler MyScheduler_$_DESKTOP-9EB22GD1676356714474 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:48:56,618dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:48:56,621{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:48:56,628{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:48:56,628dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:49:02 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:49:02,430HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:49:02,454Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 12624 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:49:02,455The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:49:05,830Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:49:05,834Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:49:06,202Finished Spring Data repository scanning in 350 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:49:06,389 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:49:06,389 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:49:06,389 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:06,655register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,045Bean '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-14 14:49:07,045Bean '(inner bean)#3bf5911d#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-14 14:49:07,061Bean '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-14 14:49:07,061Bean '(inner bean)#3bf5911d#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-14 14:49:07,061Bean '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-14 14:49:07,061Bean '(inner bean)#3bf5911d#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-14 14:49:07,061Bean '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-14 14:49:07,061Bean '(inner bean)#3bf5911d' 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-14 14:49:07,061Bean '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-14 14:49:07,076Bean '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-14 14:49:07,076Bean '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-14 14:49:07,108Bean '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-14 14:49:07,108Bean '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-14 14:49:07,108Bean '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-14 14:49:07,108Bean '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-14 14:49:07,123Bean '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-14 14:49:07,123Bean '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-14 14:49:07,123Bean '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-14 14:49:07,155Bean '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-14 14:49:07,155Bean '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-14 14:49:07,155Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1393615953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:49:07,295Bean '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-14 14:49:07,395Bean '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-14 14:49:07,395Bean '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-14 14:49:07,395Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$4d35a3ab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:49:07,713Bean '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-14 14:49:07,713Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$5787cc83] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:49:07,729Bean '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-14 14:49:07,776Bean '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-14 14:49:08,030===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:49:08,045===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:49:08,045Bean '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-14 14:49:08,045Bean '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-14 14:49:08,077Bean '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-14 14:49:08,110Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$1123962] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:49:08,110Bean '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-14 14:49:08,536Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:49:08,536Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:49:08,551Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:49:08,551Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:49:08,842Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:49:08,857Root WebApplicationContext: initialization completed in 6348 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:49:09,013 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:49:09,958{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:49:09,958dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:49:09,958dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:49:13,151 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:49:14,367Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:49:14,367Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:49:14,383Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:49:14,383Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:49:14,383Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:49:14,383JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:49:14,383Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676357354367' - 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-14 14:49:14,383Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:49:14,383Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:49:14,383JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5a35efacsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:49:16,235 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:49:18,235Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:49:18,360 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:49:19,467Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:49:19,498Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:49:19,595Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:49:19,595Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:49:19,611Completed initialization in 16 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:49:20,886【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:49:21,043Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:49:21,046Started LinkageSystemApplication in 19.54 seconds (JVM running for 20.956)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:49:21,062 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:49:21,187 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:49:22,055Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:49:22,258Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357354367 started.startQuartzScheduler.java547
INFO2023-02-14 14:49:22,914【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:49:24,653【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:49:24,774排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:49:45,194排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:49:47,218【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:49:49,185【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:49:49,231排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:49:52,272ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:49:52,273ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676356723896"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:51:45,224【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:51:46,041【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:51:46,087排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:51:47,501排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:51:48,978排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:51:53,382排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:54:52,609ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 14:54:52,609ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676357519785"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 14:56:36,712【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:56:39,401【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:56:39,476排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:57:27,915Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357354367 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:57:28,057【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:57:28,074Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 14:57:28,075Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357354367 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 14:57:28,075Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357354367 paused.standbyQuartzScheduler.java585
INFO2023-02-14 14:57:28,076Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357354367 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 14:57:28,076dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 14:57:28,076{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 14:57:28,092{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 14:57:28,092dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 14:57:36 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 14:57:36,131HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 14:57:36,162Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20784 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 14:57:36,162The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 14:57:39,538Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 14:57:39,538Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 14:57:39,924Finished Spring Data repository scanning in 360 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 14:57:40,126 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 14:57:40,126 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 14:57:40,126 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,376register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 14:57:40,815Bean '(inner bean)#48d5ca17#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-14 14:57:40,822Bean '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-14 14:57:40,823Bean '(inner bean)#48d5ca17#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-14 14:57:40,824Bean '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-14 14:57:40,824Bean '(inner bean)#48d5ca17#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-14 14:57:40,825Bean '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-14 14:57:40,826Bean '(inner bean)#48d5ca17#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-14 14:57:40,827Bean '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-14 14:57:40,828Bean '(inner bean)#48d5ca17#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-14 14:57:40,829Bean '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-14 14:57:40,830Bean '(inner bean)#48d5ca17#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-14 14:57:40,831Bean '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-14 14:57:40,832Bean '(inner bean)#48d5ca17#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-14 14:57:40,833Bean '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-14 14:57:40,834Bean '(inner bean)#48d5ca17#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-14 14:57:40,835Bean '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-14 14:57:40,835Bean '(inner bean)#48d5ca17#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-14 14:57:40,836Bean '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-14 14:57:40,837Bean '(inner bean)#48d5ca17' 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-14 14:57:40,837Bean '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-14 14:57:40,861Bean '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-14 14:57:40,865Bean '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-14 14:57:40,891Bean '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-14 14:57:40,894Bean '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-14 14:57:40,899Bean '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-14 14:57:40,903Bean '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-14 14:57:40,905Bean '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-14 14:57:40,906Bean '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-14 14:57:40,907Bean '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-14 14:57:40,943Bean '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-14 14:57:40,948Bean '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-14 14:57:40,949Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/920102538] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:57:41,084Bean '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-14 14:57:41,188Bean '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-14 14:57:41,195Bean '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-14 14:57:41,198Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6ff6d433] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:57:41,527Bean '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-14 14:57:41,532Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$7a48fd0b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:57:41,540Bean '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-14 14:57:41,600Bean '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-14 14:57:41,871===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 14:57:41,875===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 14:57:41,881Bean '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-14 14:57:41,890Bean '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-14 14:57:41,923Bean '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-14 14:57:41,954Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$23d369ea] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 14:57:41,957Bean '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-14 14:57:42,421Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 14:57:42,438Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:57:42,438Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 14:57:42,439Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 14:57:42,760Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 14:57:42,760Root WebApplicationContext: initialization completed in 6536 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 14:57:42,928 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 14:57:43,911{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 14:57:43,911dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 14:57:43,911dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 14:57:47,273 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 14:57:48,597Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 14:57:48,600Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 14:57:48,613Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 14:57:48,614Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 14:57:48,618Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 14:57:48,621JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 14:57:48,622Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676357868599' - 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-14 14:57:48,622Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 14:57:48,623Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 14:57:48,623JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5aa026e9setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 14:57:50,418 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 14:57:52,770Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 14:57:52,900 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 14:57:53,985Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 14:57:54,014Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 14:57:56,111Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 14:57:56,128Started LinkageSystemApplication in 20.937 seconds (JVM running for 22.403)logStartedStartupInfoLogger.java61
INFO2023-02-14 14:57:56,136 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 14:57:56,261 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 14:57:56,697Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 14:57:56,697Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 14:57:56,700Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 14:57:57,129Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 14:57:57,346Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357868599 started.startQuartzScheduler.java547
INFO2023-02-14 14:58:11,520【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:58:13,362【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 14:58:16,406【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 14:58:16,542排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:58:53,602排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:58:56,918排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:58:57,694排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:58:57,893排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:01,767排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:02,319排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:09,302排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:09,712排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:09,881排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:14,523排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:14,829排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:15,006排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:15,179排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:15,343排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:15,524排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:15,676排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:17,134排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:19,334排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:20,596排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:20,986排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:21,403排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:21,827排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:22,212排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:25,874排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:28,112排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:29,933排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:45,209排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:45,825排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:46,194排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:46,408排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:46,639排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:46,878排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:47,171排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:47,487排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:48,033排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:48,233排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:50,829排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:53,827排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:54,673排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:55,074排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:55,490排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:55,995排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:58,037排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:58,761排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:59,107排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 14:59:59,467排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:00,004排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:00,489排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:08,800排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:09,009排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:09,219排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:09,513排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:09,681排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:09,897排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:22,377排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:24,033排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:25,119排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:25,581排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:25,776排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:25,938排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:26,099排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:26,251排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:26,438排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:26,600排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:26,767排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:00:33,973排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:01:21,294Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357868599 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:01:21,429【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:01:21,445Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:01:21,445Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357868599 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:01:21,445Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357868599 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:01:21,445Scheduler MyScheduler_$_DESKTOP-9EB22GD1676357868599 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:01:21,461dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:01:21,461{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:01:21,461{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:01:21,461dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:01:27 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:01:27,322HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:01:27,350Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 15540 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:01:27,351The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:01:30,795Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:01:30,800Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:01:31,176Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:01:31,371 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:01:31,371 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:01:31,373 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:01:31,629register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,630register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,630register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,630register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,631register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,631register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,631register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,632register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,632register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:31,632register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:01:32,027Bean '(inner bean)#15371de2#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-14 15:01:32,032Bean '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-14 15:01:32,033Bean '(inner bean)#15371de2#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-14 15:01:32,034Bean '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-14 15:01:32,035Bean '(inner bean)#15371de2#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-14 15:01:32,036Bean '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-14 15:01:32,037Bean '(inner bean)#15371de2#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-14 15:01:32,038Bean '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-14 15:01:32,038Bean '(inner bean)#15371de2#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-14 15:01:32,039Bean '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-14 15:01:32,040Bean '(inner bean)#15371de2#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-14 15:01:32,040Bean '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-14 15:01:32,041Bean '(inner bean)#15371de2#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-14 15:01:32,042Bean '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-14 15:01:32,043Bean '(inner bean)#15371de2#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-14 15:01:32,043Bean '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-14 15:01:32,044Bean '(inner bean)#15371de2#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-14 15:01:32,044Bean '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-14 15:01:32,045Bean '(inner bean)#15371de2' 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-14 15:01:32,046Bean '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-14 15:01:32,068Bean '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-14 15:01:32,071Bean '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-14 15:01:32,097Bean '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-14 15:01:32,099Bean '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-14 15:01:32,103Bean '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-14 15:01:32,107Bean '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-14 15:01:32,109Bean '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-14 15:01:32,110Bean '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-14 15:01:32,111Bean '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-14 15:01:32,147Bean '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-14 15:01:32,151Bean '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-14 15:01:32,152Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1775746074] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:01:32,285Bean '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-14 15:01:32,384Bean '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-14 15:01:32,389Bean '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-14 15:01:32,391Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$424ce67a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:01:32,700Bean '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-14 15:01:32,700Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$4c9f0f52] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:01:32,716Bean '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-14 15:01:32,762Bean '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-14 15:01:33,016===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:01:33,016===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:01:33,031Bean '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-14 15:01:33,031Bean '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-14 15:01:33,062Bean '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-14 15:01:33,094Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f6297c31] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:01:33,094Bean '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-14 15:01:33,549Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:01:33,565Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:01:33,565Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:01:33,565Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:01:33,900Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:01:33,900Root WebApplicationContext: initialization completed in 6482 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:01:34,084 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:01:35,055{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:01:35,055dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:01:35,055dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:01:38,248 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:01:39,560Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:01:39,563Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:01:39,575Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:01:39,576Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:01:39,581Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:01:39,584JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:01:39,584Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358099562' - 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-14 15:01:39,584Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:01:39,584Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:01:39,584JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4c5d1649setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:01:41,289 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:01:43,715Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:01:43,871 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:01:45,040Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:01:45,071Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:01:47,240Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:01:47,257Started LinkageSystemApplication in 20.886 seconds (JVM running for 22.377)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:01:47,266 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:01:47,397 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:01:47,661Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:01:47,661Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:01:47,661Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:01:48,249Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:01:48,488Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358099562 started.startQuartzScheduler.java547
INFO2023-02-14 15:02:02,277【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:02:02,303排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:02:02,384{conn-10004, pstmt-20016} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$73a2bf3c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4b36598.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:02:02,452 -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause'handleExceptionJeecgBootExceptionHandler.java79
org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY score DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$73a2bf3c.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$4b36598.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'score' in 'order clause' -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:02:28,570Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358099562 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:02:28,702【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:02:28,717Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:02:28,718Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358099562 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:02:28,718Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358099562 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:02:28,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358099562 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:02:28,719dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:02:28,719{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:02:28,719{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:02:28,719dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:02:34 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:02:34,449HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:02:34,480Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 14660 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:02:34,480The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:02:37,990Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:02:38,006Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:02:38,381Finished Spring Data repository scanning in 350 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:02:38,568 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:02:38,568 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:02:38,584 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:38,834register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,240Bean '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-14 15:02:39,240Bean '(inner bean)#c82d925#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-14 15:02:39,256Bean '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-14 15:02:39,256Bean '(inner bean)#c82d925#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-14 15:02:39,256Bean '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-14 15:02:39,256Bean '(inner bean)#c82d925#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-14 15:02:39,256Bean '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-14 15:02:39,256Bean '(inner bean)#c82d925' 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-14 15:02:39,256Bean '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-14 15:02:39,271Bean '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-14 15:02:39,271Bean '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-14 15:02:39,303Bean '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-14 15:02:39,303Bean '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-14 15:02:39,303Bean '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-14 15:02:39,303Bean '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-14 15:02:39,318Bean '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-14 15:02:39,318Bean '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-14 15:02:39,318Bean '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-14 15:02:39,349Bean '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-14 15:02:39,349Bean '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-14 15:02:39,349Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/788316339] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:02:39,474Bean '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-14 15:02:39,587Bean '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-14 15:02:39,587Bean '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-14 15:02:39,587Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$dc0d8d5a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:02:39,922Bean '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-14 15:02:39,938Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e65fb632] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:02:39,938Bean '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-14 15:02:40,003Bean '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-14 15:02:40,248===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:02:40,248===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:02:40,264Bean '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-14 15:02:40,264Bean '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-14 15:02:40,295Bean '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-14 15:02:40,330Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$8fea2311] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:02:40,332Bean '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-14 15:02:40,778Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:02:40,795Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:02:40,796Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:02:40,796Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:02:41,116Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:02:41,117Root WebApplicationContext: initialization completed in 6574 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:02:41,288 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:02:42,292{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:02:42,294dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:02:42,294dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:02:45,512 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:02:46,787Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:02:46,790Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:02:46,804Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:02:46,805Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:02:46,810Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:02:46,813JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:02:46,814Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358166789' - 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-14 15:02:46,814Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:02:46,815Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:02:46,815JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@16c3388esetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:02:48,512 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:02:50,703Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:02:50,842 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:02:51,997Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:02:52,029Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:02:54,059Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:02:54,075Started LinkageSystemApplication in 20.488 seconds (JVM running for 21.881)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:02:54,075 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:02:54,203 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:02:54,665Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:02:54,665Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:02:54,665Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:02:55,066Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:02:55,253Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358166789 started.startQuartzScheduler.java547
INFO2023-02-14 15:03:11,403【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:03:19,750【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:03:21,566【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:03:21,749排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:03:21,839{conn-10004, pstmt-20018} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:21,900 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:03:25,645【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:03:26,432【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:03:26,504排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:03:26,558{conn-10004, pstmt-20022} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:26,562 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:03:31,374排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:03:37,145排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:03:37,178{conn-10004, pstmt-20025} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:03:37,181 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -; Column 'create_time' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$6bdc0589.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$476067d4.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'create_time' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    at sun.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:04:28,845Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358166789 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:04:28,970【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:04:28,985Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:04:28,985Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358166789 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:04:28,985Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358166789 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:04:28,985Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358166789 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:04:29,001dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:04:29,001{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:04:29,001{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:04:29,001dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:04:34 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:04:34,635HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:04:34,666Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18176 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:04:34,666The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:04:38,147Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:04:38,147Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:04:38,545Finished Spring Data repository scanning in 362 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:04:38,748 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:04:38,748 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:04:38,748 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:04:39,008register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,009register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,009register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,010register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,011register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:04:39,401Bean '(inner bean)#340c57e0#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-14 15:04:39,401Bean '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-14 15:04:39,401Bean '(inner bean)#340c57e0#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-14 15:04:39,401Bean '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-14 15:04:39,401Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0#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-14 15:04:39,417Bean '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-14 15:04:39,417Bean '(inner bean)#340c57e0' 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-14 15:04:39,417Bean '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-14 15:04:39,448Bean '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-14 15:04:39,448Bean '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-14 15:04:39,464Bean '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-14 15:04:39,480Bean '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-14 15:04:39,480Bean '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-14 15:04:39,480Bean '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-14 15:04:39,480Bean '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-14 15:04:39,480Bean '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-14 15:04:39,480Bean '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-14 15:04:39,511Bean '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-14 15:04:39,526Bean '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-14 15:04:39,526Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2012231958] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:04:39,661Bean '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-14 15:04:39,746Bean '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-14 15:04:39,762Bean '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-14 15:04:39,762Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$4db7e3fb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:04:40,092Bean '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-14 15:04:40,108Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$580a0cd3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:04:40,108Bean '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-14 15:04:40,170Bean '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-14 15:04:40,441===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:04:40,444===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:04:40,449Bean '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-14 15:04:40,458Bean '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-14 15:04:40,488Bean '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-14 15:04:40,518Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$19479b2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:04:40,521Bean '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-14 15:04:40,971Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:04:40,987Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:04:40,988Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:04:40,988Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:04:41,317Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:04:41,318Root WebApplicationContext: initialization completed in 6590 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:04:41,486 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:04:42,578{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:04:42,593dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:04:42,593dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:04:45,714 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:04:46,967Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:04:46,970Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:04:46,983Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:04:46,984Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:04:46,989Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:04:46,992JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:04:46,993Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358286969' - 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-14 15:04:46,993Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:04:46,993Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:04:46,994JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@758e6acdsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:04:48,576 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:04:50,780Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:04:50,910 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:04:51,964Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:04:51,980Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:04:53,980Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:04:53,995Started LinkageSystemApplication in 20.25 seconds (JVM running for 21.671)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:04:54,011 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:04:54,124 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:04:54,361Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:04:54,361Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:04:54,361Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:04:55,008Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:04:55,226Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358286969 started.startQuartzScheduler.java547
INFO2023-02-14 15:05:12,505【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:05:42,990【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:05:43,934加密操作,Aspect程序耗时:4msaroundSensitiveDataAspect.java76
INFO2023-02-14 15:05:44,852【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:05:44,987排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:05:45,069{conn-10004, pstmt-20019} execute error. SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ?statementLogErrorSlf4jLogFilter.java149
java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e7e55e6d.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$65da9ff9.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:05:45,128 -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -; Column 'id' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguoushandleDataIntegrityViolationExceptionJeecgBootExceptionHandler.java125
org.springframework.dao.DataIntegrityViolationException: -### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -### The error may exist in file [D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-demo\target\classes\org\jeecg\modules\demo\ttsulfequip\mapper\xml\TtSulfEquipMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT * FROM tt_sulf_equip a, tt_eqt_base b WHERE 1 = 1 ORDER BY id DESC LIMIT ? -### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -; Column 'id' in order clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) -
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$e7e55e6d.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$65da9ff9.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'id' in order clause is ambiguous -
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) -
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) -
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.wall.WallFilter.preparedStatement_execute(WallFilter.java:626) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) -
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) -
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) -
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) -
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) -
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy402.query(Unknown Source) -
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) -
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) -
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) -
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) -
    at 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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:05:59,841Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358286969 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:05:59,964【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:05:59,981Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:05:59,982Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358286969 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:05:59,982Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358286969 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:05:59,983Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358286969 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:05:59,983dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:05:59,983{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:05:59,999{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:05:59,999dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:06:05 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:06:05,329HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:06:05,345Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22804 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:06:05,345The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:06:08,765Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:06:08,765Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:06:09,140Finished Spring Data repository scanning in 348 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:06:09,343 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:06:09,343 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:06:09,343 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:09,593register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:06:10,002Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5#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-14 15:06:10,008Bean '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-14 15:06:10,008Bean '(inner bean)#1e5b33e5' 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-14 15:06:10,008Bean '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-14 15:06:10,039Bean '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-14 15:06:10,039Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,071Bean '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-14 15:06:10,118Bean '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-14 15:06:10,118Bean '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-14 15:06:10,118Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/908845261] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:06:10,242Bean '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-14 15:06:10,354Bean '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-14 15:06:10,370Bean '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-14 15:06:10,370Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$87f5a3af] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:06:10,692Bean '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-14 15:06:10,698Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$9247cc87] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:06:10,706Bean '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-14 15:06:10,765Bean '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-14 15:06:11,035===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:06:11,038===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:06:11,045Bean '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-14 15:06:11,053Bean '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-14 15:06:11,084Bean '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-14 15:06:11,113Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$3bd23966] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:06:11,116Bean '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-14 15:06:11,552Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:06:11,568Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:06:11,568Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:06:11,568Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:06:11,882Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:06:11,883Root WebApplicationContext: initialization completed in 6453 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:06:12,050 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:06:13,029{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:06:13,029dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:06:13,029dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:06:16,226 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:06:17,508Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:06:17,523Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:06:17,523Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:06:17,539Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:06:17,539Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:06:17,539JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:06:17,539Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358377523' - 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-14 15:06:17,539Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:06:17,539Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:06:17,539JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@56114349setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:06:19,232 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:06:21,510Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:06:21,654 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:06:22,773Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:06:22,788Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:06:24,938Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:06:24,954Started LinkageSystemApplication in 20.51 seconds (JVM running for 21.908)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:06:24,954 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:06:25,079 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:06:25,592Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:06:25,593Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:06:25,597Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:06:25,951Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:06:26,242Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358377523 started.startQuartzScheduler.java547
INFO2023-02-14 15:06:29,149【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:06:29,172排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:06:51,395org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-07]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-07'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-07]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-07]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-07'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-07]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
ERROR2023-02-14 15:06:56,511org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 15:09:18,078Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358377523 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:09:18,224【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:09:18,244Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:09:18,244Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358377523 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:09:18,245Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358377523 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:09:18,245Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358377523 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:09:18,254dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:09:18,254{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:09:18,270{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:09:18,270dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:09:26 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:09:26,396HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:09:26,424Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20456 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:09:26,424The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:09:29,901Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:09:29,901Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:09:30,276Finished Spring Data repository scanning in 344 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:09:30,467 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:09:30,468 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:09:30,469 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:09:30,725register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,726register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,727register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,727register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,727register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,727register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,727register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,728register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,728register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:30,728register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:09:31,128Bean '(inner bean)#43ab0659#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-14 15:09:31,134Bean '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-14 15:09:31,135Bean '(inner bean)#43ab0659#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-14 15:09:31,136Bean '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-14 15:09:31,136Bean '(inner bean)#43ab0659#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-14 15:09:31,137Bean '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-14 15:09:31,138Bean '(inner bean)#43ab0659#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-14 15:09:31,139Bean '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-14 15:09:31,139Bean '(inner bean)#43ab0659#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-14 15:09:31,140Bean '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-14 15:09:31,141Bean '(inner bean)#43ab0659#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-14 15:09:31,142Bean '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-14 15:09:31,142Bean '(inner bean)#43ab0659#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-14 15:09:31,143Bean '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-14 15:09:31,144Bean '(inner bean)#43ab0659#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-14 15:09:31,144Bean '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-14 15:09:31,145Bean '(inner bean)#43ab0659#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-14 15:09:31,145Bean '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-14 15:09:31,146Bean '(inner bean)#43ab0659' 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-14 15:09:31,147Bean '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-14 15:09:31,171Bean '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-14 15:09:31,173Bean '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-14 15:09:31,200Bean '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-14 15:09:31,201Bean '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-14 15:09:31,204Bean '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-14 15:09:31,207Bean '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-14 15:09:31,209Bean '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-14 15:09:31,210Bean '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-14 15:09:31,211Bean '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-14 15:09:31,245Bean '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-14 15:09:31,249Bean '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-14 15:09:31,250Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1227653431] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:09:31,392Bean '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-14 15:09:31,494Bean '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-14 15:09:31,499Bean '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-14 15:09:31,500Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$af5b7075] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:09:31,821Bean '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-14 15:09:31,826Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$b9ad994d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:09:31,834Bean '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-14 15:09:31,891Bean '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-14 15:09:32,151===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:09:32,153===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:09:32,158Bean '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-14 15:09:32,167Bean '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-14 15:09:32,198Bean '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-14 15:09:32,227Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$6338062c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:09:32,230Bean '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-14 15:09:32,643Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:09:32,658Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:09:32,658Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:09:32,658Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:09:32,957Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:09:32,957Root WebApplicationContext: initialization completed in 6464 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:09:33,117 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:09:34,155{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:09:34,155dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:09:34,155dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:09:37,510 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:09:38,808Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:09:38,824Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:09:38,839Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:09:38,839Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:09:38,839Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:09:38,839JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:09:38,839Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358578824' - 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-14 15:09:38,839Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:09:38,839Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:09:38,839JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7af4286setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:09:40,476 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:09:42,793Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:09:42,940 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:09:43,980Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:09:43,995Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:09:45,993Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:09:46,009Started LinkageSystemApplication in 20.576 seconds (JVM running for 22.0)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:09:46,017 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:09:46,141 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:09:47,001Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:09:47,176Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:09:47,176Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:09:47,179Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:09:47,238ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 15:09:47,238ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676358377523"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 15:09:47,295Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358578824 started.startQuartzScheduler.java547
INFO2023-02-14 15:09:50,554【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:09:50,588排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:09:54,374org.springframework.validation.BeanPropertyBindingResult: 2 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -Field error in object 'ttSulfEquip' on field 'updateTime': rejected value [2023-02-02]; codes [typeMismatch.ttSulfEquip.updateTime,typeMismatch.updateTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.updateTime,updateTime]; arguments []; default message [updateTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'updateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-02'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-02]]handleExceptionJeecgBootExceptionHandler.java79
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 2 errors -Field error in object 'ttSulfEquip' on field 'createTime': rejected value [2023-02-01]; codes [typeMismatch.ttSulfEquip.createTime,typeMismatch.createTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.createTime,createTime]; arguments []; default message [createTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-01'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-01]] -Field error in object 'ttSulfEquip' on field 'updateTime': rejected value [2023-02-02]; codes [typeMismatch.ttSulfEquip.updateTime,typeMismatch.updateTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [ttSulfEquip.updateTime,updateTime]; arguments []; default message [updateTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'updateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '2023-02-02'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2023-02-02]] -
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:175) -
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) -
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 15:15:33,524Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358578824 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:15:33,670【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:15:33,689Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:15:33,690Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358578824 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:15:33,690Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358578824 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:15:33,691Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358578824 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:15:33,693dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:15:33,693{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:15:33,693{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:15:33,693dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:15:43 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:15:43,612HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:15:43,643Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 14104 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:15:43,643The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:15:47,163Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:15:47,168Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:15:47,542Finished Spring Data repository scanning in 361 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:15:47,756 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:15:47,756 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:15:47,756 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,006register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,022register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,022register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,022register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:15:48,412Bean '(inner bean)#4fea5ee0#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-14 15:15:48,412Bean '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-14 15:15:48,412Bean '(inner bean)#4fea5ee0#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-14 15:15:48,412Bean '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-14 15:15:48,412Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0#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-14 15:15:48,428Bean '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-14 15:15:48,428Bean '(inner bean)#4fea5ee0' 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-14 15:15:48,428Bean '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-14 15:15:48,459Bean '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-14 15:15:48,459Bean '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-14 15:15:48,475Bean '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-14 15:15:48,475Bean '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-14 15:15:48,490Bean '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-14 15:15:48,490Bean '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-14 15:15:48,490Bean '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-14 15:15:48,490Bean '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-14 15:15:48,490Bean '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-14 15:15:48,521Bean '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-14 15:15:48,553Bean '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-14 15:15:48,553Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1314088099] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:15:48,694Bean '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-14 15:15:48,788Bean '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-14 15:15:48,788Bean '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-14 15:15:48,803Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$e983cf4c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:15:49,116Bean '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-14 15:15:49,131Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$f3d5f824] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:15:49,131Bean '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-14 15:15:49,196Bean '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-14 15:15:49,447===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:15:49,447===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:15:49,447Bean '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-14 15:15:49,463Bean '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-14 15:15:49,496Bean '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-14 15:15:49,512Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$9d606503] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:15:49,528Bean '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-14 15:15:49,969Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:15:49,984Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:15:49,984Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:15:49,984Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:15:50,316Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:15:50,316Root WebApplicationContext: initialization completed in 6595 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:15:50,506 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:15:51,553{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:15:51,553dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:15:51,553dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:15:54,669 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:15:55,898Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:15:55,901Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:15:55,914Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:15:55,914Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:15:55,918Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:15:55,921JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:15:55,922Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676358955900' - 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-14 15:15:55,923Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:15:55,923Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:15:55,923JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7e584f3csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:15:57,485 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:15:59,647Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:15:59,776 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:16:00,868Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:16:00,896Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:16:03,106Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:16:03,122Started LinkageSystemApplication in 20.392 seconds (JVM running for 21.866)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:16:03,122 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:16:03,169Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:16:03,169Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:16:03,184Completed initialization in 15 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:16:03,460 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:16:04,122Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:16:04,328Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358955900 started.startQuartzScheduler.java547
INFO2023-02-14 15:16:13,613【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:16:13,631排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:16:13,648nested exception is org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$df341fc6.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$1786efaf.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'sysBarcodeRule' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.scripting.xmltags.DynamicContext$ContextAccessor.getProperty(DynamicContext.java:120) -
    at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:3356) -
    at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:121) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTChain.getValueBody(ASTChain.java:141) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTNotEq.getValueBody(ASTNotEq.java:50) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.ASTAnd.getValueBody(ASTAnd.java:61) -
    at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212) -
    at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:586) -
    at org.apache.ibatis.ognl.Ognl.getValue(Ognl.java:550) -
    at org.apache.ibatis.scripting.xmltags.OgnlCache.getValue(OgnlCache.java:46) -
    at org.apache.ibatis.scripting.xmltags.ExpressionEvaluator.evaluateBoolean(ExpressionEvaluator.java:32) -
    at org.apache.ibatis.scripting.xmltags.IfSqlNode.apply(IfSqlNode.java:34) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.lambda$apply$0(MixedSqlNode.java:32) -
    at java.util.ArrayList.forEach(ArrayList.java:1259) -
    at org.apache.ibatis.scripting.xmltags.MixedSqlNode.apply(MixedSqlNode.java:32) -
    at org.apache.ibatis.scripting.xmltags.DynamicSqlSource.getBoundSql(DynamicSqlSource.java:39) -
    at org.apache.ibatis.mapping.MappedStatement.getBoundSql(MappedStatement.java:305) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:69) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:16:28,881Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358955900 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:16:29,019【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:16:29,034Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:16:29,035Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358955900 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:16:29,035Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358955900 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:16:29,037Scheduler MyScheduler_$_DESKTOP-9EB22GD1676358955900 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:16:29,037dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:16:29,037{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:16:29,037{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:16:29,037dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:16:35 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:16:35,112HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:16:35,143Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17828 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:16:35,143The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:16:38,540Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:16:38,556Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:16:38,915Finished Spring Data repository scanning in 344 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:16:39,102 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:16:39,102 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:16:39,102 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,352register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,758Bean '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-14 15:16:39,758Bean '(inner bean)#45dc7be#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-14 15:16:39,774Bean '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-14 15:16:39,774Bean '(inner bean)#45dc7be#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-14 15:16:39,774Bean '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-14 15:16:39,774Bean '(inner bean)#45dc7be#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-14 15:16:39,774Bean '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-14 15:16:39,774Bean '(inner bean)#45dc7be' 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-14 15:16:39,774Bean '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-14 15:16:39,790Bean '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-14 15:16:39,790Bean '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-14 15:16:39,821Bean '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-14 15:16:39,821Bean '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-14 15:16:39,821Bean '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-14 15:16:39,821Bean '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-14 15:16:39,837Bean '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-14 15:16:39,837Bean '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-14 15:16:39,837Bean '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-14 15:16:39,868Bean '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-14 15:16:39,868Bean '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-14 15:16:39,868Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1079378870] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:16:39,993Bean '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-14 15:16:40,106Bean '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-14 15:16:40,107Bean '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-14 15:16:40,107Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$aa220ae2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:16:40,426Bean '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-14 15:16:40,432Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$b47433ba] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:16:40,440Bean '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-14 15:16:40,495Bean '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-14 15:16:40,750===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:16:40,754===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:16:40,760Bean '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-14 15:16:40,768Bean '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-14 15:16:40,798Bean '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-14 15:16:40,826Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5dfea099] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:16:40,829Bean '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-14 15:16:41,256Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:16:41,272Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:16:41,273Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:16:41,273Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:16:41,596Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:16:41,597Root WebApplicationContext: initialization completed in 6391 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:16:41,761 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:16:43,068{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:16:43,068dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:16:43,068dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:16:46,203 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:16:47,433Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:16:47,437Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:16:47,450Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:16:47,451Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:16:47,455Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:16:47,458JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:16:47,459Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359007436' - 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-14 15:16:47,459Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:16:47,460Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:16:47,460JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@d20e900setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:16:49,084 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:16:51,107Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:16:51,232 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:16:52,353Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:16:52,384Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:16:54,369Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:16:54,385Started LinkageSystemApplication in 20.209 seconds (JVM running for 21.806)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:16:54,385 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:16:54,515 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:16:54,831Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:16:54,831Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:16:54,831Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:16:55,370Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:16:55,836Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359007436 started.startQuartzScheduler.java547
INFO2023-02-14 15:16:58,648【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:16:58,674排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:03,153排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:04,120排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:05,952排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:07,456排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:08,640排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:09,408排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:10,263排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:17:13,246---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:17:13,262排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:17:13,262nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$57754d65.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$7e39630c.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    at sun.reflect.GeneratedMethodAccessor108.invoke(Unknown Source) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:17:37,683Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359007436 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:17:37,817【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:17:37,835Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:17:37,836Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359007436 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:17:37,836Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359007436 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:17:37,837Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359007436 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:17:37,837dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:17:37,837{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:17:37,853{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:17:37,853dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:17:43 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:17:43,631HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:17:43,662Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 13376 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:17:43,662The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:17:47,315Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:17:47,319Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:17:47,698Finished Spring Data repository scanning in 359 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:17:47,916 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:17:47,916 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:17:47,916 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,166register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,557Bean '(inner bean)#12be4f83#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-14 15:17:48,557Bean '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-14 15:17:48,573Bean '(inner bean)#12be4f83#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-14 15:17:48,573Bean '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-14 15:17:48,573Bean '(inner bean)#12be4f83#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-14 15:17:48,573Bean '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-14 15:17:48,573Bean '(inner bean)#12be4f83' 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-14 15:17:48,573Bean '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-14 15:17:48,588Bean '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-14 15:17:48,588Bean '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-14 15:17:48,619Bean '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-14 15:17:48,619Bean '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-14 15:17:48,619Bean '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-14 15:17:48,619Bean '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-14 15:17:48,635Bean '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-14 15:17:48,635Bean '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-14 15:17:48,635Bean '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-14 15:17:48,666Bean '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-14 15:17:48,666Bean '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-14 15:17:48,666Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1155566202] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:17:48,807Bean '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-14 15:17:48,901Bean '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-14 15:17:48,916Bean '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-14 15:17:48,916Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$e45143e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:17:49,240Bean '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-14 15:17:49,240Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$eea36cbe] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:17:49,256Bean '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-14 15:17:49,303Bean '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-14 15:17:49,572===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:17:49,572===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:17:49,572Bean '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-14 15:17:49,587Bean '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-14 15:17:49,619Bean '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-14 15:17:49,634Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$982dd99d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:17:49,650Bean '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-14 15:17:50,074Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:17:50,090Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:17:50,090Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:17:50,090Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:17:50,417Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:17:50,417Root WebApplicationContext: initialization completed in 6692 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:17:50,591 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:17:51,643{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:17:51,643dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:17:51,643dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:17:54,850 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:17:56,087Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:17:56,090Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:17:56,103Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:17:56,104Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:17:56,109Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:17:56,112JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:17:56,113Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359076089' - 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-14 15:17:56,113Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:17:56,113Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:17:56,114JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@58c48a23setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:17:57,661 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:17:59,887Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:18:00,012 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:18:01,155Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:18:01,181Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:18:03,271Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:18:03,287Started LinkageSystemApplication in 20.531 seconds (JVM running for 22.155)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:18:03,287 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:18:03,428 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:18:04,078Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:18:04,078Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:18:04,078Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:18:04,274Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:18:04,539Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359076089 started.startQuartzScheduler.java547
INFO2023-02-14 15:18:08,003【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:18:08,029排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:18:10,614---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:18:10,617排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:18:10,633nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$a97d0a44.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2930bcc2.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:18:57,852---查询过滤器,Query规则---field:eqt_no, rule:=, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:18:57,853排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 15:18:57,856nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2]handleExceptionJeecgBootExceptionHandler.java79
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) -
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) -
    at com.sun.proxy.$Proxy136.selectList(Unknown Source) -
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy328.queryTtSulfEquip(Unknown Source) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl.queryTtSulfEquipInfo(TtSulfEquipServiceImpl.java:28) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$FastClassBySpringCGLIB$$cff107e2.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttsulfequip.service.impl.TtSulfEquipServiceImpl$$EnhancerBySpringCGLIB$$a97d0a44.queryTtSulfEquipInfo(<generated>) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController.queryPageList(TtSulfEquipController.java:172) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$FastClassBySpringCGLIB$$7464a332.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttsulfequip.controller.TtSulfEquipController$$EnhancerBySpringCGLIB$$2930bcc2.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
Caused by: org.apache.ibatis.binding.BindingException: Parameter 'eqtNo' not found. Available parameters are [ttSulfEquip, page, param1, param2] -
    at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) -
    at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) -
    at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) -
    at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) -
    at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) -
    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.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) -
    at com.sun.proxy.$Proxy401.createCacheKey(Unknown Source) -
    at com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor.willDoQuery(PaginationInnerInterceptor.java:134) -
    at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:75) -
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) -
    at com.sun.proxy.$Proxy401.query(Unknown Source) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) -
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) -
    at 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) -
     ... 119 common frames omitted -
INFO2023-02-14 15:19:01,698Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359076089 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:19:01,852【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:19:01,873Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:19:01,874Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359076089 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:19:01,874Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359076089 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:19:01,875Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359076089 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:19:01,881dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:19:01,884{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:19:01,891{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:19:01,892dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:19:07 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:19:07,401HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:19:07,433Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 23400 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:19:07,433The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:19:11,864Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:19:11,869Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:19:12,244Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:19:12,441 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:19:12,441 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:19:12,442 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:19:12,684register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,684register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:12,700register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:19:13,091Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,091Bean '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-14 15:19:13,091Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,091Bean '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-14 15:19:13,091Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,091Bean '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-14 15:19:13,091Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,091Bean '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-14 15:19:13,091Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,106Bean '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-14 15:19:13,106Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,106Bean '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-14 15:19:13,106Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,106Bean '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-14 15:19:13,106Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,106Bean '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-14 15:19:13,106Bean '(inner bean)#5b0e9e0c#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-14 15:19:13,106Bean '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-14 15:19:13,106Bean '(inner bean)#5b0e9e0c' 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-14 15:19:13,106Bean '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-14 15:19:13,122Bean '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-14 15:19:13,137Bean '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-14 15:19:13,153Bean '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-14 15:19:13,153Bean '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-14 15:19:13,153Bean '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-14 15:19:13,169Bean '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-14 15:19:13,169Bean '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-14 15:19:13,169Bean '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-14 15:19:13,169Bean '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-14 15:19:13,200Bean '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-14 15:19:13,200Bean '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-14 15:19:13,200Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1310342490] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:19:13,325Bean '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-14 15:19:13,434Bean '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-14 15:19:13,434Bean '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-14 15:19:13,434Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$a99a8488] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:19:13,747Bean '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-14 15:19:13,762Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$b3ecad60] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:19:13,762Bean '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-14 15:19:13,825Bean '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-14 15:19:14,075===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:19:14,075===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:19:14,075Bean '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-14 15:19:14,090Bean '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-14 15:19:14,106Bean '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-14 15:19:14,137Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5d771a3f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:19:14,137Bean '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-14 15:19:14,559Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:19:14,575Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:19:14,575Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:19:14,575Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:19:14,871Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:19:14,871Root WebApplicationContext: initialization completed in 7360 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:19:15,043 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:19:16,043{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:19:16,045dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:19:16,046dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:19:19,217 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:19:20,497Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:19:20,500Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:19:20,514Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:19:20,515Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:19:20,519Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:19:20,523JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:19:20,524Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359160500' - 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-14 15:19:20,524Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:19:20,524Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:19:20,525JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@41c05747setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:19:22,153 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:19:24,355Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:19:24,511 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:19:25,633Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:19:25,659Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:19:27,717Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:19:27,733Started LinkageSystemApplication in 21.234 seconds (JVM running for 22.662)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:19:27,733 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:19:27,867 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:19:28,448Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:19:28,448Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:19:28,448Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:19:28,718Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:19:28,968Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359160500 started.startQuartzScheduler.java547
INFO2023-02-14 15:19:34,112【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:19:34,139排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:38,374---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:32addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:38,377排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:39,310排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:41,285---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:3addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:41,286排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:41,752---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:3addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:41,753排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:42,885---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:3addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:42,886排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:45,351---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:45,353排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:46,385---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:46,386排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:46,640---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:46,641排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:46,876---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:46,876排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:19:47,047---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:19:47,047排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:04,026---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:04,027排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:05,090---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:05,091排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:05,563---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:05,564排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:06,529---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:06,530排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:07,716---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:07,720排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:08,279---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:08,280排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:08,818---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:08,819排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:09,746---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:09,747排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:10,977---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:10,978排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:11,608---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:11,608排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:12,071---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:12,072排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:12,432---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:12,433排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:12,777---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:12,777排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:13,135---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:13,135排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:13,663加密操作,Aspect程序耗时:1msaroundSensitiveDataAspect.java76
INFO2023-02-14 15:20:13,724---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:13,725排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:14,027---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:14,028排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:14,543---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:14,544排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:14,939---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:14,940排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:15,877---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:15,878排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:20:59,870---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:20:59,871排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:00,637---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:00,638排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:01,579---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:01,580排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:02,563---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:02,564排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:02,956---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:02,957排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:03,307---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:03,308排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:03,739---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:03,740排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:05,806---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:05,807排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:10,084---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:50addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:21:10,085排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:21:31,622Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359160500 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:21:31,760【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:21:31,779Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:21:31,779Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359160500 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:21:31,780Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359160500 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:21:31,780Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359160500 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:21:31,787dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:21:31,789{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:21:31,798{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:21:31,799dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:21:37 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:21:37,403HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:21:37,428Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17904 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:21:37,428The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:21:40,948Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:21:40,952Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:21:41,332Finished Spring Data repository scanning in 357 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:21:41,530 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:21:41,531 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:21:41,532 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:21:41,796register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,797register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,797register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,798register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,798register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,798register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,798register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,799register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,799register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:41,799register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:21:42,205Bean '(inner bean)#839755f#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-14 15:21:42,212Bean '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-14 15:21:42,213Bean '(inner bean)#839755f#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-14 15:21:42,214Bean '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-14 15:21:42,214Bean '(inner bean)#839755f#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-14 15:21:42,215Bean '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-14 15:21:42,216Bean '(inner bean)#839755f#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-14 15:21:42,217Bean '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-14 15:21:42,217Bean '(inner bean)#839755f#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-14 15:21:42,218Bean '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-14 15:21:42,219Bean '(inner bean)#839755f#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-14 15:21:42,220Bean '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-14 15:21:42,220Bean '(inner bean)#839755f#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-14 15:21:42,221Bean '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-14 15:21:42,222Bean '(inner bean)#839755f#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-14 15:21:42,223Bean '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-14 15:21:42,224Bean '(inner bean)#839755f#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-14 15:21:42,225Bean '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-14 15:21:42,225Bean '(inner bean)#839755f' 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-14 15:21:42,226Bean '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-14 15:21:42,250Bean '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-14 15:21:42,253Bean '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-14 15:21:42,279Bean '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-14 15:21:42,281Bean '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-14 15:21:42,284Bean '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-14 15:21:42,288Bean '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-14 15:21:42,290Bean '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-14 15:21:42,291Bean '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-14 15:21:42,292Bean '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-14 15:21:42,326Bean '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-14 15:21:42,330Bean '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-14 15:21:42,331Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/209890594] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:21:42,462Bean '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-14 15:21:42,560Bean '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-14 15:21:42,564Bean '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-14 15:21:42,566Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$af8fec7f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:21:42,884Bean '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-14 15:21:42,890Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$b9e21557] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:21:42,897Bean '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-14 15:21:42,953Bean '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-14 15:21:43,214===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:21:43,217===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:21:43,222Bean '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-14 15:21:43,230Bean '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-14 15:21:43,262Bean '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-14 15:21:43,293Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$636c8236] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:21:43,296Bean '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-14 15:21:43,741Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:21:43,756Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:21:43,757Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:21:43,757Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:21:44,072Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:21:44,073Root WebApplicationContext: initialization completed in 6578 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:21:44,237 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:21:45,188{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:21:45,190dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:21:45,190dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:21:48,436 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:21:49,649Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:21:49,652Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:21:49,665Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:21:49,666Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:21:49,670Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:21:49,673JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:21:49,674Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359309651' - 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-14 15:21:49,675Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:21:49,675Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:21:49,675JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@58e0f079setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:21:51,238 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:21:53,340Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:21:53,478 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:21:54,591Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:21:54,618Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:21:56,616Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:21:56,632Started LinkageSystemApplication in 20.175 seconds (JVM running for 21.689)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:21:56,641 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:21:56,765 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:21:57,146Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:21:57,146Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:21:57,148Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:21:57,626Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:21:57,845ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 15:21:57,845ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676359160500"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 15:21:57,907Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359309651 started.startQuartzScheduler.java547
INFO2023-02-14 15:22:14,556【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:22:14,602排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:22:24,871Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359309651 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:22:25,018【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:22:25,034Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:22:25,035Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359309651 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:22:25,035Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359309651 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:22:25,036Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359309651 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:22:25,036dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:22:25,036{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:22:25,052{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:22:25,052dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:22:30 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:22:30,455HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:22:30,482Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20116 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:22:30,483The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:22:33,950Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:22:33,950Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:22:34,325Finished Spring Data repository scanning in 357 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:22:34,512 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:22:34,512 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:22:34,528 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:34,778register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:22:35,168Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,184Bean '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-14 15:22:35,184Bean '(inner bean)#17df689e#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-14 15:22:35,200Bean '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-14 15:22:35,200Bean '(inner bean)#17df689e#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-14 15:22:35,200Bean '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-14 15:22:35,200Bean '(inner bean)#17df689e#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-14 15:22:35,200Bean '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-14 15:22:35,200Bean '(inner bean)#17df689e' 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-14 15:22:35,200Bean '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-14 15:22:35,215Bean '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-14 15:22:35,215Bean '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-14 15:22:35,247Bean '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-14 15:22:35,247Bean '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-14 15:22:35,247Bean '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-14 15:22:35,262Bean '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-14 15:22:35,262Bean '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-14 15:22:35,262Bean '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-14 15:22:35,262Bean '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-14 15:22:35,293Bean '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-14 15:22:35,293Bean '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-14 15:22:35,309Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/665390309] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:22:35,441Bean '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-14 15:22:35,546Bean '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-14 15:22:35,552Bean '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-14 15:22:35,554Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$302666d3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:22:35,884Bean '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-14 15:22:35,891Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$3a788fab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:22:35,900Bean '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-14 15:22:35,958Bean '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-14 15:22:36,212===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:22:36,212===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:22:36,212Bean '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-14 15:22:36,227Bean '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-14 15:22:36,259Bean '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-14 15:22:36,290Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e402fc8a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:22:36,290Bean '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-14 15:22:36,706Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:22:36,721Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:22:36,737Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:22:36,738Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:22:37,040Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:22:37,056Root WebApplicationContext: initialization completed in 6505 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:22:37,212 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:22:38,218{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:22:38,218dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:22:38,218dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:22:41,358 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:22:42,599Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:22:42,615Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:22:42,615Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:22:42,615Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:22:42,630Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:22:42,630JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:22:42,630Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359362599' - 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-14 15:22:42,630Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:22:42,630Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:22:42,630JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@393aac93setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:22:44,234 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:22:46,416Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:22:46,554 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:22:47,641Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:22:47,672Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:22:49,671Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:22:49,687Started LinkageSystemApplication in 20.138 seconds (JVM running for 21.55)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:22:49,687 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:22:49,812 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:22:50,350Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:22:50,350Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:22:50,350Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:22:50,676Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:22:50,941Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359362599 started.startQuartzScheduler.java547
INFO2023-02-14 15:22:53,310【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:22:53,326排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:22:58,275---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:20addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:22:58,289排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:25:03,247拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 15:25:03,288---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:25:03,289排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:25:06,819 connect databaseName : ttxh-bootreadAllTableNamesDbReadTableUtil.java67
INFO2023-02-14 15:25:14,476 connect databaseName : ttxh-bootreadOriginalTableColumnDbReadTableUtil.java436
INFO2023-02-14 15:25:14,958拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 15:25:14,976---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:25:14,976排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:26:11,125load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=-1879523611290749622, entityPackage=ttelectricmeter, entityName=TtElectricMeter, primaryKeyField=id, columns=[{"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"电表编号","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"valley_power","fieldName":"valleyPower","filedComment":"谷电量","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"peak_power","fieldName":"peakPower","filedComment":"峰电量","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], tableVo={"tableName":"tt_electric_meter","ftlDescription":"tt_electric_meter","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttelectricmeter","entityName":"TtElectricMeter","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"电表编号","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"valley_power","fieldName":"valleyPower","filedComment":"谷电量","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"peak_power","fieldName":"peakPower","filedComment":"峰电量","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录的创建时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"5","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_by","fieldName":"createBy","filedComment":"记录的创建人,默认admin","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"update_time","fieldName":"updateTime","filedComment":"记录的修改时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"7","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"update_by","fieldName":"updateBy","filedComment":"记录的修改人,修改人员的登录账号","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], bussiPackage=org.jeecg.modules.demo, tableName=tt_electric_meter}aCodeGenerateOne.java120
INFO2023-02-14 15:26:11,130 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:D:\leiaBaseCodeGenerate.java55
INFO2023-02-14 15:26:11,480[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\controller\TtElectricMeterController.javaaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,538[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\entity\TtElectricMeter.javaaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,587[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\mapper\TtElectricMeterMapper.javaaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,592[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\mapper\xml\TtElectricMeterMapper.xmlaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,599[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\service\ITtElectricMeterService.javaaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,605[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\service\impl\TtElectricMeterServiceImpl.javaaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,650[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\vue\TtElectricMeterList.vueaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,673[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\vue\TtElectricMeter_menu_insert.sqlaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,701[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\vue\modules\TtElectricMeterForm.vueaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,729[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\vue\modules\TtElectricMeterModal.vueaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,739[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttelectricmeter\vue\modules\TtElectricMeterModal.Style#Drawer.vueaBaseCodeGenerate.java129
INFO2023-02-14 15:26:11,759 ----- jeecg-boot ---- generate code success =======> 表名:tt_electric_meter generateCodeFileCodeGenerateOne.java149
INFO2023-02-14 15:28:50,026Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359362599 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:28:50,166【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:28:50,183Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:28:50,184Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359362599 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:28:50,184Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359362599 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:28:50,185Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359362599 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:28:50,185dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:28:50,185{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:28:50,185{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:28:50,185dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:28:58 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:28:59,035HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:28:59,070Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18384 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:28:59,070The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:29:03,892Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:29:03,896Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:29:04,306Finished Spring Data repository scanning in 383 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:29:04,490 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:29:04,490 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:29:04,491 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:29:04,737register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,738register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,738register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,739register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,739register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,739register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,739register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,740register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,740register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:04,740register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:29:05,140Bean '(inner bean)#5891b7c5#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-14 15:29:05,145Bean '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-14 15:29:05,146Bean '(inner bean)#5891b7c5#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-14 15:29:05,147Bean '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-14 15:29:05,148Bean '(inner bean)#5891b7c5#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-14 15:29:05,149Bean '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-14 15:29:05,149Bean '(inner bean)#5891b7c5#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-14 15:29:05,150Bean '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-14 15:29:05,151Bean '(inner bean)#5891b7c5#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-14 15:29:05,152Bean '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-14 15:29:05,153Bean '(inner bean)#5891b7c5#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-14 15:29:05,154Bean '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-14 15:29:05,154Bean '(inner bean)#5891b7c5#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-14 15:29:05,155Bean '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-14 15:29:05,156Bean '(inner bean)#5891b7c5#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-14 15:29:05,157Bean '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-14 15:29:05,157Bean '(inner bean)#5891b7c5#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-14 15:29:05,158Bean '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-14 15:29:05,158Bean '(inner bean)#5891b7c5' 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-14 15:29:05,159Bean '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-14 15:29:05,182Bean '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-14 15:29:05,184Bean '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-14 15:29:05,209Bean '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-14 15:29:05,210Bean '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-14 15:29:05,213Bean '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-14 15:29:05,217Bean '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-14 15:29:05,219Bean '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-14 15:29:05,220Bean '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-14 15:29:05,221Bean '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-14 15:29:05,255Bean '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-14 15:29:05,258Bean '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-14 15:29:05,259Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/636050161] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:29:05,391Bean '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-14 15:29:05,499Bean '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-14 15:29:05,505Bean '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-14 15:29:05,507Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$2db539dd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:29:05,834Bean '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-14 15:29:05,839Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$380762b5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:29:05,847Bean '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-14 15:29:05,907Bean '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-14 15:29:06,168===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:29:06,172===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:29:06,178Bean '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-14 15:29:06,189Bean '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-14 15:29:06,220Bean '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-14 15:29:06,253Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e191cf94] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:29:06,256Bean '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-14 15:29:06,819Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:29:06,838Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:29:06,839Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:29:06,839Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:29:07,150Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:29:07,151Root WebApplicationContext: initialization completed in 7998 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:29:07,323 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:29:08,296{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:29:08,297dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:29:08,298dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:29:11,542 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:29:12,794Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:29:12,797Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:29:12,811Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:29:12,811Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:29:12,816Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:29:12,819JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:29:12,820Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676359752797' - 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-14 15:29:12,820Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:29:12,820Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:29:12,821JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6124a7c0setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:29:14,326 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:29:16,369Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:29:16,502 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:29:17,876Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:29:17,902Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:29:20,033Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:29:20,049Started LinkageSystemApplication in 22.342 seconds (JVM running for 23.88)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:29:20,056 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:29:20,186 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:29:20,530Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:29:20,530Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:29:20,533Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:29:21,037Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:29:21,267Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359752797 started.startQuartzScheduler.java547
INFO2023-02-14 15:29:33,953【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:29:33,963拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 15:29:34,039---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:29:34,042排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:33:07,335======获取一级菜单数据=====耗时:19毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 15:34:26,040======获取一级菜单数据=====耗时:14毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 15:35:00,262======获取一级菜单数据=====耗时:13毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 15:35:30,545======获取一级菜单数据=====耗时:17毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 15:35:32,127排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
WARN2023-02-14 15:35:39,298SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1bc98636] Transaction not enabledexecuteBatchSqlHelper.java179
INFO2023-02-14 15:35:39,377======角色授权成功=====耗时:83毫秒saveRolePermissionSysPermissionController.java562
INFO2023-02-14 15:35:40,166【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:35:42,312【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:35:42,381排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:35:46,011排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:40:09,355排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:40:21,900排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:44:37,377ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 15:44:37,377ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676359623726"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 15:52:19,145Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359752797 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:52:19,283【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:52:19,301Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:52:19,302Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359752797 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:52:19,302Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359752797 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:52:19,303Scheduler MyScheduler_$_DESKTOP-9EB22GD1676359752797 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:52:19,303dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:52:19,303{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:52:19,319{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:52:19,319dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:52:29 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:52:30,050HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:52:30,080Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 4960 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:52:30,080The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:52:34,341Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:52:34,345Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:52:34,750Finished Spring Data repository scanning in 380 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:52:35,045 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:52:35,045 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:52:35,046 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:52:35,358register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,359register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,359register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,360register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,360register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,360register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,360register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,361register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,361register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,361register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:52:35,962Bean '(inner bean)#6cd7f381#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-14 15:52:35,969Bean '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-14 15:52:35,970Bean '(inner bean)#6cd7f381#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-14 15:52:35,971Bean '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-14 15:52:35,972Bean '(inner bean)#6cd7f381#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-14 15:52:35,974Bean '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-14 15:52:35,975Bean '(inner bean)#6cd7f381#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-14 15:52:35,975Bean '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-14 15:52:35,976Bean '(inner bean)#6cd7f381#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-14 15:52:35,977Bean '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-14 15:52:35,978Bean '(inner bean)#6cd7f381#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-14 15:52:35,979Bean '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-14 15:52:35,979Bean '(inner bean)#6cd7f381#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-14 15:52:35,980Bean '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-14 15:52:35,981Bean '(inner bean)#6cd7f381#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-14 15:52:35,982Bean '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-14 15:52:35,982Bean '(inner bean)#6cd7f381#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-14 15:52:35,983Bean '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-14 15:52:35,984Bean '(inner bean)#6cd7f381' 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-14 15:52:35,985Bean '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-14 15:52:36,013Bean '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-14 15:52:36,016Bean '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-14 15:52:36,046Bean '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-14 15:52:36,047Bean '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-14 15:52:36,050Bean '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-14 15:52:36,055Bean '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-14 15:52:36,058Bean '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-14 15:52:36,059Bean '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-14 15:52:36,060Bean '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-14 15:52:36,098Bean '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-14 15:52:36,102Bean '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-14 15:52:36,103Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2076014264] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:52:36,280Bean '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-14 15:52:36,406Bean '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-14 15:52:36,412Bean '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-14 15:52:36,414Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$c1965894] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:52:36,766Bean '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-14 15:52:36,771Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$cbe8816c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:52:36,780Bean '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-14 15:52:36,838Bean '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-14 15:52:37,112===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:52:37,115===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:52:37,120Bean '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-14 15:52:37,130Bean '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-14 15:52:37,164Bean '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-14 15:52:37,195Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$7572ee4b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:52:37,198Bean '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-14 15:52:37,697Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:52:37,714Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:52:37,714Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:52:37,714Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:52:38,059Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:52:38,059Root WebApplicationContext: initialization completed in 7896 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:52:38,243 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:52:39,295{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:52:39,297dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:52:39,297dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:52:43,381 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:52:45,233Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:52:45,233Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:52:45,249Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:52:45,249Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:52:45,249Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:52:45,264JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:52:45,264Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676361165233' - 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-14 15:52:45,264Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:52:45,264Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:52:45,264JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@11e36e5csetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:52:46,792 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:52:49,165Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:52:49,293 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:52:50,371Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:52:50,386Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:52:52,840Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:52:52,855Started LinkageSystemApplication in 24.029 seconds (JVM running for 25.605)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:52:52,871 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:52:52,996 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:52:53,277Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:52:53,277Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:52:53,277Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:52:53,855Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:52:54,168Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361165233 started.startQuartzScheduler.java547
INFO2023-02-14 15:52:58,482【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:52:58,545排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:53:30,195Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361165233 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:53:30,324【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:53:30,340Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 15:53:30,340Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361165233 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 15:53:30,340Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361165233 paused.standbyQuartzScheduler.java585
INFO2023-02-14 15:53:30,340Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361165233 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 15:53:30,355dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 15:53:30,355{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 15:53:30,355{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 15:53:30,355dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 15:53:36 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 15:53:36,283HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 15:53:36,314Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 14788 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 15:53:36,314The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 15:53:40,016Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 15:53:40,025Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 15:53:40,426Finished Spring Data repository scanning in 372 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 15:53:40,635 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 15:53:40,635 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 15:53:40,637 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 15:53:40,905register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,906register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,907register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,908register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,908register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:40,908register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 15:53:41,314Bean '(inner bean)#45fb2354#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-14 15:53:41,320Bean '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-14 15:53:41,321Bean '(inner bean)#45fb2354#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-14 15:53:41,321Bean '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-14 15:53:41,322Bean '(inner bean)#45fb2354#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-14 15:53:41,323Bean '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-14 15:53:41,324Bean '(inner bean)#45fb2354#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-14 15:53:41,325Bean '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-14 15:53:41,325Bean '(inner bean)#45fb2354#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-14 15:53:41,326Bean '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-14 15:53:41,327Bean '(inner bean)#45fb2354#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-14 15:53:41,327Bean '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-14 15:53:41,328Bean '(inner bean)#45fb2354#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-14 15:53:41,329Bean '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-14 15:53:41,330Bean '(inner bean)#45fb2354#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-14 15:53:41,330Bean '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-14 15:53:41,331Bean '(inner bean)#45fb2354#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-14 15:53:41,332Bean '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-14 15:53:41,332Bean '(inner bean)#45fb2354' 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-14 15:53:41,333Bean '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-14 15:53:41,356Bean '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-14 15:53:41,358Bean '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-14 15:53:41,385Bean '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-14 15:53:41,386Bean '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-14 15:53:41,388Bean '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-14 15:53:41,392Bean '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-14 15:53:41,395Bean '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-14 15:53:41,396Bean '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-14 15:53:41,397Bean '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-14 15:53:41,432Bean '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-14 15:53:41,436Bean '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-14 15:53:41,437Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/766796213] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:53:41,572Bean '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-14 15:53:41,672Bean '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-14 15:53:41,678Bean '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-14 15:53:41,680Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$4508c26c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:53:42,003Bean '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-14 15:53:42,008Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$4f5aeb44] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:53:42,017Bean '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-14 15:53:42,074Bean '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-14 15:53:42,334===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 15:53:42,337===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 15:53:42,342Bean '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-14 15:53:42,351Bean '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-14 15:53:42,379Bean '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-14 15:53:42,408Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f8e55823] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 15:53:42,411Bean '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-14 15:53:42,859Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 15:53:42,874Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:53:42,875Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 15:53:42,875Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 15:53:43,190Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 15:53:43,190Root WebApplicationContext: initialization completed in 6797 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 15:53:43,353 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 15:53:44,387{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 15:53:44,389dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 15:53:44,389dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 15:53:47,627 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 15:53:48,833Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 15:53:48,836Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 15:53:48,850Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 15:53:48,851Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 15:53:48,855Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 15:53:48,858JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 15:53:48,859Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676361228835' - 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-14 15:53:48,860Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 15:53:48,860Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 15:53:48,860JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@152bb4ccsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 15:53:50,788 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 15:53:52,764Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 15:53:52,892 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 15:53:53,994Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 15:53:54,021Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 15:53:56,074Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 15:53:56,089Started LinkageSystemApplication in 20.749 seconds (JVM running for 22.316)logStartedStartupInfoLogger.java61
INFO2023-02-14 15:53:56,097 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 15:53:56,228 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 15:53:56,907Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 15:53:56,908Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 15:53:56,911Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 15:53:57,084Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 15:53:57,280ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 15:53:57,280ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676361165233"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 15:53:57,348Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361228835 started.startQuartzScheduler.java547
INFO2023-02-14 15:54:14,046【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:54:14,068排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:54:19,409排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:55:08,198【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:55:10,182【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:55:10,231排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:56:12,413ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 15:56:12,413ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676361062958"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 15:56:36,053排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:00,929【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 15:57:03,129【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 15:57:03,178排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:04,528排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:08,248---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:55addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:08,248排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:08,915---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:55addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:08,915排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:09,286---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:55addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:09,286排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:09,451---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:55addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:09,451排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:09,608---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:55addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:09,608排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:10,174排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 15:57:14,740---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:点addEasyQueryQueryGenerator.java648
INFO2023-02-14 15:57:14,740排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:03:50,664排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:04:02,481拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 16:04:02,514---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 16:04:02,515排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:05:17,958load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=363527539249842173, entityPackage=ttvirsualsortequipsecond, entityName=TtVirsualSortEquipSecond, primaryKeyField=id, columns=[{"fieldDbName":"ps_name","fieldName":"psName","filedComment":"工位","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"test_item","fieldName":"testItem","filedComment":"检测项","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"upper_limit","fieldName":"upperLimit","filedComment":"公差上限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"lower_limit","fieldName":"lowerLimit","filedComment":"公差下限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"total_count","fieldName":"totalCount","filedComment":"总数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_count","fieldName":"ngCount","filedComment":"NG数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_rate","fieldName":"ngRate","filedComment":"NG率","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"type_id","fieldName":"typeId","filedComment":"产品类型id,1表示底座,2表示胶塞","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"company_id","fieldName":"companyId","filedComment":"公司id, 1表示电气元器件,2表示轨道扣件","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_by","fieldName":"createBy","filedComment":"记录的创建人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_time","fieldName":"updateTime","filedComment":"记录的修改时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"13","isKey":"N","isShow":"N","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}], tableVo={"tableName":"tt_virsual_sort_equip","ftlDescription":"tt_virsual_sort_equip_second","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttvirsualsortequipsecond","entityName":"TtVirsualSortEquipSecond","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ps_name","fieldName":"psName","filedComment":"工位","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"test_item","fieldName":"testItem","filedComment":"检测项","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"upper_limit","fieldName":"upperLimit","filedComment":"公差上限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"lower_limit","fieldName":"lowerLimit","filedComment":"公差下限","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"total_count","fieldName":"totalCount","filedComment":"总数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_count","fieldName":"ngCount","filedComment":"NG数","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"ng_rate","fieldName":"ngRate","filedComment":"NG率","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"type_id","fieldName":"typeId","filedComment":"产品类型id,1表示底座,2表示胶塞","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"company_id","fieldName":"companyId","filedComment":"公司id, 1表示电气元器件,2表示轨道扣件","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录的创建时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"11","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"create_by","fieldName":"createBy","filedComment":"记录的创建人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_time","fieldName":"updateTime","filedComment":"记录的修改时间","fieldType":"java.util.Date","fieldDbType":"Datetime","classType":"datetime","classType_row":"datetime","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"datetime","fieldOrderNum":"13","isKey":"N","isShow":"N","isShowList":"N","isQuery":"Y","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"group","dictField":"","dictTable":"","dictText":""}, {"fieldDbName":"update_by","fieldName":"updateBy","filedComment":"记录的修改人员","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"","fieldValidType":"","fieldDefault":"","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"","dictTable":"","dictText":""}], bussiPackage=org.jeecg.modules.demo, tableName=tt_virsual_sort_equip}aCodeGenerateOne.java120
INFO2023-02-14 16:05:17,963 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:D:\leiaBaseCodeGenerate.java55
INFO2023-02-14 16:05:18,294[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\controller\TtVirsualSortEquipSecondController.javaaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,367[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\entity\TtVirsualSortEquipSecond.javaaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,411[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\mapper\TtVirsualSortEquipSecondMapper.javaaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,418[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\mapper\xml\TtVirsualSortEquipSecondMapper.xmlaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,423[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\service\ITtVirsualSortEquipSecondService.javaaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,429[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\service\impl\TtVirsualSortEquipSecondServiceImpl.javaaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,465[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\vue\TtVirsualSortEquipSecondList.vueaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,490[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\vue\TtVirsualSortEquipSecond_menu_insert.sqlaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,516[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\vue\modules\TtVirsualSortEquipSecondForm.vueaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,544[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\vue\modules\TtVirsualSortEquipSecondModal.vueaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,553[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttvirsualsortequipsecond\vue\modules\TtVirsualSortEquipSecondModal.Style#Drawer.vueaBaseCodeGenerate.java129
INFO2023-02-14 16:05:18,574 ----- jeecg-boot ---- generate code success =======> 表名:tt_virsual_sort_equip generateCodeFileCodeGenerateOne.java149
INFO2023-02-14 16:11:35,554Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361228835 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:11:35,685【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:11:35,702Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 16:11:35,703Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361228835 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 16:11:35,703Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361228835 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:11:35,704Scheduler MyScheduler_$_DESKTOP-9EB22GD1676361228835 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 16:11:35,711dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 16:11:35,714{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 16:11:35,720{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 16:11:35,721dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:11:45 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 16:11:45,737HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 16:11:45,767Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 6236 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 16:11:45,767The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 16:11:49,225Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 16:11:49,225Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 16:11:49,600Finished Spring Data repository scanning in 360 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 16:11:49,803 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 16:11:49,803 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 16:11:49,803 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,053register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,068register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,068register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,068register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:11:50,466Bean '(inner bean)#4ac19bc6#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-14 16:11:50,472Bean '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-14 16:11:50,473Bean '(inner bean)#4ac19bc6#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-14 16:11:50,474Bean '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-14 16:11:50,474Bean '(inner bean)#4ac19bc6#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-14 16:11:50,475Bean '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-14 16:11:50,476Bean '(inner bean)#4ac19bc6#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-14 16:11:50,477Bean '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-14 16:11:50,477Bean '(inner bean)#4ac19bc6#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-14 16:11:50,478Bean '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-14 16:11:50,479Bean '(inner bean)#4ac19bc6#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-14 16:11:50,480Bean '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-14 16:11:50,480Bean '(inner bean)#4ac19bc6#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-14 16:11:50,481Bean '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-14 16:11:50,482Bean '(inner bean)#4ac19bc6#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-14 16:11:50,482Bean '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-14 16:11:50,483Bean '(inner bean)#4ac19bc6#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-14 16:11:50,484Bean '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-14 16:11:50,484Bean '(inner bean)#4ac19bc6' 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-14 16:11:50,485Bean '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-14 16:11:50,509Bean '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-14 16:11:50,512Bean '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-14 16:11:50,551Bean '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-14 16:11:50,553Bean '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-14 16:11:50,556Bean '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-14 16:11:50,560Bean '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-14 16:11:50,565Bean '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-14 16:11:50,567Bean '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-14 16:11:50,569Bean '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-14 16:11:50,607Bean '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-14 16:11:50,611Bean '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-14 16:11:50,613Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1341158560] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:11:50,774Bean '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-14 16:11:50,885Bean '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-14 16:11:50,891Bean '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-14 16:11:50,895Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$43439ed7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:11:51,261Bean '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-14 16:11:51,276Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$4d95c7af] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:11:51,276Bean '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-14 16:11:51,339Bean '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-14 16:11:51,654===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 16:11:51,673===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 16:11:51,689Bean '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-14 16:11:51,705Bean '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-14 16:11:51,752Bean '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-14 16:11:51,783Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f720348e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:11:51,783Bean '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-14 16:11:52,254Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 16:11:52,273Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:11:52,273Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 16:11:52,273Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 16:11:52,636Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 16:11:52,636Root WebApplicationContext: initialization completed in 6792 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 16:11:52,798 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 16:11:53,889{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 16:11:53,889dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 16:11:53,889dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 16:11:57,876 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 16:11:59,388Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 16:11:59,388Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 16:11:59,420Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 16:11:59,420Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 16:11:59,420Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 16:11:59,420JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 16:11:59,420Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676362319388' - 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-14 16:11:59,435Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 16:11:59,435Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 16:11:59,435JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2a4bee4esetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 16:12:01,282 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 16:12:04,107Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 16:12:04,236 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 16:12:05,373Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:12:05,405Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 16:12:07,951Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 16:12:07,966Started LinkageSystemApplication in 23.17 seconds (JVM running for 24.601)logStartedStartupInfoLogger.java61
INFO2023-02-14 16:12:07,994 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 16:12:08,135 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 16:12:08,384Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 16:12:08,385Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 16:12:08,387Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 16:12:08,970Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 16:12:09,252Scheduler MyScheduler_$_DESKTOP-9EB22GD1676362319388 started.startQuartzScheduler.java547
INFO2023-02-14 16:12:19,505【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:12:39,741排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:13:00,756排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:26:28,008======获取一级菜单数据=====耗时:90毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 16:27:18,474======获取一级菜单数据=====耗时:9毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 16:35:24,445【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:35:26,599【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:35:26,677======获取一级菜单数据=====耗时:17毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 16:35:27,795【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:35:28,872【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:35:28,945======获取一级菜单数据=====耗时:17毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 16:35:37,577Scheduler MyScheduler_$_DESKTOP-9EB22GD1676362319388 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:35:37,704【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:35:37,723Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 16:35:37,724Scheduler MyScheduler_$_DESKTOP-9EB22GD1676362319388 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 16:35:37,724Scheduler MyScheduler_$_DESKTOP-9EB22GD1676362319388 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:35:37,725Scheduler MyScheduler_$_DESKTOP-9EB22GD1676362319388 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 16:35:37,725dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 16:35:37,725{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 16:35:37,740{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 16:35:37,740dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:35:46 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 16:35:46,685HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 16:35:46,713Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19228 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 16:35:46,714The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 16:35:51,810Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 16:35:51,825Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 16:35:52,247Finished Spring Data repository scanning in 392 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 16:35:52,450 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 16:35:52,450 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 16:35:52,466 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:52,731register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:35:53,169Bean '(inner bean)#734cf881#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-14 16:35:53,169Bean '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-14 16:35:53,169Bean '(inner bean)#734cf881#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-14 16:35:53,169Bean '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-14 16:35:53,169Bean '(inner bean)#734cf881#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-14 16:35:53,169Bean '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-14 16:35:53,169Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881#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-14 16:35:53,184Bean '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-14 16:35:53,184Bean '(inner bean)#734cf881' 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-14 16:35:53,184Bean '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-14 16:35:53,216Bean '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-14 16:35:53,216Bean '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-14 16:35:53,263Bean '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-14 16:35:53,263Bean '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-14 16:35:53,263Bean '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-14 16:35:53,263Bean '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-14 16:35:53,263Bean '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-14 16:35:53,263Bean '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-14 16:35:53,278Bean '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-14 16:35:53,309Bean '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-14 16:35:53,309Bean '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-14 16:35:53,309Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1512060385] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:35:53,481Bean '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-14 16:35:53,597Bean '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-14 16:35:53,597Bean '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-14 16:35:53,597Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$c7199bc5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:35:53,959Bean '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-14 16:35:53,959Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$d16bc49d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:35:53,975Bean '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-14 16:35:54,022Bean '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-14 16:35:54,296===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 16:35:54,296===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 16:35:54,312Bean '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-14 16:35:54,312Bean '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-14 16:35:54,343Bean '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-14 16:35:54,387Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$7af6317c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:35:54,389Bean '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-14 16:35:54,862Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 16:35:54,881Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:35:54,881Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 16:35:54,881Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 16:35:55,200Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 16:35:55,200Root WebApplicationContext: initialization completed in 8379 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 16:35:55,390 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 16:35:56,478{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 16:35:56,479dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 16:35:56,480dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 16:35:59,737 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 16:36:00,997Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 16:36:01,000Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 16:36:01,014Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 16:36:01,015Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 16:36:01,019Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 16:36:01,023JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 16:36:01,024Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676363760999' - 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-14 16:36:01,024Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 16:36:01,025Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 16:36:01,025JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5b04224asetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 16:36:03,192 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 16:36:05,274Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 16:36:05,411 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 16:36:06,528Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:36:06,544Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 16:36:08,633Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 16:36:08,636Started LinkageSystemApplication in 22.934 seconds (JVM running for 24.498)logStartedStartupInfoLogger.java61
INFO2023-02-14 16:36:08,652 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 16:36:09,116Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 16:36:09,116Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 16:36:09,116Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 16:36:09,275 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 16:36:09,647Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 16:36:09,915Scheduler MyScheduler_$_DESKTOP-9EB22GD1676363760999 started.startQuartzScheduler.java547
INFO2023-02-14 16:36:21,145======获取一级菜单数据=====耗时:21毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 16:36:21,189【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:36:31,144排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
WARN2023-02-14 16:36:38,270SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4fceec4b] Transaction not enabledexecuteBatchSqlHelper.java179
INFO2023-02-14 16:36:38,304======角色授权成功=====耗时:38毫秒saveRolePermissionSysPermissionController.java562
INFO2023-02-14 16:36:42,669【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:36:43,231【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:36:43,280排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:36:46,542排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:37:52,711【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:37:54,744【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:37:54,792排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:38:01,600排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:38:02,761排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:38:04,681排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:44:40,250ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 16:44:40,250ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676364122788"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 16:46:25,264ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 16:46:25,265ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676364300328"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 16:51:35,168Scheduler MyScheduler_$_DESKTOP-9EB22GD1676363760999 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:51:35,312【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:51:35,346Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 16:51:35,347Scheduler MyScheduler_$_DESKTOP-9EB22GD1676363760999 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 16:51:35,348Scheduler MyScheduler_$_DESKTOP-9EB22GD1676363760999 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:51:35,349Scheduler MyScheduler_$_DESKTOP-9EB22GD1676363760999 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 16:51:35,363dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 16:51:35,366{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 16:51:35,376{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 16:51:35,376dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:51:45 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 16:51:45,721HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 16:51:45,750Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22152 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 16:51:45,751The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 16:51:49,924Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 16:51:49,929Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 16:51:50,332Finished Spring Data repository scanning in 377 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 16:51:50,548 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 16:51:50,548 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 16:51:50,550 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 16:51:50,818register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,819register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,819register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,819register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,819register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,820register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,820register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,820register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,820register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:50,820register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:51:51,341Bean '(inner bean)#42d174ad#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-14 16:51:51,348Bean '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-14 16:51:51,349Bean '(inner bean)#42d174ad#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-14 16:51:51,350Bean '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-14 16:51:51,351Bean '(inner bean)#42d174ad#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-14 16:51:51,353Bean '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-14 16:51:51,354Bean '(inner bean)#42d174ad#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-14 16:51:51,356Bean '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-14 16:51:51,356Bean '(inner bean)#42d174ad#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-14 16:51:51,358Bean '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-14 16:51:51,358Bean '(inner bean)#42d174ad#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-14 16:51:51,359Bean '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-14 16:51:51,360Bean '(inner bean)#42d174ad#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-14 16:51:51,361Bean '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-14 16:51:51,362Bean '(inner bean)#42d174ad#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-14 16:51:51,363Bean '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-14 16:51:51,363Bean '(inner bean)#42d174ad#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-14 16:51:51,364Bean '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-14 16:51:51,365Bean '(inner bean)#42d174ad' 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-14 16:51:51,366Bean '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-14 16:51:51,399Bean '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-14 16:51:51,402Bean '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-14 16:51:51,444Bean '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-14 16:51:51,460Bean '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-14 16:51:51,471Bean '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-14 16:51:51,478Bean '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-14 16:51:51,482Bean '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-14 16:51:51,483Bean '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-14 16:51:51,484Bean '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-14 16:51:51,520Bean '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-14 16:51:51,520Bean '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-14 16:51:51,520Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/481577519] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:51:51,677Bean '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-14 16:51:51,787Bean '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-14 16:51:51,802Bean '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-14 16:51:51,803Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$1ea1e57d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:51:52,152Bean '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-14 16:51:52,152Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$28f40e55] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:51:52,152Bean '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-14 16:51:52,218Bean '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-14 16:51:52,504===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 16:51:52,504===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 16:51:52,504Bean '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-14 16:51:52,518Bean '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-14 16:51:52,549Bean '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-14 16:51:52,586Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d27e7b34] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:51:52,586Bean '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-14 16:51:53,063Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 16:51:53,079Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:51:53,079Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 16:51:53,079Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 16:51:53,405Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 16:51:53,405Root WebApplicationContext: initialization completed in 7576 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 16:51:53,585 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 16:51:54,889{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 16:51:54,889dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 16:51:54,889dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 16:51:58,735 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 16:52:00,063Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 16:52:00,063Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 16:52:00,078Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 16:52:00,078Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 16:52:00,078Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 16:52:00,094JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 16:52:00,094Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676364720063' - 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-14 16:52:00,094Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 16:52:00,094Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 16:52:00,094JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5444c63fsetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 16:52:01,644 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 16:52:03,980Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 16:52:04,132 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 16:52:05,489Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:52:05,531Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 16:52:07,964Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 16:52:07,979Started LinkageSystemApplication in 23.555 seconds (JVM running for 25.133)logStartedStartupInfoLogger.java61
INFO2023-02-14 16:52:07,995 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 16:52:08,120 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 16:52:08,670Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 16:52:08,670Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 16:52:08,670Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 16:52:08,973Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 16:52:09,243Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364720063 started.startQuartzScheduler.java547
INFO2023-02-14 16:52:13,362排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 16:52:13,387Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfohandleExceptionJeecgBootExceptionHandler.java79
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfo -
    at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) -
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) -
    at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy334.TtVirsualSortEquipSecondInfo(Unknown Source) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl.QueryTtVirsualSortEquipSecondInfo(TtVirsualSortEquipSecondServiceImpl.java:26) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$FastClassBySpringCGLIB$$9ffb9c0.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c543533f.QueryTtVirsualSortEquipSecondInfo(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.QueryTtVirsualSortEquipSecondInfoList(TtVirsualSortEquipSecondController.java:65) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$8bd6b738.QueryTtVirsualSortEquipSecondInfoList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 16:52:19,628排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 16:52:19,630Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfohandleExceptionJeecgBootExceptionHandler.java79
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.jeecg.modules.demo.ttvirsualsortequipsecond.mapper.TtVirsualSortEquipSecondMapper.TtVirsualSortEquipSecondInfo -
    at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) -
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) -
    at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy334.TtVirsualSortEquipSecondInfo(Unknown Source) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl.QueryTtVirsualSortEquipSecondInfo(TtVirsualSortEquipSecondServiceImpl.java:26) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$FastClassBySpringCGLIB$$9ffb9c0.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c543533f.QueryTtVirsualSortEquipSecondInfo(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.QueryTtVirsualSortEquipSecondInfoList(TtVirsualSortEquipSecondController.java:65) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$8bd6b738.QueryTtVirsualSortEquipSecondInfoList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 16:52:19,721【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:53:54,500Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364720063 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:53:54,646【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 16:53:54,667Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 16:53:54,668Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364720063 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 16:53:54,668Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364720063 paused.standbyQuartzScheduler.java585
INFO2023-02-14 16:53:54,669Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364720063 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 16:53:54,669dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 16:53:54,669{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 16:53:54,687{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 16:53:54,687dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 16:54:02 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 16:54:03,030HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 16:54:03,061Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 9020 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 16:54:03,061The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 16:54:06,453Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 16:54:06,453Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 16:54:06,828Finished Spring Data repository scanning in 355 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 16:54:07,016 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 16:54:07,016 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 16:54:07,016 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,281register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 16:54:07,672Bean '(inner bean)#129b69b2#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-14 16:54:07,672Bean '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-14 16:54:07,672Bean '(inner bean)#129b69b2#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-14 16:54:07,672Bean '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-14 16:54:07,672Bean '(inner bean)#129b69b2#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-14 16:54:07,672Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2#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-14 16:54:07,688Bean '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-14 16:54:07,688Bean '(inner bean)#129b69b2' 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-14 16:54:07,688Bean '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-14 16:54:07,703Bean '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-14 16:54:07,719Bean '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-14 16:54:07,734Bean '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-14 16:54:07,734Bean '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-14 16:54:07,750Bean '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-14 16:54:07,750Bean '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-14 16:54:07,750Bean '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-14 16:54:07,750Bean '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-14 16:54:07,750Bean '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-14 16:54:07,781Bean '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-14 16:54:07,797Bean '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-14 16:54:07,797Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1694587465] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:54:07,922Bean '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-14 16:54:08,016Bean '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-14 16:54:08,016Bean '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-14 16:54:08,016Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$dfc7009] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:54:08,333Bean '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-14 16:54:08,333Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$184e98e1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:54:08,348Bean '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-14 16:54:08,395Bean '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-14 16:54:08,648===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 16:54:08,664===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 16:54:08,664Bean '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-14 16:54:08,664Bean '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-14 16:54:08,695Bean '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-14 16:54:08,727Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c1d905c0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 16:54:08,727Bean '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-14 16:54:09,142Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 16:54:09,157Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:54:09,173Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 16:54:09,173Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 16:54:09,473Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 16:54:09,473Root WebApplicationContext: initialization completed in 6349 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 16:54:09,633 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 16:54:10,625{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 16:54:10,627dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 16:54:10,627dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 16:54:13,827 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 16:54:15,064Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 16:54:15,064Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 16:54:15,080Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 16:54:15,080Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 16:54:15,080Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 16:54:15,080JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 16:54:15,080Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676364855064' - 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-14 16:54:15,080Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 16:54:15,080Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 16:54:15,080JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4353230setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 16:54:16,694 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 16:54:19,154Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 16:54:19,279 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 16:54:20,323Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 16:54:20,354Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 16:54:22,389Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 16:54:22,404Started LinkageSystemApplication in 20.267 seconds (JVM running for 21.773)logStartedStartupInfoLogger.java61
INFO2023-02-14 16:54:22,422 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 16:54:22,533 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 16:54:23,004Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 16:54:23,004Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 16:54:23,004Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 16:54:23,399Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 16:54:23,624Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364855064 started.startQuartzScheduler.java547
INFO2023-02-14 16:54:27,155【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 16:54:27,183排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:30,526排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:32,847排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:35,316排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:36,083排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:36,632排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:37,284排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:37,736排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:38,096排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:38,358排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:38,602排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:38,820排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:39,072排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:39,302排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:54:39,621排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:55:50,865排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:55:55,674排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:55:57,898排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 16:55:59,801排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:10:07,665【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:10:08,984【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:10:09,033排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:15:07,551---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:1addEasyQueryQueryGenerator.java648
INFO2023-02-14 17:15:07,567排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:15:08,285---查询过滤器,Query规则---field:eqt_no, rule:LIKE, value:1addEasyQueryQueryGenerator.java648
INFO2023-02-14 17:15:08,285排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:15:15,167排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:15:24,165排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:20:13,065【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:20:15,495【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:20:15,551排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:25:57,266Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364855064 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:25:57,415【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:25:57,451Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 17:25:57,452Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364855064 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 17:25:57,452Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364855064 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:25:57,454Scheduler MyScheduler_$_DESKTOP-9EB22GD1676364855064 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 17:25:57,454dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 17:25:57,470{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 17:25:57,485{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 17:25:57,485dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:26:08 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 17:26:08,472HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 17:26:08,504Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 22168 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 17:26:08,504The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 17:26:13,056Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 17:26:13,061Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 17:26:13,541Finished Spring Data repository scanning in 451 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 17:26:13,779 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 17:26:13,779 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 17:26:13,781 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 17:26:14,114register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,115register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,116register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,116register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,116register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,117register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,117register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,117register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,117register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,117register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:26:14,586Bean '(inner bean)#116fc29e#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-14 17:26:14,593Bean '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-14 17:26:14,594Bean '(inner bean)#116fc29e#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-14 17:26:14,595Bean '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-14 17:26:14,595Bean '(inner bean)#116fc29e#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-14 17:26:14,597Bean '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-14 17:26:14,599Bean '(inner bean)#116fc29e#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-14 17:26:14,601Bean '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-14 17:26:14,602Bean '(inner bean)#116fc29e#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-14 17:26:14,603Bean '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-14 17:26:14,604Bean '(inner bean)#116fc29e#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-14 17:26:14,605Bean '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-14 17:26:14,605Bean '(inner bean)#116fc29e#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-14 17:26:14,607Bean '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-14 17:26:14,607Bean '(inner bean)#116fc29e#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-14 17:26:14,608Bean '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-14 17:26:14,609Bean '(inner bean)#116fc29e#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-14 17:26:14,610Bean '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-14 17:26:14,610Bean '(inner bean)#116fc29e' 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-14 17:26:14,611Bean '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-14 17:26:14,640Bean '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-14 17:26:14,643Bean '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-14 17:26:14,674Bean '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-14 17:26:14,675Bean '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-14 17:26:14,679Bean '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-14 17:26:14,683Bean '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-14 17:26:14,686Bean '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-14 17:26:14,687Bean '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-14 17:26:14,688Bean '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-14 17:26:14,727Bean '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-14 17:26:14,731Bean '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-14 17:26:14,733Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1454795302] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:26:14,883Bean '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-14 17:26:15,002Bean '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-14 17:26:15,008Bean '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-14 17:26:15,010Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$f809b6eb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:26:15,369Bean '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-14 17:26:15,375Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$25bdfc3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:26:15,384Bean '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-14 17:26:15,448Bean '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-14 17:26:15,736===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 17:26:15,739===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 17:26:15,745Bean '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-14 17:26:15,755Bean '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-14 17:26:15,785Bean '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-14 17:26:15,822Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$abe64ca2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:26:15,825Bean '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-14 17:26:16,527Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 17:26:16,545Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 17:26:16,545Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 17:26:16,545Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 17:26:16,900Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 17:26:16,901Root WebApplicationContext: initialization completed in 8325 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 17:26:17,108 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 17:26:18,365{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 17:26:18,368dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 17:26:18,368dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 17:26:22,088 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 17:26:23,313Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 17:26:23,316Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 17:26:23,329Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 17:26:23,330Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 17:26:23,334Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 17:26:23,338JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 17:26:23,339Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676366783315' - 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-14 17:26:23,339Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 17:26:23,340Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 17:26:23,340JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@60052518setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 17:26:24,945 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 17:26:27,608Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 17:26:27,733 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 17:26:28,823Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 17:26:28,854Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 17:26:31,317Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 17:26:31,332Started LinkageSystemApplication in 23.879 seconds (JVM running for 25.434)logStartedStartupInfoLogger.java61
INFO2023-02-14 17:26:31,340 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 17:26:31,476 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 17:26:31,951Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 17:26:31,951Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 17:26:31,951Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 17:26:32,330Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 17:26:32,549Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366783315 started.startQuartzScheduler.java547
INFO2023-02-14 17:26:41,440【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:26:48,394【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:26:51,317【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:26:51,451排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:28:55,168Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366783315 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:28:55,303【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:28:55,325Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 17:28:55,327Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366783315 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 17:28:55,327Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366783315 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:28:55,328Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366783315 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 17:28:55,336dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 17:28:55,339{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 17:28:55,348{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 17:28:55,348dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
- - - - Logback Log Messages - - - - -
-

Log session start time Tue Feb 14 17:29:03 CST 2023

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 17:29:03,508HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 17:29:03,540Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 14256 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 17:29:03,540The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 17:29:06,970Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 17:29:06,970Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 17:29:07,360Finished Spring Data repository scanning in 370 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 17:29:07,548 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 17:29:07,548 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 17:29:07,564 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:07,829register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 17:29:08,220Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b#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-14 17:29:08,235Bean '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-14 17:29:08,235Bean '(inner bean)#3fef1e6b' 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-14 17:29:08,235Bean '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-14 17:29:08,266Bean '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-14 17:29:08,266Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,298Bean '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-14 17:29:08,345Bean '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-14 17:29:08,345Bean '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-14 17:29:08,345Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1491894897] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:29:08,470Bean '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-14 17:29:08,563Bean '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-14 17:29:08,579Bean '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-14 17:29:08,579Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$4839cedc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:29:08,897Bean '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-14 17:29:08,897Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$528bf7b4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:29:08,912Bean '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-14 17:29:08,959Bean '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-14 17:29:09,225===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 17:29:09,225===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 17:29:09,225Bean '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-14 17:29:09,240Bean '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-14 17:29:09,256Bean '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-14 17:29:09,287Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$fc166493] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 17:29:09,287Bean '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-14 17:29:09,732Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 17:29:09,748Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 17:29:09,749Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 17:29:09,749Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 17:29:10,064Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 17:29:10,064Root WebApplicationContext: initialization completed in 6462 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 17:29:10,229 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 17:29:11,212{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 17:29:11,214dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 17:29:11,215dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 17:29:14,579 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 17:29:15,851Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 17:29:15,854Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 17:29:15,867Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 17:29:15,868Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 17:29:15,873Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 17:29:15,876JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 17:29:15,877Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676366955853' - 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-14 17:29:15,878Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 17:29:15,878Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 17:29:15,878JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@67263db7setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 17:29:17,343 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 17:29:19,908Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 17:29:20,026 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 17:29:21,125Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 17:29:21,156Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 17:29:23,594Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 17:29:23,610Started LinkageSystemApplication in 20.993 seconds (JVM running for 22.383)logStartedStartupInfoLogger.java61
INFO2023-02-14 17:29:23,610 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 17:29:23,750 ----------------------------------------------------------- - Application Linkage-Boot is running! Access URLs: - Local: http://localhost:8080/linkage-boot/ - External: http://192.168.0.173:8080/linkage-boot/ - Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html -----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 17:29:24,405Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 17:29:24,405Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 17:29:24,408Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 17:29:24,600Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 17:29:24,849Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366955853 started.startQuartzScheduler.java547
INFO2023-02-14 17:29:28,535【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:31:08,679【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:31:10,011【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:31:30,552————————身份认证失败——————————IP地址: 0:0:0:0:0:0:0:1,URL:/linkage-boot/ttvirsualsortequipsecond/ttVirsualSortEquipSecond/queryPageListdoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 17:31:42,666排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 17:31:43,284======获取一级菜单数据=====耗时:16毫秒getSystemMenuListSysPermissionController.java140
INFO2023-02-14 17:32:07,168排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 17:32:07,263One record is expected, but the query result is multiple recordshandleExceptionJeecgBootExceptionHandler.java79
com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: One record is expected, but the query result is multiple records -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:176) -
    at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy342.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c39b8fe4.getOne(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.queryPageList(TtVirsualSortEquipSecondController.java:93) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$457376f8.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 17:32:07,651【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:32:11,723【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 17:32:11,786排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
ERROR2023-02-14 17:32:11,817One record is expected, but the query result is multiple recordshandleExceptionJeecgBootExceptionHandler.java79
com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: One record is expected, but the query result is multiple records -
    at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49) -
    at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:176) -
    at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) -
    at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) -
    at com.sun.proxy.$Proxy342.selectOne(Unknown Source) -
    at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) -
    at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) -
    at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) -
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.service.impl.TtVirsualSortEquipSecondServiceImpl$$EnhancerBySpringCGLIB$$c39b8fe4.getOne(<generated>) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController.queryPageList(TtVirsualSortEquipSecondController.java:93) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$FastClassBySpringCGLIB$$b4b877ae.invoke(<generated>) -
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) -
    at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:62) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) -
    at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) -
    at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) -
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) -
    at org.jeecg.modules.demo.ttvirsualsortequipsecond.controller.TtVirsualSortEquipSecondController$$EnhancerBySpringCGLIB$$457376f8.queryPageList(<generated>) -
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -
    at java.lang.reflect.Method.invoke(Method.java:498) -
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) -
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) -
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) -
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) -
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) -
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -
    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:670) -
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) -
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) -
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) -
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) -
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) -
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) -
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) -
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) -
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) -
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) -
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) -
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) -
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) -
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) -
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) -
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) -
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) -
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) -
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -
    at java.lang.Thread.run(Thread.java:748) -
INFO2023-02-14 17:34:10,016ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 17:34:10,017ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676367181624"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 17:34:54,913Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366955853 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:34:55,038ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 17:34:55,039ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676367181624"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 17:34:55,058【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 17:34:55,081Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 17:34:55,082Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366955853 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 17:34:55,082Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366955853 paused.standbyQuartzScheduler.java585
INFO2023-02-14 17:34:55,083Scheduler MyScheduler_$_DESKTOP-9EB22GD1676366955853 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 17:34:55,092dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 17:34:55,094{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 17:34:55,102{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 17:34:55,102dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221