springboot-logback-info.log
21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
2026-04-02 20:33:01,023 [main] INFO com.meishu.MeishuApplication:55 - Starting MeishuApplication using Java 1.8.0_201 on LAPTOP-KO8E5S7F with PID 15008 (D:\code\authen\target\classes started by everior in D:\code\authen)
2026-04-02 20:33:01,029 [main] INFO com.meishu.MeishuApplication:679 - The following profiles are active: dev
2026-04-02 20:33:02,202 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:108 - Tomcat initialized with port(s): 23451 (http)
2026-04-02 20:33:02,212 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-23451"]
2026-04-02 20:33:02,212 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2026-04-02 20:33:02,215 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.45]
2026-04-02 20:33:02,290 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2026-04-02 20:33:02,290 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext:289 - Root WebApplicationContext: initialization completed in 1209 ms
2026-04-02 20:33:02,469 [main] INFO com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure:56 - Init DruidDataSource
2026-04-02 20:33:03,589 [main] INFO com.alibaba.druid.pool.DruidDataSource:994 - {dataSource-1} inited
2026-04-02 20:33:04,223 [main] WARN org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext:591 - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'auth.ticket-expire' in value "${auth.ticket-expire}"
2026-04-02 20:33:04,223 [main] INFO com.alibaba.druid.pool.DruidDataSource:2029 - {dataSource-1} closing ...
2026-04-02 20:33:04,228 [main] INFO com.alibaba.druid.pool.DruidDataSource:2101 - {dataSource-1} closed
2026-04-02 20:33:04,230 [main] INFO org.apache.catalina.core.StandardService:173 - Stopping service [Tomcat]
2026-04-02 20:33:04,242 [main] INFO org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener:136 -
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-02 20:33:04,264 [main] ERROR org.springframework.boot.SpringApplication:871 - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'auth.ticket-expire' in value "${auth.ticket-expire}"
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1413)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:601)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:524)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:782)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:774)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:439)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:339)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1340)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1329)
at com.meishu.MeishuApplication.main(MeishuApplication.java:19)
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'auth.ticket-expire' in value "${auth.ticket-expire}"
at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178)
at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:124)
at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239)
at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:175)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:936)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1321)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399)
... 18 common frames omitted
2026-04-02 20:34:32,085 [main] INFO com.meishu.MeishuApplication:55 - Starting MeishuApplication using Java 1.8.0_201 on LAPTOP-KO8E5S7F with PID 8480 (D:\code\authen\target\classes started by everior in D:\code\authen)
2026-04-02 20:34:32,088 [main] INFO com.meishu.MeishuApplication:679 - The following profiles are active: dev
2026-04-02 20:34:33,281 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:108 - Tomcat initialized with port(s): 23451 (http)
2026-04-02 20:34:33,290 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-23451"]
2026-04-02 20:34:33,291 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2026-04-02 20:34:33,291 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.45]
2026-04-02 20:34:33,368 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2026-04-02 20:34:33,368 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext:289 - Root WebApplicationContext: initialization completed in 1155 ms
2026-04-02 20:34:33,535 [main] INFO com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure:56 - Init DruidDataSource
2026-04-02 20:34:34,603 [main] INFO com.alibaba.druid.pool.DruidDataSource:994 - {dataSource-1} inited
2026-04-02 20:34:35,326 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'applicationTaskExecutor'
2026-04-02 20:34:35,530 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2026-04-02 20:34:35,571 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-23451"]
2026-04-02 20:34:35,587 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 23451 (http) with context path ''
2026-04-02 20:34:35,598 [main] INFO com.meishu.MeishuApplication:61 - Started MeishuApplication in 4.165 seconds (JVM running for 5.098)
2026-04-02 20:35:25,091 [http-nio-23451-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-02 20:35:25,091 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2026-04-02 20:35:25,092 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 1 ms
2026-04-02 20:37:39,119 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2026-04-02 20:37:39,122 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'applicationTaskExecutor'
2026-04-02 20:37:39,122 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2029 - {dataSource-1} closing ...
2026-04-02 20:37:39,128 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2101 - {dataSource-1} closed
2026-04-02 20:37:43,483 [main] INFO com.meishu.MeishuApplication:55 - Starting MeishuApplication using Java 1.8.0_201 on LAPTOP-KO8E5S7F with PID 16092 (D:\code\authen\target\classes started by everior in D:\code\authen)
2026-04-02 20:37:43,486 [main] INFO com.meishu.MeishuApplication:679 - The following profiles are active: dev
2026-04-02 20:37:44,604 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:108 - Tomcat initialized with port(s): 23451 (http)
2026-04-02 20:37:44,613 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-23451"]
2026-04-02 20:37:44,614 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2026-04-02 20:37:44,614 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.45]
2026-04-02 20:37:44,699 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2026-04-02 20:37:44,699 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext:289 - Root WebApplicationContext: initialization completed in 1157 ms
2026-04-02 20:37:44,907 [main] INFO com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure:56 - Init DruidDataSource
2026-04-02 20:37:46,130 [main] INFO com.alibaba.druid.pool.DruidDataSource:994 - {dataSource-1} inited
2026-04-02 20:37:46,885 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'applicationTaskExecutor'
2026-04-02 20:37:47,101 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2026-04-02 20:37:47,153 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-23451"]
2026-04-02 20:37:47,172 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 23451 (http) with context path ''
2026-04-02 20:37:47,186 [main] INFO com.meishu.MeishuApplication:61 - Started MeishuApplication in 4.279 seconds (JVM running for 5.158)
2026-04-02 20:37:47,581 [http-nio-23451-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-02 20:37:47,581 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2026-04-02 20:37:47,582 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 1 ms
2026-04-02 20:38:03,639 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:38:03,639 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [null, null, org.apache.catalina.session.StandardSessionFacade@4ed238fa]
2026-04-02 20:38:31,946 [http-nio-23451-exec-2] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:38:31,947 [http-nio-23451-exec-2] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [null, null, org.apache.catalina.session.StandardSessionFacade@4ed238fa]
2026-04-02 20:39:29,019 [http-nio-23451-exec-3] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:39:29,020 [http-nio-23451-exec-3] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [admin,admin, 123456,123456, org.apache.catalina.session.StandardSessionFacade@4ed238fa]
2026-04-02 20:39:34,431 [http-nio-23451-exec-4] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:39:34,432 [http-nio-23451-exec-4] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [admin,admin, 123456,123456, org.apache.catalina.session.StandardSessionFacade@4ed238fa]
2026-04-02 20:39:51,850 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:39:51,850 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [admin, 123456, org.apache.catalina.session.StandardSessionFacade@4ed238fa]
2026-04-02 20:41:37,024 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2026-04-02 20:41:37,027 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'applicationTaskExecutor'
2026-04-02 20:41:37,028 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2029 - {dataSource-1} closing ...
2026-04-02 20:41:37,034 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2101 - {dataSource-1} closed
2026-04-02 20:41:41,405 [main] INFO com.meishu.MeishuApplication:55 - Starting MeishuApplication using Java 1.8.0_201 on LAPTOP-KO8E5S7F with PID 15396 (D:\code\authen\target\classes started by everior in D:\code\authen)
2026-04-02 20:41:41,408 [main] INFO com.meishu.MeishuApplication:679 - The following profiles are active: dev
2026-04-02 20:41:42,527 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:108 - Tomcat initialized with port(s): 23451 (http)
2026-04-02 20:41:42,536 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-23451"]
2026-04-02 20:41:42,537 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2026-04-02 20:41:42,537 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.45]
2026-04-02 20:41:42,610 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2026-04-02 20:41:42,611 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext:289 - Root WebApplicationContext: initialization completed in 1150 ms
2026-04-02 20:41:42,794 [main] INFO com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure:56 - Init DruidDataSource
2026-04-02 20:41:43,916 [main] INFO com.alibaba.druid.pool.DruidDataSource:994 - {dataSource-1} inited
2026-04-02 20:41:44,670 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'applicationTaskExecutor'
2026-04-02 20:41:44,914 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2026-04-02 20:41:44,953 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-23451"]
2026-04-02 20:41:44,972 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 23451 (http) with context path ''
2026-04-02 20:41:44,984 [main] INFO com.meishu.MeishuApplication:61 - Started MeishuApplication in 4.101 seconds (JVM running for 4.963)
2026-04-02 20:41:45,060 [http-nio-23451-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-02 20:41:45,060 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2026-04-02 20:41:45,060 [http-nio-23451-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 0 ms
2026-04-02 20:41:45,096 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/getTicket
2026-04-02 20:41:45,097 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [erp, org.apache.catalina.session.StandardSessionFacade@3e6afc05]
2026-04-02 20:42:28,485 [http-nio-23451-exec-2] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/getTicket
2026-04-02 20:42:28,486 [http-nio-23451-exec-2] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [erp, org.apache.catalina.session.StandardSessionFacade@3e6afc05]
2026-04-02 20:43:27,638 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/getTicket
2026-04-02 20:43:27,639 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [erp, org.apache.catalina.session.StandardSessionFacade@44c46392]
2026-04-02 20:47:11,506 [http-nio-23451-exec-8] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/login
2026-04-02 20:47:11,507 [http-nio-23451-exec-8] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [admin, 123456, org.apache.catalina.session.StandardSessionFacade@44c46392]
2026-04-02 20:47:56,976 [http-nio-23451-exec-10] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/getTicket
2026-04-02 20:47:56,977 [http-nio-23451-exec-10] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [erp, org.apache.catalina.session.StandardSessionFacade@44c46392]
2026-04-02 20:48:55,094 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/verifyTicket
2026-04-02 20:48:55,095 [http-nio-23451-exec-1] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [cc5b215dccdb4b16ad3b0b064767f8e1]
2026-04-02 20:49:00,082 [http-nio-23451-exec-4] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/verifyTicket
2026-04-02 20:49:00,083 [http-nio-23451-exec-4] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [cc5b215dccdb4b16ad3b0b064767f82]
2026-04-02 20:52:39,710 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/verifyTicket
2026-04-02 20:52:39,710 [http-nio-23451-exec-5] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [cc5b215dccdb4b16ad3b0b064767f81]
2026-04-02 20:53:17,294 [http-nio-23451-exec-6] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/verifyTicket
2026-04-02 20:53:17,294 [http-nio-23451-exec-6] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [cc5b215dccdb4b16ad3b0b064767f81]
2026-04-02 20:53:37,085 [http-nio-23451-exec-7] INFO com.meishu.common.configure.WebLogAspect:36 - ####requestUrl : http://localhost:23451/auth/verifyTicket
2026-04-02 20:53:37,086 [http-nio-23451-exec-7] INFO com.meishu.common.configure.WebLogAspect:37 - ####requestParam : [cc5b215dccdb4b16ad3b0b064767f8e1]
2026-04-02 21:47:40,024 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2026-04-02 21:47:40,027 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'applicationTaskExecutor'
2026-04-02 21:47:40,027 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2029 - {dataSource-1} closing ...
2026-04-02 21:47:40,029 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource:2101 - {dataSource-1} closed