whyclxw
2 天以前 a6cc744ff61cdea5453b8661694b1be0220f8533
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
2026-04-21 09:17:21 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 17124 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:17:21 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:17:22 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:17:22 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:17:22 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:17:23 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:17:23 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:17:23 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:17:23 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:17:23 [main] 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 'yamlProperties': Injection of autowired dependencies failed; nested exception is java.lang.IllegalStateException: either 'jasypt.encryptor.password', one of ['jasypt.encryptor.private-key-string', 'jasypt.encryptor.private-key-location'] for asymmetric encryption, or one of ['jasypt.encryptor.gcm-secret-key-string', 'jasypt.encryptor.gcm-secret-key-location', 'jasypt.encryptor.gcm-secret-key-password'] for AES/GCM encryption must be provided for Password-based or Asymmetric encryption
2026-04-21 09:17:23 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:18:33 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 7004 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:18:33 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:18:34 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:18:34 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:18:34 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:18:34 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:18:34 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:18:34 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:18:34 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:18:34 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$72efc6e0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e5a79efe] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:18:35 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:18:35 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:18:35 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:18:35 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:18:35 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:18:35 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2389 ms
2026-04-21 09:18:35 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:18:35 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:18:36 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:21:07 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 11508 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:21:07 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:21:08 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:21:08 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:21:08 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:21:08 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:21:08 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:21:08 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:21:08 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:21:08 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$980c7c88] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ac454a6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:21:09 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:21:09 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:21:09 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:21:09 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:21:10 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:21:10 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2345 ms
2026-04-21 09:21:10 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:21:10 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:21:10 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:22:28 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 8196 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:22:28 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:22:28 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:22:29 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:22:29 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:22:29 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:22:29 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:22:29 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:22:29 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:22:29 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$a42d1555] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$16e4ed73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:22:30 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:22:30 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:22:30 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:22:30 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:22:30 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:22:30 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2562 ms
2026-04-21 09:22:30 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'mybatisSqlExecuteService': Unsatisfied dependency expressed through field 'sqlSessionTemplate'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.mybatis.spring.SqlSessionTemplate' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
2026-04-21 09:22:30 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:22:31 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:23:12 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 15560 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:23:12 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:23:12 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:23:13 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:23:13 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:23:13 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:23:13 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:23:13 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:23:13 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:23:13 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:23:13 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:23:13 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:23:13 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:13 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:13 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$a1c07bc4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:23:14 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$15f7632] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$147853e2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:23:14 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:23:14 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:23:14 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:23:14 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:23:14 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:23:14 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2393 ms
2026-04-21 09:23:14 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:23:14 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:23:14 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:37:59 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 8756 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:37:59 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:38:00 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:38:00 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:38:00 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:38:01 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:38:01 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:38:01 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:38:01 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:38:01 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:38:01 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:38:01 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$c1dd5911] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$217c537f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$3495312f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:38:02 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:38:02 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:38:03 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:38:03 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:38:03 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:38:03 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3869 ms
2026-04-21 09:38:03 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:38:03 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:38:03 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:40:35 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 13648 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:40:35 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:40:36 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:40:36 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:40:36 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:40:36 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:40:37 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:40:37 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:40:37 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:40:37 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:40:37 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:40:37 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:40:37 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:37 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:37 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$2074a30a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:40:38 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$80139d78] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$932c7b28] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:40:38 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:40:38 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:40:38 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:40:38 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:40:38 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:40:38 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3487 ms
2026-04-21 09:40:39 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:40:39 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:40:39 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:41:16 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 9700 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:41:16 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:41:19 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:41:19 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:41:19 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:41:19 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:41:19 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:41:19 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:41:19 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:41:19 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:41:19 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:41:19 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$f8ffe658] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$589ee0c6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$6bb7be76] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:41:21 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:41:21 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:41:21 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:41:21 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:41:22 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:41:22 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 5318 ms
2026-04-21 09:41:22 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:41:22 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:41:22 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:42:50 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 3164 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:42:50 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:42:51 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:42:52 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:42:52 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:42:52 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:42:52 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:42:52 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:42:52 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:42:52 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:42:52 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:42:52 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$ec4930cf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$4be82b3d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5f0108ed] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:42:53 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:42:53 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:42:53 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:42:53 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:42:54 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:42:54 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3345 ms
2026-04-21 09:42:54 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:42:54 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:42:54 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:43:12 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 11832 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:43:12 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:43:14 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:43:14 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:43:14 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:43:14 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:43:14 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:43:14 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:43:14 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:43:14 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:43:14 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:43:14 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$44d8213c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$a4771baa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$b78ff95a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:15 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:43:16 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:43:16 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:43:16 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:43:16 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:43:16 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:43:16 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3259 ms
2026-04-21 09:43:16 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customExceptionResultHandler': Unsatisfied dependency expressed through field 'logService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userLogService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserLogMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:43:16 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:43:16 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:44:19 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 6280 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:44:19 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:44:20 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:44:20 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:44:20 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:44:21 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:44:21 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:44:21 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:44:21 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:44:21 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:44:21 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:44:21 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$9437b0dd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f3d6ab4b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$6ef88fb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:44:22 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:44:22 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:44:22 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:44:22 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:44:23 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:44:23 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 4041 ms
2026-04-21 09:44:24 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} inited
2026-04-21 09:44:24 [main] 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 'userBridgeService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.UserMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:44:24 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} closed
2026-04-21 09:44:24 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:44:24 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:45:07 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 8772 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:45:07 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:45:09 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:45:09 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:45:09 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:45:09 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:09 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:09 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:45:09 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:45:09 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:45:09 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:45:09 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$28703e3b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$880f38a9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$9b281659] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:10 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:11 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:45:11 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:45:11 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:45:11 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:45:11 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:45:11 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3343 ms
2026-04-21 09:45:12 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} inited
2026-04-21 09:45:12 [main] 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 'subTablePageInfoUtils': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.whyc.mapper.CommonMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2026-04-21 09:45:12 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} closed
2026-04-21 09:45:12 [main] INFO  o.a.catalina.core.StandardService [] - Stopping service [Tomcat]
2026-04-21 09:45:12 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLoggingListener [] - 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2026-04-21 09:45:53 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 7940 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:45:53 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:45:54 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:45:54 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:45:54 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:45:54 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:54 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:55 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:45:55 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:45:55 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:45:55 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:45:55 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$99fe7661] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:55 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:55 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f99d70cf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:56 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$cb64e7f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:56 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:45:56 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:45:56 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:45:56 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:45:56 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:45:56 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:45:56 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 3305 ms
2026-04-21 09:45:57 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} inited
2026-04-21 09:45:58 [main] INFO  s.d.s.w.PropertySourcedRequestMappingHandlerMapping [] - Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2026-04-21 09:45:58 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Context refreshed
2026-04-21 09:45:58 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Found 1 custom documentation plugin(s)
2026-04-21 09:45:58 [main] INFO  s.d.s.w.s.ApiListingReferenceScanner [] - Scanning for api listing references
2026-04-21 09:45:58 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Starting ProtocolHandler ["http-nio-8109"]
2026-04-21 09:45:58 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat started on port(s): 8109 (http) with context path '/pms'
2026-04-21 09:45:58 [main] INFO  c.u.j.c.RefreshScopeRefreshedEventListener [] - Refreshing cached encryptable property sources on ServletWebServerInitializedEvent
2026-04-21 09:45:58 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemProperties refreshed
2026-04-21 09:45:58 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemEnvironment refreshed
2026-04-21 09:45:58 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source random refreshed
2026-04-21 09:45:58 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application-dev.yml] refreshed
2026-04-21 09:45:58 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application.yml] refreshed
2026-04-21 09:45:58 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:45:58 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:45:58 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:45:58 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper
2026-04-21 09:45:58 [main] INFO  com.whyc.App [] - Started App in 6.439 seconds (JVM running for 8.163)
2026-04-21 09:55:46 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 16876 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:55:46 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:55:47 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:55:47 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:55:47 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:55:48 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:55:48 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:55:48 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:55:48 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:55:48 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:55:48 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:55:48 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$b33ec20e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$12ddbc7c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$25f69a2c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:55:48 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:55:48 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:55:48 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:55:48 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:55:49 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:55:49 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2613 ms
2026-04-21 09:55:49 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} inited
2026-04-21 09:55:50 [main] INFO  s.d.s.w.PropertySourcedRequestMappingHandlerMapping [] - Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2026-04-21 09:55:51 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Context refreshed
2026-04-21 09:55:51 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Found 1 custom documentation plugin(s)
2026-04-21 09:55:51 [main] INFO  s.d.s.w.s.ApiListingReferenceScanner [] - Scanning for api listing references
2026-04-21 09:55:51 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Starting ProtocolHandler ["http-nio-8109"]
2026-04-21 09:55:51 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat started on port(s): 8109 (http) with context path '/pms'
2026-04-21 09:55:51 [main] INFO  c.u.j.c.RefreshScopeRefreshedEventListener [] - Refreshing cached encryptable property sources on ServletWebServerInitializedEvent
2026-04-21 09:55:51 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemProperties refreshed
2026-04-21 09:55:51 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemEnvironment refreshed
2026-04-21 09:55:51 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source random refreshed
2026-04-21 09:55:51 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application-dev.yml] refreshed
2026-04-21 09:55:51 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application.yml] refreshed
2026-04-21 09:55:51 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:55:51 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:55:51 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:55:51 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper
2026-04-21 09:55:51 [main] INFO  com.whyc.App [] - Started App in 5.195 seconds (JVM running for 6.782)
2026-04-21 09:58:35 [http-nio-8109-exec-1] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-21 09:58:35 [http-nio-8109-exec-1] INFO  o.s.web.servlet.DispatcherServlet [] - Initializing Servlet 'dispatcherServlet'
2026-04-21 09:58:35 [http-nio-8109-exec-1] INFO  o.s.web.servlet.DispatcherServlet [] - Completed initialization in 8 ms
2026-04-21 09:58:35 [http-nio-8109-exec-1] INFO  o.a.s.s.m.AbstractValidatingSessionManager [] - Enabling session validation scheduler...
2026-04-21 09:58:56 [main] INFO  com.whyc.App [] - Starting App on DESKTOP-Q82RRVK with PID 18332 (E:\GitWorkSpace\PmsSystem\target\classes started by Administrator in E:\GitWorkSpace\PmsSystem)
2026-04-21 09:58:56 [main] INFO  com.whyc.App [] - The following profiles are active: dev
2026-04-21 09:58:57 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.com.whyc.mapper]' package. Please check your configuration.
2026-04-21 09:58:57 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:58:57 [main] WARN  o.m.s.mapper.ClassPathMapperScanner [] - No MyBatis mapper was found in '[com.whyc]' package. Please check your configuration.
2026-04-21 09:58:57 [main] INFO  c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [] - Post-processing PropertySource instances
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletContextInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:58:57 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource applicationConfig: [classpath:/config/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:58:57 [main] INFO  c.u.j.f.DefaultLazyPropertyFilter [] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2026-04-21 09:58:57 [main] INFO  c.u.j.r.DefaultLazyPropertyResolver [] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2026-04-21 09:58:57 [main] INFO  c.u.j.d.DefaultLazyPropertyDetector [] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2026-04-21 09:58:57 [main] INFO  c.u.j.encryptor.DefaultLazyEncryptor [] - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.key-obtention-iterations, using default value: 1000
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.pool-size, using default value: 1
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-name, using default value: null
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.provider-class-name, using default value: null
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.salt-generator-classname, using default value: org.jasypt.salt.RandomSaltGenerator
2026-04-21 09:58:57 [main] INFO  c.u.j.c.StringEncryptorBuilder [] - Encryptor config not found for property jasypt.encryptor.string-output-type, using default value: base64
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'yamlProperties' of type [com.whyc.constant.YamlProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'customRealm' of type [com.whyc.realm.CustomRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'shiroConfig' of type [com.whyc.config.ShiroConfig$$EnhancerBySpringCGLIB$$68af83eb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] WARN  com.whyc.properties.PropertiesUtil [] - 资源路径中不存在authentication.properties权限文件,忽略读取!
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'getAuthorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c84e7e59] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$db675c09] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:57 [main] INFO  o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [] - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2026-04-21 09:58:58 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat initialized with port(s): 8109 (http)
2026-04-21 09:58:58 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Initializing ProtocolHandler ["http-nio-8109"]
2026-04-21 09:58:58 [main] INFO  o.a.catalina.core.StandardService [] - Starting service [Tomcat]
2026-04-21 09:58:58 [main] INFO  o.a.catalina.core.StandardEngine [] - Starting Servlet engine: []
2026-04-21 09:58:58 [main] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring embedded WebApplicationContext
2026-04-21 09:58:58 [main] INFO  o.s.web.context.ContextLoader [] - Root WebApplicationContext: initialization completed in 2487 ms
2026-04-21 09:58:59 [main] INFO  c.alibaba.druid.pool.DruidDataSource [] - {dataSource-1} inited
2026-04-21 09:59:00 [main] INFO  s.d.s.w.PropertySourcedRequestMappingHandlerMapping [] - Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2026-04-21 09:59:00 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Context refreshed
2026-04-21 09:59:00 [main] INFO  s.d.s.w.p.DocumentationPluginsBootstrapper [] - Found 1 custom documentation plugin(s)
2026-04-21 09:59:00 [main] INFO  s.d.s.w.s.ApiListingReferenceScanner [] - Scanning for api listing references
2026-04-21 09:59:00 [main] INFO  o.a.coyote.http11.Http11NioProtocol [] - Starting ProtocolHandler ["http-nio-8109"]
2026-04-21 09:59:00 [main] INFO  o.s.b.w.e.tomcat.TomcatWebServer [] - Tomcat started on port(s): 8109 (http) with context path '/pms'
2026-04-21 09:59:00 [main] INFO  c.u.j.c.RefreshScopeRefreshedEventListener [] - Refreshing cached encryptable property sources on ServletWebServerInitializedEvent
2026-04-21 09:59:00 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemProperties refreshed
2026-04-21 09:59:00 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source systemEnvironment refreshed
2026-04-21 09:59:00 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source random refreshed
2026-04-21 09:59:00 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application-dev.yml] refreshed
2026-04-21 09:59:00 [main] INFO  c.u.j.c.CachingDelegateEncryptablePropertySource [] - Property Source applicationConfig: [classpath:/config/application.yml] refreshed
2026-04-21 09:59:00 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource server.ports [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2026-04-21 09:59:00 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource configurationProperties [class org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource
2026-04-21 09:59:00 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Skipping PropertySource servletConfigInitParams [class org.springframework.core.env.PropertySource$StubPropertySource
2026-04-21 09:59:00 [main] INFO  c.u.j.EncryptablePropertySourceConverter [] - Converting PropertySource servletContextInitParams [org.springframework.web.context.support.ServletContextPropertySource] to EncryptableEnumerablePropertySourceWrapper
2026-04-21 09:59:00 [main] INFO  com.whyc.App [] - Started App in 5.086 seconds (JVM running for 5.973)
2026-04-21 09:59:03 [http-nio-8109-exec-1] INFO  o.a.c.c.C.[.[localhost].[/pms] [] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-21 09:59:03 [http-nio-8109-exec-1] INFO  o.s.web.servlet.DispatcherServlet [] - Initializing Servlet 'dispatcherServlet'
2026-04-21 09:59:03 [http-nio-8109-exec-1] INFO  o.s.web.servlet.DispatcherServlet [] - Completed initialization in 6 ms
2026-04-21 09:59:03 [http-nio-8109-exec-1] INFO  o.a.s.s.m.AbstractValidatingSessionManager [] - Enabling session validation scheduler...