From b91d50da0d2ad227cb11c9af43edf60251e60960 Mon Sep 17 00:00:00 2001 From: PoffyZhang <99775271@qq.com> Date: Tue, 9 Apr 2024 09:18:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=8B=E9=A1=B9=E6=95=B0=E6=8D=AE=20?= =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 32 +++ .idea/.gitignore | 8 + .idea/compiler.xml | 24 ++ .idea/dataSources.xml | 12 + .idea/encodings.xml | 19 ++ .idea/jarRepositories.xml | 25 ++ .idea/jpa-buddy.xml | 7 + .idea/misc.xml | 16 ++ .idea/uiDesigner.xml | 124 +++++++++ .idea/vcs.xml | 6 + logs/error-20231031-0.log | 42 +++ logs/error-20231102-0.log | 73 ++++++ logs/error-20240103-0.log | 388 ++++++++++++++++++++++++++++ logs/error-20240104-0.log | 643 ++++++++++++++++++++++++++++++++++++++++++++++ logs/error-20240402-0.log | 134 ++++++++++ logs/error.log | 45 ++++ logs/info-20231122-0.log | 29 +++ logs/info-20240112-0.log | 69 +++++ logs/info-20240402-0.log | 456 ++++++++++++++++++++++++++++++++ logs/info.log | 610 +++++++++++++++++++++++++++++++++++++++++++ 20 files changed, 2762 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/dataSources.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/jpa-buddy.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 logs/error-20231031-0.log create mode 100644 logs/error-20231102-0.log create mode 100644 logs/error-20240103-0.log create mode 100644 logs/error-20240104-0.log create mode 100644 logs/error-20240402-0.log create mode 100644 logs/error.log create mode 100644 logs/info-20231122-0.log create mode 100644 logs/info-20240112-0.log create mode 100644 logs/info-20240402-0.log create mode 100644 logs/info.log diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc05296 --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +#忽略所有.svn目录 +.svn/ +#忽略所有target目录 +target/ +#忽略所有.idea目录 +.idea/ +#忽略所有.iml文件 +*.iml \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..9bfe0d6 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..f376c76 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,12 @@ + + + + + java.sql.Driver + true + true + com.kingbase8.Driver + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..b3f5ec3 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..af68372 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jpa-buddy.xml b/.idea/jpa-buddy.xml new file mode 100644 index 0000000..898e07a --- /dev/null +++ b/.idea/jpa-buddy.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..a80ca6f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/logs/error-20231031-0.log b/logs/error-20231031-0.log new file mode 100644 index 0000000..5d67f81 --- /dev/null +++ b/logs/error-20231031-0.log @@ -0,0 +1,42 @@ +2023-10-31 09:35:05.049 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ndKqZzsfwMenuController': Resolution of declared constructors on bean Class [com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@23fc2085] failed; nested exception is java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/manage/MatterManage + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:309) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1302) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1219) + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/manage/MatterManage + at java.lang.Class.getDeclaredConstructors0(Native Method) + at java.lang.Class.privateGetDeclaredConstructors(Class.java:2671) + at java.lang.Class.getDeclaredConstructors(Class.java:2020) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:304) + ... 23 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.zzsfw.manage.MatterManage + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + at java.lang.Class.forName0(Native Method) + at java.lang.Class.forName(Class.java:348) + at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:145) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 27 common frames omitted diff --git a/logs/error-20231102-0.log b/logs/error-20231102-0.log new file mode 100644 index 0000000..e73b2a6 --- /dev/null +++ b/logs/error-20231102-0.log @@ -0,0 +1,73 @@ +2023-11-02 11:03:02.248 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2023-11-02 11:03:02.982 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ndKqZzsfwMenuController': Resolution of declared constructors on bean Class [com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@3f5d98fd] failed; nested exception is java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/manage/MatterManage + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:309) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1302) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1219) + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/manage/MatterManage + at java.lang.Class.getDeclaredConstructors0(Native Method) + at java.lang.Class.privateGetDeclaredConstructors(Class.java:2671) + at java.lang.Class.getDeclaredConstructors(Class.java:2020) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:304) + ... 23 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.zzsfw.manage.MatterManage + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + at java.lang.Class.forName0(Native Method) + at java.lang.Class.forName(Class.java:348) + at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:145) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 27 common frames omitted +2023-11-02 11:55:26.170 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2023-11-02 11:55:27.074 [restartedMain] ERROR o.s.b.d.LoggingFailureAnalysisReporter - + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Parameter 0 of constructor in com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController required a bean of type 'com.ningdatech.kqapi.zzsfw.manage.MatterManage' that could not be found. + + +Action: + +Consider defining a bean of type 'com.ningdatech.kqapi.zzsfw.manage.MatterManage' in your configuration. + diff --git a/logs/error-20240103-0.log b/logs/error-20240103-0.log new file mode 100644 index 0000000..3a5d362 --- /dev/null +++ b/logs/error-20240103-0.log @@ -0,0 +1,388 @@ +2024-01-03 12:01:55.535 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mattersCacheHelperImpl' defined in file [D:\ningda\kq-value-added-project\kqapi\target\classes\com\ningdatech\kqapi\common\helper\impl\MattersCacheHelperImpl.class]: Invocation of init method failed; nested exception is org.springframework.dao.TransientDataAccessResourceException: +### Error querying database. Cause: java.sql.SQLException: Java heap space +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,update_date,update_type,ql_kind,ql_mainitem_id,ql_subitem_id,shiquancj,belongxiaqucode,ql_dep_orgcdoe,itemsource,version_number,version_date,ql_effect_time,ql_inner_code,ql_name,ql_state,lawbasis,anticipate_day,anticipate_type,promise_day,applyermin_count,is_pilot,ql_dep,lead_dept,bjtype,benjispxz,handle_frequency,xingzhenxdrxz,apply_condition,banjian_finishfiles,link_tel,supervise_tel,webapplyurl,webconsulturl,charge_flag,charge_basis,rightclass_qiyezt,rightclass_qiyedx,rightclass_gerensx,rightclass_gerendx,in_flow_info,material_info,material_case_info,chargeitem_info,qa_info,accept_address_info,sync_sign,sync_date,sync_error_desc,ouorgcode,ouguid,farenurl,gerenflag,is_tongjian,ql_full_id,entrust,entrustdes,applyermin_count_desc,outypecode,out_flow_desc,banjian_finishtype,is_specialpro,state2,nosuit_apply,is_unifydo,is_upunify,ql_att,baknote,webapplymode,itemsourcetype,is_simplepunish,is_levywaiver,feebasis,fact_info,is_cs,unifydodes,is_vlb,nounify_do,ql_inner_code_item,is_touzip,hangyeclasstype,ql_sub_kind,appwebapplyurl,appappointmenturl,appointmenturl,is_webappointment,webappointmentperiod,maincontext,do_dept,relatedguid,related,is_express,service_sub_kind,ispyc,lbsx,out_flow_url,acp_institution,dec_institution,content_involve,applicable_object,xingzhenxdrxy,count_limit,count_note,ban_requirement,shixiangsctype,shixiangsclx,apply_type,apply_type_tel,apply_type_mail,apply_type_fax,handle_type,mbfarenadd,mbgerenflag,destime,service_mode,service_day,ununifydo_other,ishasownflow,dt,dsc_city,dsc_adm_region,dsc_sydep_code,dsc_sydep_name,dsc_sydep_sys,dsc_sydep_tblname,dsc_biz_record_id,dsc_biz_operation,dsc_biz_timestamp,dsc_datasr_tblname,dsc_hash_unique,dsc_clean_timestamp,dsc_dw_rksj FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (webapplyurl IS NOT NULL) +### Cause: java.sql.SQLException: Java heap space +; Java heap space; nested exception is java.sql.SQLException: Java heap space + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1804) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: org.springframework.dao.TransientDataAccessResourceException: +### Error querying database. Cause: java.sql.SQLException: Java heap space +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,update_date,update_type,ql_kind,ql_mainitem_id,ql_subitem_id,shiquancj,belongxiaqucode,ql_dep_orgcdoe,itemsource,version_number,version_date,ql_effect_time,ql_inner_code,ql_name,ql_state,lawbasis,anticipate_day,anticipate_type,promise_day,applyermin_count,is_pilot,ql_dep,lead_dept,bjtype,benjispxz,handle_frequency,xingzhenxdrxz,apply_condition,banjian_finishfiles,link_tel,supervise_tel,webapplyurl,webconsulturl,charge_flag,charge_basis,rightclass_qiyezt,rightclass_qiyedx,rightclass_gerensx,rightclass_gerendx,in_flow_info,material_info,material_case_info,chargeitem_info,qa_info,accept_address_info,sync_sign,sync_date,sync_error_desc,ouorgcode,ouguid,farenurl,gerenflag,is_tongjian,ql_full_id,entrust,entrustdes,applyermin_count_desc,outypecode,out_flow_desc,banjian_finishtype,is_specialpro,state2,nosuit_apply,is_unifydo,is_upunify,ql_att,baknote,webapplymode,itemsourcetype,is_simplepunish,is_levywaiver,feebasis,fact_info,is_cs,unifydodes,is_vlb,nounify_do,ql_inner_code_item,is_touzip,hangyeclasstype,ql_sub_kind,appwebapplyurl,appappointmenturl,appointmenturl,is_webappointment,webappointmentperiod,maincontext,do_dept,relatedguid,related,is_express,service_sub_kind,ispyc,lbsx,out_flow_url,acp_institution,dec_institution,content_involve,applicable_object,xingzhenxdrxy,count_limit,count_note,ban_requirement,shixiangsctype,shixiangsclx,apply_type,apply_type_tel,apply_type_mail,apply_type_fax,handle_type,mbfarenadd,mbgerenflag,destime,service_mode,service_day,ununifydo_other,ishasownflow,dt,dsc_city,dsc_adm_region,dsc_sydep_code,dsc_sydep_name,dsc_sydep_sys,dsc_sydep_tblname,dsc_biz_record_id,dsc_biz_operation,dsc_biz_timestamp,dsc_datasr_tblname,dsc_hash_unique,dsc_clean_timestamp,dsc_dw_rksj FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (webapplyurl IS NOT NULL) +### Cause: java.sql.SQLException: Java heap space +; Java heap space; nested exception is java.sql.SQLException: Java heap space + at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:110) + at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) + at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) + 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.$Proxy89.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.$Proxy96.selectList(Unknown Source) + at com.baomidou.mybatisplus.extension.service.IService.list(IService.java:370) + at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke() + 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 com.ningdatech.kqapi.zzsfw.service.impl.DscSxAdsShareItemQltQlsxCommonIDVKqServiceImpl$$EnhancerBySpringCGLIB$$c85ff11a.list() + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.initMatterCache(AbstractMatterCacheHelper.java:45) + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.afterPropertiesSet(AbstractMatterCacheHelper.java:117) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800) + ... 21 common frames omitted +Caused by: java.sql.SQLException: Java heap space + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + 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.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy101.execute(Unknown Source) + 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.$Proxy99.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 com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy98.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) + ... 39 common frames omitted +Caused by: java.lang.OutOfMemoryError: Java heap space + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:133) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:66) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:75) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:42) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1651) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:87) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1664) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1718) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1064) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy101.execute(Unknown Source) + 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) +2024-01-03 14:05:05.622 [http-nio-33060-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] -Servlet.service() for servlet [dispatcherServlet] in context with path [/kq] threw exception [Request processing failed; nested exception is org.springframework.dao.RecoverableDataAccessException: +### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 161,119 milliseconds ago. The last packet sent successfully to the server was 161,134 milliseconds ago. +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,update_date,update_type,ql_kind,ql_mainitem_id,ql_subitem_id,shiquancj,belongxiaqucode,ql_dep_orgcdoe,itemsource,version_number,version_date,ql_effect_time,ql_inner_code,ql_name,ql_state,lawbasis,anticipate_day,anticipate_type,promise_day,applyermin_count,is_pilot,ql_dep,lead_dept,bjtype,benjispxz,handle_frequency,xingzhenxdrxz,apply_condition,banjian_finishfiles,link_tel,supervise_tel,webapplyurl,webconsulturl,charge_flag,charge_basis,rightclass_qiyezt,rightclass_qiyedx,rightclass_gerensx,rightclass_gerendx,in_flow_info,material_info,material_case_info,chargeitem_info,qa_info,accept_address_info,sync_sign,sync_date,sync_error_desc,ouorgcode,ouguid,farenurl,gerenflag,is_tongjian,ql_full_id,entrust,entrustdes,applyermin_count_desc,outypecode,out_flow_desc,banjian_finishtype,is_specialpro,state2,nosuit_apply,is_unifydo,is_upunify,ql_att,baknote,webapplymode,itemsourcetype,is_simplepunish,is_levywaiver,feebasis,fact_info,is_cs,unifydodes,is_vlb,nounify_do,ql_inner_code_item,is_touzip,hangyeclasstype,ql_sub_kind,appwebapplyurl,appappointmenturl,appointmenturl,is_webappointment,webappointmentperiod,maincontext,do_dept,relatedguid,related,is_express,service_sub_kind,ispyc,lbsx,out_flow_url,acp_institution,dec_institution,content_involve,applicable_object,xingzhenxdrxy,count_limit,count_note,ban_requirement,shixiangsctype,shixiangsclx,apply_type,apply_type_tel,apply_type_mail,apply_type_fax,handle_type,mbfarenadd,mbgerenflag,destime,service_mode,service_day,ununifydo_other,ishasownflow,dt,dsc_city,dsc_adm_region,dsc_sydep_code,dsc_sydep_name,dsc_sydep_sys,dsc_sydep_tblname,dsc_biz_record_id,dsc_biz_operation,dsc_biz_timestamp,dsc_datasr_tblname,dsc_hash_unique,dsc_clean_timestamp,dsc_dw_rksj FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (ql_name = ? AND webapplyurl IS NOT NULL) limit 1 +### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 161,119 milliseconds ago. The last packet sent successfully to the server was 161,134 milliseconds ago. +; Communications link failure + +The last packet successfully received from the server was 161,119 milliseconds ago. The last packet sent successfully to the server was 161,134 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 161,119 milliseconds ago. The last packet sent successfully to the server was 161,134 milliseconds ago.] with root cause +java.net.SocketException: Socket closed + at java.net.SocketInputStream.socketRead0(Native Method) + at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) + at java.net.SocketInputStream.read(SocketInputStream.java:171) + at java.net.SocketInputStream.read(SocketInputStream.java:141) + at com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107) + at com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150) + at com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180) + at java.io.FilterInputStream.read(FilterInputStream.java:133) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:137) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:66) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:576) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:72) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:40) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1651) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:68) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1664) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1718) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1064) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy102.execute(Unknown Source) + 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.$Proxy100.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 com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy99.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.$Proxy89.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.$Proxy96.selectList(Unknown Source) + at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) + 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.$Proxy96.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() + 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 com.ningdatech.kqapi.zzsfw.service.impl.DscSxAdsShareItemQltQlsxCommonIDVKqServiceImpl$$EnhancerBySpringCGLIB$$376d737b.getOne() + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.lambda$afterPropertiesSet$1(AbstractMatterCacheHelper.java:87) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$2(LocalLoadingCache.java:145) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2406) + at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1853) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2404) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2387) + at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:108) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:56) + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.getUrl(AbstractMatterCacheHelper.java:74) + at com.ningdatech.kqapi.common.helper.impl.MattersCacheHelperImpl.getUrl(MattersCacheHelperImpl.java:34) + at com.ningdatech.kqapi.zzsfw.manage.MatterManage.synData(MatterManage.java:168) + at com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController.synData(NdKqZzsfwMenuController.java:76) + at com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController$$FastClassBySpringCGLIB$$943ee7ef.invoke() + 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.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) + 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 com.ningdatech.kqapi.zzsfw.controller.NdKqZzsfwMenuController$$EnhancerBySpringCGLIB$$814133e1.synData() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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:1070) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-01-03 14:59:50.023 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mattersCacheHelperImpl': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@5aa49f65] + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:289) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1302) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1219) + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@5aa49f65] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:267) + ... 23 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/entity/entity/DscSxAdsShareItemQltQlsxCommonIDVKq + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 25 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.zzsfw.entity.entity.DscSxAdsShareItemQltQlsxCommonIDVKq + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + at java.lang.Class.forName0(Native Method) + at java.lang.Class.forName(Class.java:348) + at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:145) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 29 common frames omitted +2024-01-03 18:23:57.757 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mattersCacheHelperImpl': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@61eb5120] + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:289) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1302) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1219) + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@61eb5120] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:267) + ... 23 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/zzsfw/entity/entity/DscSxAdsShareItemQltQlsxCommonIDVKq + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 25 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.zzsfw.entity.entity.DscSxAdsShareItemQltQlsxCommonIDVKq + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + at java.lang.Class.forName0(Native Method) + at java.lang.Class.forName(Class.java:348) + at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:145) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 29 common frames omitted diff --git a/logs/error-20240104-0.log b/logs/error-20240104-0.log new file mode 100644 index 0000000..6fd5470 --- /dev/null +++ b/logs/error-20240104-0.log @@ -0,0 +1,643 @@ +2024-01-04 09:22:29.153 [http-nio-33060-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] -Servlet.service() for servlet [dispatcherServlet] in context with path [/kq] threw exception [Request processing failed; nested exception is org.springframework.dao.TransientDataAccessResourceException: +### Error querying database. Cause: java.sql.SQLException: Socket closed +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,ql_name,webapplyurl FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (webapplyurl IS NOT NULL) +### Cause: java.sql.SQLException: Socket closed +; Socket closed; nested exception is java.sql.SQLException: Socket closed] with root cause +java.net.SocketException: Socket closed + at java.net.SocketInputStream.socketRead0(Native Method) + at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) + at java.net.SocketInputStream.read(SocketInputStream.java:171) + at java.net.SocketInputStream.read(SocketInputStream.java:141) + at com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107) + at com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150) + at com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180) + at java.io.FilterInputStream.read(FilterInputStream.java:133) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:137) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:66) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:75) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:42) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1651) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:87) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1664) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1718) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1064) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy124.execute(Unknown Source) + 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.$Proxy122.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 com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy121.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.$Proxy89.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.$Proxy96.selectList(Unknown Source) + at com.baomidou.mybatisplus.extension.service.IService.list(IService.java:370) + at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke() + 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 com.ningdatech.kqapi.zzsfw.service.impl.DscSxAdsShareItemQltQlsxCommonIDVKqServiceImpl$$EnhancerBySpringCGLIB$$e742cfd4.list() + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.initMatterCache(AbstractMatterCacheHelper.java:47) + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.init(AbstractMatterCacheHelper.java:146) + at com.ningdatech.kqapi.common.helper.impl.MattersCacheHelperImpl.refreshAll(MattersCacheHelperImpl.java:44) + at com.ningdatech.kqapi.scheduler.task.SynTask.synData(SynTask.java:74) + at com.ningdatech.kqapi.scheduler.controller.TaskController.synMenu(TaskController.java:58) + at com.ningdatech.kqapi.scheduler.controller.TaskController$$FastClassBySpringCGLIB$$77ce55ac.invoke() + 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.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) + 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 com.ningdatech.kqapi.scheduler.controller.TaskController$$EnhancerBySpringCGLIB$$1494fee7.synMenu() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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:1070) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 09:22:29.153 [http-nio-33060-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] -Servlet.service() for servlet [dispatcherServlet] in context with path [/kq] threw exception [Request processing failed; nested exception is org.springframework.dao.RecoverableDataAccessException: +### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 200,393 milliseconds ago. The last packet sent successfully to the server was 200,409 milliseconds ago. +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,update_date,update_type,ql_kind,ql_mainitem_id,ql_subitem_id,shiquancj,belongxiaqucode,ql_dep_orgcdoe,itemsource,version_number,version_date,ql_effect_time,ql_inner_code,ql_name,ql_state,lawbasis,anticipate_day,anticipate_type,promise_day,applyermin_count,is_pilot,ql_dep,lead_dept,bjtype,benjispxz,handle_frequency,xingzhenxdrxz,apply_condition,banjian_finishfiles,link_tel,supervise_tel,webapplyurl,webconsulturl,charge_flag,charge_basis,rightclass_qiyezt,rightclass_qiyedx,rightclass_gerensx,rightclass_gerendx,in_flow_info,material_info,material_case_info,chargeitem_info,qa_info,accept_address_info,sync_sign,sync_date,sync_error_desc,ouorgcode,ouguid,farenurl,gerenflag,is_tongjian,ql_full_id,entrust,entrustdes,applyermin_count_desc,outypecode,out_flow_desc,banjian_finishtype,is_specialpro,state2,nosuit_apply,is_unifydo,is_upunify,ql_att,baknote,webapplymode,itemsourcetype,is_simplepunish,is_levywaiver,feebasis,fact_info,is_cs,unifydodes,is_vlb,nounify_do,ql_inner_code_item,is_touzip,hangyeclasstype,ql_sub_kind,appwebapplyurl,appappointmenturl,appointmenturl,is_webappointment,webappointmentperiod,maincontext,do_dept,relatedguid,related,is_express,service_sub_kind,ispyc,lbsx,out_flow_url,acp_institution,dec_institution,content_involve,applicable_object,xingzhenxdrxy,count_limit,count_note,ban_requirement,shixiangsctype,shixiangsclx,apply_type,apply_type_tel,apply_type_mail,apply_type_fax,handle_type,mbfarenadd,mbgerenflag,destime,service_mode,service_day,ununifydo_other,ishasownflow,dt,dsc_city,dsc_adm_region,dsc_sydep_code,dsc_sydep_name,dsc_sydep_sys,dsc_sydep_tblname,dsc_biz_record_id,dsc_biz_operation,dsc_biz_timestamp,dsc_datasr_tblname,dsc_hash_unique,dsc_clean_timestamp,dsc_dw_rksj FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (ql_name = ? AND webapplyurl IS NOT NULL) limit 1 +### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 200,393 milliseconds ago. The last packet sent successfully to the server was 200,409 milliseconds ago. +; Communications link failure + +The last packet successfully received from the server was 200,393 milliseconds ago. The last packet sent successfully to the server was 200,409 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 200,393 milliseconds ago. The last packet sent successfully to the server was 200,409 milliseconds ago.] with root cause +java.net.SocketException: Socket closed + at java.net.SocketInputStream.socketRead0(Native Method) + at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) + at java.net.SocketInputStream.read(SocketInputStream.java:171) + at java.net.SocketInputStream.read(SocketInputStream.java:141) + at com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107) + at com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150) + at com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180) + at java.io.FilterInputStream.read(FilterInputStream.java:133) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:137) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:66) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:576) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:72) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:40) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1651) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:68) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1664) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1718) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1064) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy124.execute(Unknown Source) + 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.$Proxy122.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 com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy121.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.$Proxy89.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.$Proxy96.selectList(Unknown Source) + at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) + 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.$Proxy96.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() + 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 com.ningdatech.kqapi.zzsfw.service.impl.DscSxAdsShareItemQltQlsxCommonIDVKqServiceImpl$$EnhancerBySpringCGLIB$$e742cfd4.getOne() + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.lambda$init$3(AbstractMatterCacheHelper.java:121) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$2(LocalLoadingCache.java:145) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2406) + at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1853) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2404) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2387) + at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:108) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:56) + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.getUrl(AbstractMatterCacheHelper.java:75) + at com.ningdatech.kqapi.common.helper.impl.MattersCacheHelperImpl.getUrl(MattersCacheHelperImpl.java:34) + at com.ningdatech.kqapi.scheduler.task.SynTask.synData(SynTask.java:82) + at com.ningdatech.kqapi.scheduler.controller.TaskController.synMenu(TaskController.java:58) + at com.ningdatech.kqapi.scheduler.controller.TaskController$$FastClassBySpringCGLIB$$77ce55ac.invoke() + 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.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) + 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 com.ningdatech.kqapi.scheduler.controller.TaskController$$EnhancerBySpringCGLIB$$1494fee7.synMenu() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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:1070) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 13:43:02.455 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 13:43:08.102 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:15:29.489 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:15:37.030 [http-nio-33060-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] -Servlet.service() for servlet [dispatcherServlet] in context with path [/kq] threw exception [Request processing failed; nested exception is org.springframework.dao.RecoverableDataAccessException: +### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 141,353 milliseconds ago. The last packet sent successfully to the server was 141,458 milliseconds ago. +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/DscSxAdsShareItemQltQlsxCommonIDVKqMapper.java (best guess) +### The error may involve defaultParameterMap +### The error occurred while setting parameters +### SQL: SELECT rowguid,update_date,update_type,ql_kind,ql_mainitem_id,ql_subitem_id,shiquancj,belongxiaqucode,ql_dep_orgcdoe,itemsource,version_number,version_date,ql_effect_time,ql_inner_code,ql_name,ql_state,lawbasis,anticipate_day,anticipate_type,promise_day,applyermin_count,is_pilot,ql_dep,lead_dept,bjtype,benjispxz,handle_frequency,xingzhenxdrxz,apply_condition,banjian_finishfiles,link_tel,supervise_tel,webapplyurl,webconsulturl,charge_flag,charge_basis,rightclass_qiyezt,rightclass_qiyedx,rightclass_gerensx,rightclass_gerendx,in_flow_info,material_info,material_case_info,chargeitem_info,qa_info,accept_address_info,sync_sign,sync_date,sync_error_desc,ouorgcode,ouguid,farenurl,gerenflag,is_tongjian,ql_full_id,entrust,entrustdes,applyermin_count_desc,outypecode,out_flow_desc,banjian_finishtype,is_specialpro,state2,nosuit_apply,is_unifydo,is_upunify,ql_att,baknote,webapplymode,itemsourcetype,is_simplepunish,is_levywaiver,feebasis,fact_info,is_cs,unifydodes,is_vlb,nounify_do,ql_inner_code_item,is_touzip,hangyeclasstype,ql_sub_kind,appwebapplyurl,appappointmenturl,appointmenturl,is_webappointment,webappointmentperiod,maincontext,do_dept,relatedguid,related,is_express,service_sub_kind,ispyc,lbsx,out_flow_url,acp_institution,dec_institution,content_involve,applicable_object,xingzhenxdrxy,count_limit,count_note,ban_requirement,shixiangsctype,shixiangsclx,apply_type,apply_type_tel,apply_type_mail,apply_type_fax,handle_type,mbfarenadd,mbgerenflag,destime,service_mode,service_day,ununifydo_other,ishasownflow,dt,dsc_city,dsc_adm_region,dsc_sydep_code,dsc_sydep_name,dsc_sydep_sys,dsc_sydep_tblname,dsc_biz_record_id,dsc_biz_operation,dsc_biz_timestamp,dsc_datasr_tblname,dsc_hash_unique,dsc_clean_timestamp,dsc_dw_rksj FROM dsc_sx_ads_share_item_qlt_qlsx_common_i_d_v_kq WHERE (ql_name = ? AND webapplyurl IS NOT NULL) limit 1 +### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 141,353 milliseconds ago. The last packet sent successfully to the server was 141,458 milliseconds ago. +; Communications link failure + +The last packet successfully received from the server was 141,353 milliseconds ago. The last packet sent successfully to the server was 141,458 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 141,353 milliseconds ago. The last packet sent successfully to the server was 141,458 milliseconds ago.] with root cause +java.net.SocketException: Socket closed + at java.net.SocketInputStream.socketRead0(Native Method) + at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) + at java.net.SocketInputStream.read(SocketInputStream.java:171) + at java.net.SocketInputStream.read(SocketInputStream.java:141) + at com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107) + at com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150) + at com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180) + at java.io.FilterInputStream.read(FilterInputStream.java:133) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:137) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:66) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:576) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:72) + at com.mysql.cj.protocol.a.ColumnDefinitionReader.read(ColumnDefinitionReader.java:40) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1651) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:68) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1664) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1718) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1064) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy126.execute(Unknown Source) + 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.$Proxy124.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 com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy123.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.$Proxy89.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.$Proxy96.selectList(Unknown Source) + at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) + 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.$Proxy96.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() + 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 com.ningdatech.kqapi.zzsfw.service.impl.DscSxAdsShareItemQltQlsxCommonIDVKqServiceImpl$$EnhancerBySpringCGLIB$$d3ce94f3.getOne() + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.lambda$init$3(AbstractMatterCacheHelper.java:130) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$2(LocalLoadingCache.java:145) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2406) + at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1892) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2404) + at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2387) + at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:108) + at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:56) + at com.ningdatech.kqapi.common.helper.basic.AbstractMatterCacheHelper.getUrl(AbstractMatterCacheHelper.java:84) + at com.ningdatech.kqapi.common.helper.impl.MattersCacheHelperImpl.getUrl(MattersCacheHelperImpl.java:34) + at com.ningdatech.kqapi.scheduler.task.SynTask.synData(SynTask.java:82) + at com.ningdatech.kqapi.scheduler.controller.TaskController.synMenu(TaskController.java:58) + at com.ningdatech.kqapi.scheduler.controller.TaskController$$FastClassBySpringCGLIB$$77ce55ac.invoke() + 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.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) + 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 com.ningdatech.kqapi.scheduler.controller.TaskController$$EnhancerBySpringCGLIB$$97e28b11.synMenu() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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:1070) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:15:42.048 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:32:04.107 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:32:11.610 [http-nio-33060-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] -Servlet.service() for servlet [dispatcherServlet] in context with path [/kq] threw exception [Request processing failed; nested exception is org.springframework.dao.RecoverableDataAccessException: +### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 69 milliseconds ago. The last packet sent successfully to the server was 69 milliseconds ago. +### The error may exist in com/ningdatech/kqapi/zzsfw/mapper/NdKqZzsfwMenuMapper.java (best guess) +### The error may involve com.ningdatech.kqapi.zzsfw.mapper.NdKqZzsfwMenuMapper.update-Inline +### The error occurred while setting parameters +### SQL: UPDATE nd_kq_zzsfw_menu SET webapplyurl=?,has_url=? WHERE (id = ?) +### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 69 milliseconds ago. The last packet sent successfully to the server was 69 milliseconds ago. +; Communications link failure + +The last packet successfully received from the server was 69 milliseconds ago. The last packet sent successfully to the server was 69 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure + +The last packet successfully received from the server was 69 milliseconds ago. The last packet sent successfully to the server was 69 milliseconds ago.] with root cause +java.net.SocketException: Socket closed + at java.net.SocketInputStream.socketRead0(Native Method) + at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) + at java.net.SocketInputStream.read(SocketInputStream.java:171) + at java.net.SocketInputStream.read(SocketInputStream.java:141) + at com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107) + at com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150) + at com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180) + at java.io.FilterInputStream.read(FilterInputStream.java:133) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readHeaderLocal(SimplePacketReader.java:81) + at com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63) + at com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54) + at com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:575) + at com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:761) + at com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:700) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1051) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:665) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:893) + at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) + 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.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) + at com.sun.proxy.$Proxy126.execute(Unknown Source) + at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) + at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) + at sun.reflect.GeneratedMethodAccessor120.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.$Proxy124.update(Unknown Source) + at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) + at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) + at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) + at sun.reflect.GeneratedMethodAccessor116.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.Invocation.proceed(Invocation.java:49) + at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) + at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) + at com.sun.proxy.$Proxy123.update(Unknown Source) + at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) + at sun.reflect.GeneratedMethodAccessor115.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.$Proxy89.update(Unknown Source) + at org.mybatis.spring.SqlSessionTemplate.update(SqlSessionTemplate.java:288) + at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:64) + 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.$Proxy102.update(Unknown Source) + at com.baomidou.mybatisplus.extension.service.IService.update(IService.java:258) + at com.baomidou.mybatisplus.extension.service.IService.update(IService.java:248) + at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke() + 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 com.ningdatech.kqapi.zzsfw.service.impl.NdKqZzsfwMenuServiceImpl$$EnhancerBySpringCGLIB$$691bb53c.update() + at com.ningdatech.kqapi.scheduler.task.SynTask.synMenu(SynTask.java:113) + at com.ningdatech.kqapi.scheduler.controller.TaskController.synMenuData(TaskController.java:65) + at com.ningdatech.kqapi.scheduler.controller.TaskController$$FastClassBySpringCGLIB$$77ce55ac.invoke() + 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.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) + 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 com.ningdatech.kqapi.scheduler.controller.TaskController$$EnhancerBySpringCGLIB$$820ca003.synMenuData() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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:1070) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-01-04 14:32:16.612 [http-nio-33060-Acceptor] ERROR org.apache.tomcat.util.net.Acceptor -Socket accept failed +java.nio.channels.AsynchronousCloseException: null + at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) + at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:547) + at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:79) + at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) + at java.lang.Thread.run(Thread.java:748) diff --git a/logs/error-20240402-0.log b/logs/error-20240402-0.log new file mode 100644 index 0000000..c246353 --- /dev/null +++ b/logs/error-20240402-0.log @@ -0,0 +1,134 @@ +2024-04-02 17:31:45.271 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'routerFunctionMapping' defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.function.support.RouterFunctionMapping]: Factory method 'routerFunctionMapping' threw exception; nested exception is java.lang.NullPointerException + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.function.support.RouterFunctionMapping]: Factory method 'routerFunctionMapping' threw exception; nested exception is java.lang.NullPointerException + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) + ... 24 common frames omitted +Caused by: java.lang.NullPointerException: null + at com.ningdatech.kqapi.common.util.SpringUtils.getBean(SpringUtils.java:64) + at com.ningdatech.kqapi.common.config.BeanConfig.configureMessageConverters(BeanConfig.java:136) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurerComposite.configureMessageConverters(WebMvcConfigurerComposite.java:137) + at org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration.configureMessageConverters(DelegatingWebMvcConfiguration.java:118) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.getMessageConverters(WebMvcConfigurationSupport.java:865) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.routerFunctionMapping(WebMvcConfigurationSupport.java:568) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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) + ... 25 common frames omitted +2024-04-02 17:33:22.321 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted +2024-04-02 17:37:40.478 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted diff --git a/logs/error.log b/logs/error.log new file mode 100644 index 0000000..d913943 --- /dev/null +++ b/logs/error.log @@ -0,0 +1,45 @@ +2024-04-07 15:47:33.218 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted diff --git a/logs/info-20231122-0.log b/logs/info-20231122-0.log new file mode 100644 index 0000000..429da0c --- /dev/null +++ b/logs/info-20231122-0.log @@ -0,0 +1,29 @@ +2023-11-22 16:44:53.770 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2023-11-22 16:44:53.775 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 26304 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2023-11-22 16:44:53.776 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2023-11-22 16:44:53.829 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2023-11-22 16:44:53.829 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2023-11-22 16:44:55.226 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2023-11-22 16:44:55.233 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2023-11-22 16:44:55.234 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2023-11-22 16:44:55.234 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2023-11-22 16:44:55.280 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2023-11-22 16:44:55.280 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1450 ms +2023-11-22 16:44:57.025 [restartedMain] INFO com.ningdatech.swagger.SwaggerConfig -swagger文档加载…… +2023-11-22 16:44:57.859 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2023-11-22 16:44:57.976 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2023-11-22 16:44:58.046 [restartedMain] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping -Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)] +2023-11-22 16:44:58.166 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2023-11-22 16:44:58.293 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2023-11-22 16:44:58.310 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2023-11-22 16:44:58.310 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Documentation plugins bootstrapped +2023-11-22 16:44:58.313 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Found 1 custom documentation plugin(s) +2023-11-22 16:44:58.337 [restartedMain] INFO s.d.s.w.s.ApiListingReferenceScanner -Scanning for api listing references +2023-11-22 16:44:58.444 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 5.135 seconds (JVM running for 6.658) +2023-11-22 16:45:27.831 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2023-11-22 16:45:27.831 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2023-11-22 16:45:27.832 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2023-11-22 16:45:27.938 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2023-11-22 16:45:28.349 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2023-11-22 18:06:02.928 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated... +2023-11-22 18:06:02.936 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed. diff --git a/logs/info-20240112-0.log b/logs/info-20240112-0.log new file mode 100644 index 0000000..e23328d --- /dev/null +++ b/logs/info-20240112-0.log @@ -0,0 +1,69 @@ +2024-01-12 10:46:52.783 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-01-12 10:46:52.790 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 16568 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-01-12 10:46:52.790 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-01-12 10:46:52.843 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-01-12 10:46:52.843 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-01-12 10:46:54.223 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-01-12 10:46:54.231 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-01-12 10:46:54.232 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-01-12 10:46:54.232 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-01-12 10:46:54.280 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-01-12 10:46:54.280 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1436 ms +2024-01-12 10:46:55.949 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-01-12 10:46:56.053 [restartedMain] INFO com.ningdatech.swagger.SwaggerConfig -swagger文档加载…… +2024-01-12 10:46:56.242 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-01-12 10:46:56.317 [restartedMain] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping -Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)] +2024-01-12 10:46:56.433 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-01-12 10:46:56.562 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-01-12 10:46:56.579 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-01-12 10:46:56.580 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Documentation plugins bootstrapped +2024-01-12 10:46:56.582 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Found 1 custom documentation plugin(s) +2024-01-12 10:46:56.609 [restartedMain] INFO s.d.s.w.s.ApiListingReferenceScanner -Scanning for api listing references +2024-01-12 10:46:56.766 [restartedMain] INFO s.d.s.w.r.o.CachingOperationNameGenerator -Generating unique operation named: removeAllUsingGET_1 +2024-01-12 10:46:56.769 [restartedMain] INFO s.d.s.w.r.o.CachingOperationNameGenerator -Generating unique operation named: saveUsingPOST_1 +2024-01-12 10:46:56.788 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.469 seconds (JVM running for 6.132) +2024-01-12 10:49:38.555 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-01-12 10:49:38.555 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-01-12 10:49:38.556 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-01-12 10:49:38.599 [http-nio-33060-exec-1] INFO c.n.kqapi.scheduler.task.SynTask -政务数据 ===================== 同步开始 +2024-01-12 10:49:38.665 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-01-12 10:49:39.144 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-01-12 10:51:56.444 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool -HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=47s162ms264µs700ns). +2024-01-12 10:59:27.887 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool -HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m43s983ms682µs500ns). +2024-01-12 11:01:04.320 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool -HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m36s433ms278µs300ns). +2024-01-12 11:05:41.977 [http-nio-33060-exec-6] INFO c.n.kqapi.scheduler.task.SynTask -政务数据 ===================== 同步开始 +2024-01-12 11:11:01.607 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool -HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=5m27s214ms75µs). +2024-01-12 11:11:03.371 [http-nio-33060-exec-9] INFO c.n.kqapi.scheduler.task.SynTask -政务数据 ===================== 同步开始 +2024-01-12 11:12:50.483 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-01-12 11:12:50.487 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 20516 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-01-12 11:12:50.487 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-01-12 11:12:50.536 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-01-12 11:12:50.537 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-01-12 11:12:51.824 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-01-12 11:12:51.832 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-01-12 11:12:51.833 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-01-12 11:12:51.833 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-01-12 11:12:51.880 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-01-12 11:12:51.880 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1343 ms +2024-01-12 11:12:53.540 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-01-12 11:12:53.679 [restartedMain] INFO com.ningdatech.swagger.SwaggerConfig -swagger文档加载…… +2024-01-12 11:12:53.897 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-01-12 11:12:53.971 [restartedMain] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping -Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)] +2024-01-12 11:12:54.078 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-01-12 11:12:54.324 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-01-12 11:12:54.346 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-01-12 11:12:54.347 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Documentation plugins bootstrapped +2024-01-12 11:12:54.351 [restartedMain] INFO s.d.s.w.p.DocumentationPluginsBootstrapper -Found 1 custom documentation plugin(s) +2024-01-12 11:12:54.394 [restartedMain] INFO s.d.s.w.s.ApiListingReferenceScanner -Scanning for api listing references +2024-01-12 11:12:54.621 [restartedMain] INFO s.d.s.w.r.o.CachingOperationNameGenerator -Generating unique operation named: removeAllUsingGET_1 +2024-01-12 11:12:54.624 [restartedMain] INFO s.d.s.w.r.o.CachingOperationNameGenerator -Generating unique operation named: saveUsingPOST_1 +2024-01-12 11:12:54.642 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.61 seconds (JVM running for 5.693) +2024-01-12 11:13:24.422 [http-nio-33060-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-01-12 11:13:24.422 [http-nio-33060-exec-2] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-01-12 11:13:24.423 [http-nio-33060-exec-2] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 0 ms +2024-01-12 11:13:24.466 [http-nio-33060-exec-2] INFO c.n.kqapi.scheduler.task.SynTask -政务数据 ===================== 同步开始 +2024-01-12 11:13:35.012 [http-nio-33060-exec-2] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-01-12 11:13:35.626 [http-nio-33060-exec-2] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-01-12 11:16:08.764 [http-nio-33060-exec-2] INFO c.n.kqapi.scheduler.task.SynTask -政务数据 ===================== 同步总共耗时 :164.2938508 s +2024-01-12 14:15:06.609 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated... +2024-01-12 14:15:06.616 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed. diff --git a/logs/info-20240402-0.log b/logs/info-20240402-0.log new file mode 100644 index 0000000..71a4c46 --- /dev/null +++ b/logs/info-20240402-0.log @@ -0,0 +1,456 @@ +2024-04-02 17:31:41.904 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-02 17:31:41.909 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33380 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:31:41.910 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:31:41.971 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-02 17:31:41.972 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-02 17:31:42.806 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:31:42.807 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:31:42.808 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:31:42.808 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:31:42.810 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:31:42.811 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:31:42.811 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:31:42.811 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:31:42.811 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:31:42.811 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:31:42.957 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:31:42.965 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:31:42.966 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:31:43.205 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:31:43.250 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:31:43.251 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:31:43.251 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:31:43.297 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:31:43.297 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1324 ms +2024-04-02 17:31:43.428 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-02 17:31:43.440 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-02 17:31:43.440 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-02 17:31:43.440 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-02 17:31:43.440 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-02 17:31:43.441 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-02 17:31:43.443 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-02 17:31:45.116 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-02 17:31:45.234 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext -Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'routerFunctionMapping' defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.function.support.RouterFunctionMapping]: Factory method 'routerFunctionMapping' threw exception; nested exception is java.lang.NullPointerException +2024-04-02 17:31:45.238 [restartedMain] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-02 17:31:45.247 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-04-02 17:31:45.271 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'routerFunctionMapping' defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.function.support.RouterFunctionMapping]: Factory method 'routerFunctionMapping' threw exception; nested exception is java.lang.NullPointerException + 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.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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.function.support.RouterFunctionMapping]: Factory method 'routerFunctionMapping' threw exception; nested exception is java.lang.NullPointerException + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) + ... 24 common frames omitted +Caused by: java.lang.NullPointerException: null + at com.ningdatech.kqapi.common.util.SpringUtils.getBean(SpringUtils.java:64) + at com.ningdatech.kqapi.common.config.BeanConfig.configureMessageConverters(BeanConfig.java:136) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurerComposite.configureMessageConverters(WebMvcConfigurerComposite.java:137) + at org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration.configureMessageConverters(DelegatingWebMvcConfiguration.java:118) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.getMessageConverters(WebMvcConfigurationSupport.java:865) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.routerFunctionMapping(WebMvcConfigurationSupport.java:568) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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) + ... 25 common frames omitted +2024-04-02 17:32:54.277 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-02 17:32:54.278 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33540 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:32:54.278 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:32:54.328 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-02 17:32:54.328 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-02 17:32:55.109 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:32:55.110 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:32:55.112 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:32:55.112 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:32:55.114 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:32:55.115 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:32:55.116 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:32:55.116 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:32:55.116 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:32:55.116 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:32:55.273 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:32:55.280 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:32:55.282 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:32:55.509 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:32:55.556 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:32:55.556 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:32:55.556 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:32:55.595 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:32:55.596 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1268 ms +2024-04-02 17:32:55.727 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-02 17:32:55.740 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-02 17:32:55.740 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-02 17:32:55.740 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-02 17:32:55.740 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-02 17:32:55.740 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-02 17:32:55.742 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-02 17:32:57.418 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-02 17:32:57.792 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-02 17:32:57.905 [restartedMain] WARN o.s.b.d.a.OptionalLiveReloadServer -Unable to start LiveReload server +2024-04-02 17:32:57.922 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-02 17:32:57.938 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-02 17:32:57.939 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:32:57.940 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:32:57.941 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-02 17:32:57.952 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.14 seconds (JVM running for 5.223) +2024-04-02 17:33:20.220 [File Watcher] INFO o.s.b.d.a.LocalDevToolsAutoConfiguration$RestartingClassPathChangeChangedEventListener -Restarting due to 126 class path changes (0 additions, 126 deletions, 0 modifications) +2024-04-02 17:33:21.106 [Thread-2] INFO o.a.coyote.http11.Http11NioProtocol -Pausing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:21.106 [Thread-2] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-02 17:33:21.111 [Thread-2] INFO o.a.coyote.http11.Http11NioProtocol -Stopping ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:21.114 [Thread-2] INFO o.a.coyote.http11.Http11NioProtocol -Destroying ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:21.456 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33540 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:33:21.457 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:33:21.729 [restartedMain] WARN o.m.s.mapper.ClassPathMapperScanner -No MyBatis mapper was found in '[com.ningdatech.kqapi.**.mapper]' package. Please check your configuration. +2024-04-02 17:33:21.804 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:33:21.805 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:21.806 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:21.806 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:21.846 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:33:21.851 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:33:21.851 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:33:22.072 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:33:22.073 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:22.073 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:33:22.074 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:33:22.090 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:33:22.091 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 627 ms +2024-04-02 17:33:22.161 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext -Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] +2024-04-02 17:33:22.162 [restartedMain] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-02 17:33:22.177 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-04-02 17:33:22.321 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted +2024-04-02 17:33:26.901 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33540 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:33:26.901 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:27.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:27.192 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:27.210 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:33:27.214 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:33:27.215 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:33:27.274 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:33:27.275 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:27.276 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:33:27.276 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:33:27.282 [restartedMain] INFO o.a.c.c.C.[.[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:33:27.282 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 378 ms +2024-04-02 17:33:27.329 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-02 17:33:27.333 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-02 17:33:27.928 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-02 17:33:28.019 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-02 17:33:28.041 [restartedMain] WARN o.s.b.d.a.OptionalLiveReloadServer -Unable to start LiveReload server +2024-04-02 17:33:28.049 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-02 17:33:28.051 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:33:28.052 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-02 17:33:28.055 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 1.19 seconds (JVM running for 35.326) +2024-04-02 17:33:28.056 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener -Condition evaluation unchanged +2024-04-02 17:37:39.416 [File Watcher] INFO o.s.b.d.a.LocalDevToolsAutoConfiguration$RestartingClassPathChangeChangedEventListener -Restarting due to 126 class path changes (0 additions, 126 deletions, 0 modifications) +2024-04-02 17:37:39.784 [Thread-17] INFO o.a.coyote.http11.Http11NioProtocol -Pausing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:39.785 [Thread-17] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-02 17:37:39.788 [Thread-17] INFO o.a.coyote.http11.Http11NioProtocol -Stopping ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:39.791 [Thread-17] INFO o.a.coyote.http11.Http11NioProtocol -Destroying ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:39.977 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33540 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:37:39.977 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:37:40.246 [restartedMain] WARN o.m.s.mapper.ClassPathMapperScanner -No MyBatis mapper was found in '[com.ningdatech.kqapi.**.mapper]' package. Please check your configuration. +2024-04-02 17:37:40.263 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:37:40.263 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:37:40.263 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:40.264 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:40.288 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:37:40.292 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:37:40.292 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:37:40.428 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:37:40.429 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:40.429 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:37:40.429 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:37:40.439 [restartedMain] INFO o.a.c.c.C.[.[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:37:40.440 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 460 ms +2024-04-02 17:37:40.463 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext -Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] +2024-04-02 17:37:40.463 [restartedMain] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-02 17:37:40.472 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-04-02 17:37:40.478 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted +2024-04-02 17:37:44.313 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 33540 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:37:44.313 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:44.659 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:44.678 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:37:44.682 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:37:44.682 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:37:44.753 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:37:44.755 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:44.755 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:37:44.755 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:37:44.767 [restartedMain] INFO o.a.c.c.C.[.[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:37:44.767 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 450 ms +2024-04-02 17:37:44.890 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-02 17:37:44.899 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-02 17:37:44.899 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-02 17:37:44.899 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-02 17:37:44.899 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-02 17:37:44.899 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-02 17:37:44.900 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-02 17:37:45.795 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-02 17:37:45.917 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-02 17:37:46.022 [restartedMain] WARN o.s.b.d.a.OptionalLiveReloadServer -Unable to start LiveReload server +2024-04-02 17:37:46.042 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-02 17:37:46.044 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-02 17:37:46.044 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-02 17:37:46.044 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-02 17:37:46.044 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:37:46.045 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-02 17:37:46.050 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 1.784 seconds (JVM running for 293.321) +2024-04-02 17:37:46.051 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener -Condition evaluation unchanged +2024-04-02 17:38:15.159 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-02 17:38:15.163 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 30208 (D:\gitPoffy\qyxszhfwpt\kqapi\target\classes started by PoffyZhang in D:\gitPoffy\qyxszhfwpt) +2024-04-02 17:38:15.163 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-02 17:38:15.212 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-02 17:38:15.212 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-02 17:38:15.989 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-02 17:38:15.990 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:38:15.991 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:38:15.991 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:38:15.992 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:38:15.993 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-02 17:38:15.994 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-02 17:38:15.994 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:38:15.994 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:38:15.994 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:38:16.139 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-02 17:38:16.146 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-02 17:38:16.148 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-02 17:38:16.369 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-02 17:38:16.410 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-02 17:38:16.410 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-02 17:38:16.410 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-02 17:38:16.451 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-02 17:38:16.451 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1238 ms +2024-04-02 17:38:16.577 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-02 17:38:16.588 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-02 17:38:16.588 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-02 17:38:16.588 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-02 17:38:16.588 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-02 17:38:16.589 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-02 17:38:16.591 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-02 17:38:18.302 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-02 17:38:18.618 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-02 17:38:18.731 [restartedMain] WARN o.s.b.d.a.OptionalLiveReloadServer -Unable to start LiveReload server +2024-04-02 17:38:18.749 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-02 17:38:18.765 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-02 17:38:18.767 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-02 17:38:18.768 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-02 17:38:18.769 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-02 17:38:18.781 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.092 seconds (JVM running for 5.141) +2024-04-02 17:38:30.702 [http-nio-33060-exec-3] INFO o.a.coyote.http11.Http11Processor -Error parsing HTTP request header + Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. +java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x02L0x010x000x02H0x030x030xe60x0a0x1890x830x7f0xc20x9e0xe10xc00x1a0x870x13J40xe0jv0x030x1d0xf2k0x8a0xae0x030xe60xeeq0x160xec0xb80xb6 ]. HTTP method names must be tokens + at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:419) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-04-02 17:38:30.702 [http-nio-33060-exec-1] INFO o.a.coyote.http11.Http11Processor -Error parsing HTTP request header + Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. +java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x02,0x010x000x02(0x030x030xf6D0xa80xfa0xd7X0xc30xe0tLrD0xca+e0x8e0x990xb00xe00xf30x9fr0xb1.i0xf00x80k0x980xa00x04= ]. HTTP method names must be tokens + at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:419) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-04-02 17:38:37.996 [http-nio-33060-exec-5] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-02 17:38:37.997 [http-nio-33060-exec-5] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-02 17:38:37.998 [http-nio-33060-exec-5] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-02 17:38:38.094 [http-nio-33060-exec-5] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-02 17:38:38.300 [http-nio-33060-exec-5] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-02 18:05:37.312 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated... +2024-04-02 18:05:37.320 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed. diff --git a/logs/info.log b/logs/info.log new file mode 100644 index 0000000..7a5278c --- /dev/null +++ b/logs/info.log @@ -0,0 +1,610 @@ +2024-04-07 14:45:05.263 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 14:45:05.269 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 29480 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 14:45:05.269 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 14:45:05.321 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 14:45:05.321 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 14:45:06.187 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 14:45:06.188 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:45:06.189 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:45:06.189 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:45:06.190 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:45:06.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 14:45:06.191 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 14:45:06.192 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:45:06.192 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:45:06.192 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:45:06.337 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 14:45:06.344 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 14:45:06.346 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 14:45:06.570 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 14:45:06.580 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 14:45:06.581 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 14:45:06.581 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 14:45:06.633 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 14:45:06.633 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1311 ms +2024-04-07 14:45:06.844 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 14:45:06.855 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 14:45:06.855 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 14:45:06.855 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 14:45:06.856 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 14:45:06.856 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 14:45:06.858 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 14:45:08.651 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 14:45:09.048 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 14:45:09.161 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 14:45:09.179 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 14:45:09.195 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 14:45:09.197 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 14:45:09.197 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 14:45:09.197 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 14:45:09.197 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 14:45:09.197 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:45:09.198 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 14:45:09.211 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.419 seconds (JVM running for 5.508) +2024-04-07 14:46:51.822 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 14:46:51.824 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 8672 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 14:46:51.825 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 14:46:51.871 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 14:46:51.871 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 14:46:52.642 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 14:46:52.643 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:46:52.644 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:46:52.644 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:46:52.645 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:46:52.646 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 14:46:52.646 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 14:46:52.647 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:46:52.647 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:46:52.647 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:46:52.782 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 14:46:52.789 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 14:46:52.791 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 14:46:53.013 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 14:46:53.055 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 14:46:53.056 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 14:46:53.056 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 14:46:53.100 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 14:46:53.100 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1229 ms +2024-04-07 14:46:53.230 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 14:46:53.241 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 14:46:53.242 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 14:46:53.242 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 14:46:53.242 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 14:46:53.242 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 14:46:53.244 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 14:46:55.040 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 14:46:55.362 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 14:46:55.469 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 14:46:55.486 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 14:46:55.502 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 14:46:55.503 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:46:55.504 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:46:55.505 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 14:46:55.517 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.146 seconds (JVM running for 5.2) +2024-04-07 14:49:58.802 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 14:49:58.803 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 14:49:58.804 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 14:49:59.302 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 14:49:59.879 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 14:50:00.011 [scheduling-1] INFO c.n.k.s.task.RemoveMattersTask -定时器没开启或者host不对! iZbp13nwyvib53j4j1p2xoZ:LAPTOP-NQGEQP03 +2024-04-07 14:56:45.498 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 27080 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 14:56:45.499 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 14:56:45.500 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 14:56:45.546 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 14:56:45.547 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 14:56:46.357 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 14:56:46.358 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:56:46.359 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:56:46.359 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:56:46.360 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:56:46.361 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 14:56:46.361 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 14:56:46.361 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:56:46.361 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:56:46.362 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:56:46.523 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 14:56:46.530 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 14:56:46.531 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 14:56:46.763 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 14:56:46.807 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 14:56:46.807 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 14:56:46.807 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 14:56:46.844 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 14:56:46.845 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1298 ms +2024-04-07 14:56:47.000 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 14:56:47.013 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 14:56:47.014 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 14:56:47.014 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 14:56:47.014 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 14:56:47.015 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 14:56:47.017 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 14:56:48.902 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 14:56:49.217 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 14:56:49.321 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 14:56:49.337 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 14:56:49.352 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 14:56:49.354 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 14:56:49.354 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 14:56:49.354 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 14:56:49.354 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 14:56:49.354 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 14:56:49.355 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 14:56:49.366 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.348 seconds (JVM running for 5.43) +2024-04-07 14:58:40.483 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 14:58:40.483 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 14:58:40.484 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 15:22:04.139 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 15:22:04.141 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 31072 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:22:04.141 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:22:04.194 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 15:22:04.194 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 15:22:04.991 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:22:04.992 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:22:04.993 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:22:04.993 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:22:04.994 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:22:04.995 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:22:04.996 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:22:04.996 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:22:04.996 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:22:04.996 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:22:05.193 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:22:05.204 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:22:05.207 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:22:05.461 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:22:05.506 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:22:05.506 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:22:05.506 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:22:05.552 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:22:05.552 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1357 ms +2024-04-07 15:22:05.685 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 15:22:05.698 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 15:22:05.698 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 15:22:05.699 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 15:22:05.699 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 15:22:05.699 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 15:22:05.701 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 15:22:07.457 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 15:22:07.774 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 15:22:07.878 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 15:22:07.894 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 15:22:07.910 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 15:22:07.912 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 15:22:07.912 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 15:22:07.912 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 15:22:07.912 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:22:07.913 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 15:22:07.925 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.232 seconds (JVM running for 5.381) +2024-04-07 15:22:43.839 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 15:22:43.839 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 15:22:43.840 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 15:22:43.944 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 15:22:44.400 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 15:30:03.040 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 15:30:03.045 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 22220 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:30:03.046 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:30:03.118 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 15:30:03.119 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 15:30:04.207 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:30:04.209 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:30:04.212 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:30:04.212 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:30:04.215 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:30:04.216 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:30:04.218 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:30:04.218 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:30:04.218 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:30:04.218 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:30:04.428 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:30:04.440 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:30:04.443 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:30:04.726 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:30:04.781 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:30:04.781 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:30:04.782 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:30:04.833 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:30:04.833 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1712 ms +2024-04-07 15:30:04.990 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 15:30:05.002 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 15:30:05.002 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 15:30:05.002 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 15:30:05.002 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 15:30:05.003 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 15:30:05.004 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 15:30:06.895 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 15:30:07.213 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 15:30:07.323 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 15:30:07.343 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 15:30:07.359 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 15:30:07.360 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 15:30:07.361 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 15:30:07.361 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 15:30:07.361 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 15:30:07.361 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:30:07.362 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 15:30:07.374 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.976 seconds (JVM running for 6.678) +2024-04-07 15:30:18.433 [http-nio-33060-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 15:30:18.434 [http-nio-33060-exec-2] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 15:30:18.435 [http-nio-33060-exec-2] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 15:30:18.540 [http-nio-33060-exec-2] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 15:30:19.742 [http-nio-33060-exec-2] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 15:38:05.155 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 15:38:05.157 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 26388 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:38:05.158 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:38:05.206 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 15:38:05.206 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 15:38:06.179 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:38:06.180 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:38:06.183 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:38:06.183 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:38:06.186 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:38:06.187 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:38:06.188 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:38:06.188 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:38:06.189 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:38:06.189 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:38:06.413 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:38:06.425 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:38:06.427 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:38:06.697 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:38:06.772 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:38:06.773 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:38:06.774 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:38:06.828 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:38:06.829 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1622 ms +2024-04-07 15:38:07.030 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 15:38:07.043 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 15:38:07.044 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 15:38:07.044 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 15:38:07.044 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 15:38:07.044 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 15:38:07.046 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 15:38:08.755 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 15:38:09.063 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 15:38:09.175 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 15:38:09.192 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 15:38:09.208 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 15:38:09.209 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 15:38:09.210 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:38:09.211 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:38:09.211 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:38:09.211 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 15:38:09.223 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.519 seconds (JVM running for 5.554) +2024-04-07 15:38:36.426 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 15:38:36.427 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 15:38:36.428 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 15:38:36.524 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 15:38:36.764 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 15:40:41.274 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 15:40:41.276 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 27560 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:40:41.277 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:40:41.323 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 15:40:41.324 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 15:40:42.098 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:40:42.099 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:40:42.100 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:40:42.100 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:40:42.101 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:40:42.102 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:40:42.102 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:40:42.102 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:40:42.102 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:40:42.102 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:40:42.237 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:40:42.244 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:40:42.246 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:40:42.484 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:40:42.524 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:40:42.525 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:40:42.525 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:40:42.593 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:40:42.594 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1270 ms +2024-04-07 15:40:42.730 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 15:40:42.741 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 15:40:42.742 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 15:40:42.742 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 15:40:42.742 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 15:40:42.742 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 15:40:42.744 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 15:40:44.478 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 15:40:44.833 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 15:40:44.939 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 15:40:44.957 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 15:40:44.972 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 15:40:44.974 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 15:40:44.974 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 15:40:44.974 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 15:40:44.974 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:40:44.975 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 15:40:44.986 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 4.141 seconds (JVM running for 5.198) +2024-04-07 15:40:52.524 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 15:40:52.524 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 15:40:52.525 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 15:40:52.623 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 15:40:52.981 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 15:47:31.767 [File Watcher] INFO o.s.b.d.a.LocalDevToolsAutoConfiguration$RestartingClassPathChangeChangedEventListener -Restarting due to 126 class path changes (0 additions, 126 deletions, 0 modifications) +2024-04-07 15:47:32.146 [Thread-12] INFO o.a.coyote.http11.Http11NioProtocol -Pausing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:32.146 [Thread-12] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-07 15:47:32.147 [Thread-12] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Destroying Spring FrameworkServlet 'dispatcherServlet' +2024-04-07 15:47:32.150 [Thread-12] WARN o.a.c.loader.WebappClassLoaderBase -The web application [kq] appears to have started a thread named [HikariPool-1 housekeeper] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread: + sun.misc.Unsafe.park(Native Method) + java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215) + java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078) + java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093) + java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809) + java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1067) + java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1127) + java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) + java.lang.Thread.run(Thread.java:748) +2024-04-07 15:47:32.150 [Thread-12] INFO o.a.coyote.http11.Http11NioProtocol -Stopping ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:32.152 [Thread-12] INFO o.a.coyote.http11.Http11NioProtocol -Destroying ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:32.157 [Thread-12] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated... +2024-04-07 15:47:32.163 [Thread-12] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed. +2024-04-07 15:47:32.388 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 27560 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:47:32.389 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:47:32.871 [restartedMain] WARN o.m.s.mapper.ClassPathMapperScanner -No MyBatis mapper was found in '[com.ningdatech.kqapi.**.mapper]' package. Please check your configuration. +2024-04-07 15:47:32.910 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:47:32.911 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:47:32.912 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:32.912 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:32.912 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:32.953 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:47:32.958 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:47:32.958 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:47:33.127 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:47:33.128 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:33.128 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:47:33.128 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:47:33.138 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:47:33.138 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 742 ms +2024-04-07 15:47:33.172 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext -Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] +2024-04-07 15:47:33.173 [restartedMain] INFO o.a.catalina.core.StandardService -Stopping service [Tomcat] +2024-04-07 15:47:33.181 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-04-07 15:47:33.218 [restartedMain] ERROR o.s.boot.SpringApplication -Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springContextHolder' defined in com.ningdatech.kqapi.App: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) + 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:420) + 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 com.ningdatech.kqapi.App.main(App.java:31) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.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.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.ningdatech.kqapi.common.util.SpringContextHolder] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2] + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) + at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) + at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + ... 20 common frames omitted +Caused by: java.lang.NoClassDefFoundError: com/ningdatech/kqapi/common/util/CallBack + at java.lang.Class.getDeclaredMethods0(Native Method) + at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) + at java.lang.Class.getDeclaredMethods(Class.java:1975) + at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) + ... 27 common frames omitted +Caused by: java.lang.ClassNotFoundException: com.ningdatech.kqapi.common.util.CallBack + at java.net.URLClassLoader.findClass(URLClassLoader.java:381) + at java.lang.ClassLoader.loadClass(ClassLoader.java:424) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) + at java.lang.ClassLoader.loadClass(ClassLoader.java:357) + ... 31 common frames omitted +2024-04-07 15:47:37.010 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 27560 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 15:47:37.010 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 15:47:37.315 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 15:47:37.315 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:47:37.315 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:37.316 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:37.335 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 15:47:37.338 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 15:47:37.338 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 15:47:37.456 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 15:47:37.458 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:37.458 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 15:47:37.459 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 15:47:37.469 [restartedMain] INFO o.a.c.c.C.[.[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 15:47:37.469 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 454 ms +2024-04-07 15:47:37.522 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 15:47:37.527 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 15:47:37.527 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 15:47:37.527 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 15:47:37.527 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 15:47:37.527 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 15:47:37.528 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 15:47:38.186 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 15:47:38.300 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 15:47:38.325 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 15:47:38.334 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 15:47:38.336 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 15:47:38.337 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 15:47:38.340 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 1.375 seconds (JVM running for 418.552) +2024-04-07 15:47:38.342 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener -Condition evaluation unchanged +2024-04-07 16:11:38.368 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 16:11:38.370 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 31144 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 16:11:38.370 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 16:11:38.417 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 16:11:38.417 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 16:11:39.143 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 16:11:39.144 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 16:11:39.144 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:11:39.145 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:11:39.146 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:11:39.147 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 16:11:39.147 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 16:11:39.147 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:11:39.147 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:11:39.147 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:11:39.283 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 16:11:39.290 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 16:11:39.291 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 16:11:39.501 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 16:11:39.540 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 16:11:39.541 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 16:11:39.541 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 16:11:39.580 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 16:11:39.580 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1163 ms +2024-04-07 16:11:39.702 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 16:11:39.712 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 16:11:39.712 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 16:11:39.712 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 16:11:39.713 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 16:11:39.713 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 16:11:39.714 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 16:11:41.334 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 16:11:41.643 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 16:11:41.747 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 16:11:41.765 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 16:11:41.780 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 16:11:41.782 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 16:11:41.782 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:11:41.783 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 16:11:41.796 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 3.865 seconds (JVM running for 4.912) +2024-04-07 16:13:21.125 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 16:13:21.126 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 16:13:21.126 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 0 ms +2024-04-07 16:13:21.222 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 16:13:21.446 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 16:14:21.679 [http-nio-33060-exec-2] WARN o.s.web.servlet.PageNotFound -No mapping for GET /kq/api/v1/task/windows +2024-04-07 16:17:58.168 [background-preinit] INFO o.h.validator.internal.util.Version -HV000001: Hibernate Validator 6.2.4.Final +2024-04-07 16:17:58.170 [restartedMain] INFO com.ningdatech.kqapi.App -Starting App using Java 1.8.0_131 on LAPTOP-NQGEQP03 with PID 28452 (D:\ningda\kq-value-added-project\kqapi\target\classes started by PoffyZhang in D:\ningda\kq-value-added-project) +2024-04-07 16:17:58.170 [restartedMain] INFO com.ningdatech.kqapi.App -The following 1 profile is active: "dev" +2024-04-07 16:17:58.217 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2024-04-07 16:17:58.217 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor -For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2024-04-07 16:17:59.001 [restartedMain] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor -Post-processing PropertySource instances +2024-04-07 16:17:59.002 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 16:17:59.003 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:17:59.003 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:17:59.004 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:17:59.005 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2024-04-07 16:17:59.006 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2024-04-07 16:17:59.006 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:17:59.006 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:17:59.006 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:17:59.164 [restartedMain] INFO c.u.j.f.DefaultLazyPropertyFilter -Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2024-04-07 16:17:59.171 [restartedMain] INFO c.u.j.r.DefaultLazyPropertyResolver -Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2024-04-07 16:17:59.172 [restartedMain] INFO c.u.j.d.DefaultLazyPropertyDetector -Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2024-04-07 16:17:59.412 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat initialized with port(s): 33060 (http) +2024-04-07 16:17:59.457 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-33060"] +2024-04-07 16:17:59.458 [restartedMain] INFO o.a.catalina.core.StandardService -Starting service [Tomcat] +2024-04-07 16:17:59.458 [restartedMain] INFO o.a.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/9.0.65] +2024-04-07 16:17:59.497 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring embedded WebApplicationContext +2024-04-07 16:17:59.498 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 1280 ms +2024-04-07 16:17:59.627 [restartedMain] INFO c.u.j.encryptor.DefaultLazyEncryptor -String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor +2024-04-07 16:17:59.638 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000 +2024-04-07 16:17:59.638 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1 +2024-04-07 16:17:59.638 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null +2024-04-07 16:17:59.638 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null +2024-04-07 16:17:59.638 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator +2024-04-07 16:17:59.640 [restartedMain] INFO c.u.j.c.StringEncryptorBuilder -Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64 +2024-04-07 16:18:01.240 [restartedMain] INFO c.n.kqapi.common.config.BeanConfig ------restTemplate-----初始化完成 +2024-04-07 16:18:01.554 [restartedMain] WARN o.s.b.a.f.FreeMarkerAutoConfiguration -Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false) +2024-04-07 16:18:01.658 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer -LiveReload server is running on port 35729 +2024-04-07 16:18:01.674 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-33060"] +2024-04-07 16:18:01.690 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer -Tomcat started on port(s): 33060 (http) with context path '/kq' +2024-04-07 16:18:01.691 [restartedMain] INFO c.u.j.c.RefreshScopeRefreshedEventListener -Refreshing cached encryptable property sources on ServletWebServerInitializedEvent +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemProperties refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source systemEnvironment refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source random refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application-dev.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source Config resource 'class path resource [application.yml]' via location 'optional:classpath:/' refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.c.CachingDelegateEncryptablePropertySource -Property Source devtools refreshed +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource +2024-04-07 16:18:01.692 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource +2024-04-07 16:18:01.693 [restartedMain] INFO c.u.j.EncryptablePropertySourceConverter -Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper +2024-04-07 16:18:01.704 [restartedMain] INFO com.ningdatech.kqapi.App -Started App in 3.987 seconds (JVM running for 4.99) +2024-04-07 16:18:08.522 [http-nio-33060-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/kq] -Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-04-07 16:18:08.522 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet' +2024-04-07 16:18:08.523 [http-nio-33060-exec-1] INFO o.s.web.servlet.DispatcherServlet -Completed initialization in 1 ms +2024-04-07 16:18:08.637 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting... +2024-04-07 16:18:08.872 [http-nio-33060-exec-1] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed. +2024-04-07 18:00:44.785 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated... +2024-04-07 18:00:44.792 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed.