-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzero.log
912 lines (908 loc) · 158 KB
/
zero.log
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
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
2022-04-02 20:08:49.572 INFO 244864 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Starting ZeroWebApplication using Java 11.0.12 on DESKTOP-O5SE1DB with PID 244864 (D:\moyang\code\web\zero\zero_web\target\classes started by moyang in D:\moyang\code\web\zero)
2022-04-02 20:08:49.619 INFO 244864 --- [restartedMain] com.moyang.zero.ZeroWebApplication : The following profiles are active: dev
2022-04-02 20:08:49.665 INFO 244864 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-04-02 20:08:49.665 INFO 244864 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-04-02 20:08:51.602 INFO 244864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-04-02 20:08:51.602 INFO 244864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-04-02 20:08:51.649 INFO 244864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 37 ms. Found 0 Redis repository interfaces.
2022-04-02 20:08:51.837 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.moyang.zero.config.ShiroConfig$$EnhancerBySpringCGLIB$$f3351123] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.915 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.915 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusConfig' of type [com.moyang.zero.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$b6aa8ebf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.930 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.930 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$1dba9e29] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.930 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.946 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:51.993 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [com.sun.proxy.$Proxy72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [com.sun.proxy.$Proxy73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.977 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [com.sun.proxy.$Proxy74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.993 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConfig' of type [com.moyang.zero.common.config.RedisConfig$$EnhancerBySpringCGLIB$$c2d288a0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.993 INFO 244864 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisPoolConfig
2022-04-02 20:08:52.993 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'jedisPoolConfig' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:52.993 INFO 244864 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisConnectionFactory
2022-04-02 20:08:53.024 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.071 INFO 244864 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : objectMapper: com.fasterxml.jackson.databind.ObjectMapper@2d479326
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'stringRedisTemplate' of type [org.springframework.data.redis.core.StringRedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisUtil' of type [com.moyang.zero.common.util.redis.RedisUtil] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberManager' of type [com.moyang.zero.manager.SysMemberManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberDetailService' of type [com.moyang.zero.service.auth.SysMemberDetailServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.086 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'myRealm' of type [com.moyang.zero.auth.realm.MyRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.196 INFO 244864 --- [restartedMain] trationDelegate$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)
2022-04-02 20:08:53.196 INFO 244864 --- [restartedMain] com.moyang.zero.config.ShiroConfig : ShiroFilterFactoryBean config init start ...
2022-04-02 20:08:53.227 INFO 244864 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 20:08:53.539 INFO 244864 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-04-02 20:08:53.555 INFO 244864 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-04-02 20:08:53.555 INFO 244864 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41]
2022-04-02 20:08:53.555 INFO 244864 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.2.30] using APR version [1.7.0].
2022-04-02 20:08:53.555 INFO 244864 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-04-02 20:08:53.555 INFO 244864 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-04-02 20:08:53.571 INFO 244864 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.1k 25 Mar 2021]
2022-04-02 20:08:53.664 INFO 244864 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-04-02 20:08:53.664 INFO 244864 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3999 ms
2022-04-02 20:08:54.305 INFO 244864 --- [restartedMain] c.moyang.zero.common.config.MinioConfig : initMinio start ...
2022-04-02 20:08:54.430 INFO 244864 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2022-04-02 20:08:55.008 INFO 244864 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2022-04-02 20:08:55.117 INFO 244864 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-04-02 20:08:55.133 INFO 244864 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Started ZeroWebApplication in 5.971 seconds (JVM running for 8.365)
2022-04-02 20:13:22.774 INFO 244864 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-04-02 20:13:22.776 INFO 244864 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-04-02 20:13:22.793 INFO 244864 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 13 ms
2022-04-02 20:13:22.897 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:22.898 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:22.899 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:23.263 INFO 244864 --- [http-nio-8080-exec-1] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
2022-04-02 20:13:23.871 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:23.871 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:23.871 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:23.887 ERROR 244864 --- [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [org.apache.shiro.authc.AuthenticationException: token已过期] with root cause
org.apache.shiro.authc.AuthenticationException: token已过期
at com.moyang.zero.auth.realm.MyRealm.doGetAuthenticationInfo(MyRealm.java:89) ~[classes/:na]
at org.apache.shiro.realm.AuthenticatingRealm.getAuthenticationInfo(AuthenticatingRealm.java:571) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.authc.pam.ModularRealmAuthenticator.doSingleRealmAuthentication(ModularRealmAuthenticator.java:180) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.authc.pam.ModularRealmAuthenticator.doAuthenticate(ModularRealmAuthenticator.java:267) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.authc.AbstractAuthenticator.authenticate(AbstractAuthenticator.java:198) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.mgt.AuthenticatingSecurityManager.authenticate(AuthenticatingSecurityManager.java:106) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.mgt.DefaultSecurityManager.login(DefaultSecurityManager.java:274) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.DelegatingSubject.login(DelegatingSubject.java:260) ~[shiro-core-1.4.0.jar:1.4.0]
at com.moyang.zero.auth.filter.JwtFilter.executeLogin(JwtFilter.java:55) ~[classes/:na]
at org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter.onAccessDenied(BasicHttpAuthenticationFilter.java:245) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.filter.AccessControlFilter.onAccessDenied(AccessControlFilter.java:133) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.filter.AccessControlFilter.onPreHandle(AccessControlFilter.java:162) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.filter.PathMatchingFilter.isFilterChainContinued(PathMatchingFilter.java:203) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.filter.PathMatchingFilter.preHandle(PathMatchingFilter.java:178) ~[shiro-web-1.4.0.jar:1.4.0]
at com.moyang.zero.auth.filter.JwtFilter.preHandle(JwtFilter.java:96) ~[classes/:na]
at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:131) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:125) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:449) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:365) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:362) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:125) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.3.jar:5.3.3]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.3.jar:5.3.3]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2022-04-02 20:13:35.080 INFO 244864 --- [http-nio-8080-exec-2] c.m.zero.controller.SysMemberController : 用户 emy == 墨阳人生2545 企图登陆系统
2022-04-02 20:13:35.096 INFO 244864 --- [http-nio-8080-exec-2] c.m.z.service.impl.SysMemberServiceImpl : 用户登录:emy == 墨阳人生2545
2022-04-02 20:13:35.321 INFO 244864 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:35.321 INFO 244864 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:35.322 INFO 244864 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:35.470 WARN 244864 --- [http-nio-8080-exec-4] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [133] milliseconds.
2022-04-02 20:13:35.610 INFO 244864 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:13:43.117 INFO 244864 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:43.120 INFO 244864 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:43.121 INFO 244864 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:43.149 INFO 244864 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:13:43.711 INFO 244864 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:43.713 INFO 244864 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:43.713 INFO 244864 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:43.740 INFO 244864 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:13:47.987 INFO 244864 --- [http-nio-8080-exec-10] c.m.zero.controller.SysMemberController : 用户 emy == 墨阳人生2545 企图登陆系统
2022-04-02 20:13:47.987 INFO 244864 --- [http-nio-8080-exec-10] c.m.z.service.impl.SysMemberServiceImpl : 用户登录:emy == 墨阳人生2545
2022-04-02 20:13:48.020 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:48.021 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:48.021 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:48.039 INFO 244864 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:13:48.448 INFO 244864 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:48.449 INFO 244864 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:48.449 INFO 244864 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:48.480 INFO 244864 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:13:54.842 INFO 244864 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 20:13:54.842 INFO 244864 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 20:13:54.842 INFO 244864 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 20:13:54.877 INFO 244864 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 20:23:53.436 WARN 244864 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 598401
2022-04-02 20:23:53.436 WARN 244864 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 600429
2022-04-02 20:33:53.399 WARN 244864 --- [http-nio-8080-exec-10] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599931
2022-04-02 20:43:53.396 WARN 244864 --- [http-nio-8080-exec-1] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599982
2022-04-02 20:53:53.403 WARN 244864 --- [http-nio-8080-exec-2] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599991
2022-04-02 21:03:53.393 WARN 244864 --- [http-nio-8080-exec-8] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599958
2022-04-02 21:13:53.407 WARN 244864 --- [http-nio-8080-exec-9] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599999
2022-04-02 21:23:53.417 WARN 244864 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599993
2022-04-02 21:33:53.415 WARN 244864 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 599977
2022-04-02 21:35:29.407 INFO 240668 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Starting ZeroWebApplication using Java 11.0.12 on DESKTOP-O5SE1DB with PID 240668 (D:\moyang\code\web\zero\zero_web\target\classes started by moyang in D:\moyang\code\web\zero)
2022-04-02 21:35:29.409 INFO 240668 --- [restartedMain] com.moyang.zero.ZeroWebApplication : The following profiles are active: dev
2022-04-02 21:35:29.448 INFO 240668 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-04-02 21:35:29.449 INFO 240668 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-04-02 21:35:30.024 INFO 240668 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-04-02 21:35:30.026 INFO 240668 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-04-02 21:35:30.075 INFO 240668 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 40 ms. Found 0 Redis repository interfaces.
2022-04-02 21:35:30.251 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.moyang.zero.config.ShiroConfig$$EnhancerBySpringCGLIB$$15f06e8d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.323 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.324 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusConfig' of type [com.moyang.zero.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$d965ec29] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.331 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.336 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$4075fb93] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.336 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.349 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:30.373 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.212 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.215 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.216 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.218 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [com.sun.proxy.$Proxy72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.218 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.219 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [com.sun.proxy.$Proxy73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.219 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.219 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [com.sun.proxy.$Proxy74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.223 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConfig' of type [com.moyang.zero.common.config.RedisConfig$$EnhancerBySpringCGLIB$$e58de60a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.225 INFO 240668 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisPoolConfig
2022-04-02 21:35:31.226 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'jedisPoolConfig' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.226 INFO 240668 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisConnectionFactory
2022-04-02 21:35:31.250 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.285 INFO 240668 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : objectMapper: com.fasterxml.jackson.databind.ObjectMapper@7507fb37
2022-04-02 21:35:31.291 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.292 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'stringRedisTemplate' of type [org.springframework.data.redis.core.StringRedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.292 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisUtil' of type [com.moyang.zero.common.util.redis.RedisUtil] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.292 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberManager' of type [com.moyang.zero.manager.SysMemberManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.293 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberDetailService' of type [com.moyang.zero.service.auth.SysMemberDetailServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.293 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'myRealm' of type [com.moyang.zero.auth.realm.MyRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.331 INFO 240668 --- [restartedMain] trationDelegate$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)
2022-04-02 21:35:31.331 INFO 240668 --- [restartedMain] com.moyang.zero.config.ShiroConfig : ShiroFilterFactoryBean config init start ...
2022-04-02 21:35:31.355 INFO 240668 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:35:31.619 INFO 240668 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-04-02 21:35:31.626 INFO 240668 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-04-02 21:35:31.626 INFO 240668 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41]
2022-04-02 21:35:31.627 INFO 240668 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.2.30] using APR version [1.7.0].
2022-04-02 21:35:31.627 INFO 240668 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-04-02 21:35:31.627 INFO 240668 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-04-02 21:35:31.629 INFO 240668 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.1k 25 Mar 2021]
2022-04-02 21:35:31.696 INFO 240668 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-04-02 21:35:31.696 INFO 240668 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2247 ms
2022-04-02 21:35:32.300 INFO 240668 --- [restartedMain] c.moyang.zero.common.config.MinioConfig : initMinio start ...
2022-04-02 21:35:32.435 INFO 240668 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2022-04-02 21:35:32.917 INFO 240668 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2022-04-02 21:35:33.011 INFO 240668 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-04-02 21:35:33.019 INFO 240668 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Started ZeroWebApplication in 3.95 seconds (JVM running for 4.988)
2022-04-02 21:35:39.511 INFO 240668 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-04-02 21:35:39.513 INFO 240668 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-04-02 21:35:39.514 INFO 240668 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-04-02 21:35:39.560 INFO 240668 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:35:39.561 INFO 240668 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:35:39.562 INFO 240668 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:35:39.943 INFO 240668 --- [http-nio-8080-exec-1] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
2022-04-02 21:35:40.363 WARN 240668 --- [http-nio-8080-exec-1] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [200] milliseconds.
2022-04-02 21:35:40.500 INFO 240668 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:35:40.644 INFO 240668 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:35:40.645 INFO 240668 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:35:40.645 INFO 240668 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:35:40.667 INFO 240668 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:35:40.965 ERROR 240668 --- [http-nio-8080-exec-2] c.m.z.advice.ZeroRestControllerAdvice : 统一异常处理
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 21
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.0.5.jar:2.0.5]
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440) ~[mybatis-spring-2.0.5.jar:2.0.5]
at com.sun.proxy.$Proxy71.selectOne(Unknown Source) ~[na:na]
at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159) ~[mybatis-spring-2.0.5.jar:2.0.5]
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:90) ~[mybatis-plus-core-3.4.1.jar:3.4.1]
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) ~[mybatis-plus-core-3.4.1.jar:3.4.1]
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.4.1.jar:3.4.1]
at com.sun.proxy.$Proxy100.selectOne(Unknown Source) ~[na:na]
at com.baomidou.mybatisplus.extension.conditions.query.ChainQuery.one(ChainQuery.java:48) ~[mybatis-plus-extension-3.4.1.jar:3.4.1]
at com.moyang.zero.manager.BlogUserManager.hasReadThisArticle(BlogUserManager.java:55) ~[classes/:na]
at com.moyang.zero.service.impl.BlogArticleServiceImpl.readBlogArticle(BlogArticleServiceImpl.java:244) ~[classes/:na]
at com.moyang.zero.service.impl.BlogArticleServiceImpl$$FastClassBySpringCGLIB$$200ffa4e.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) ~[spring-aop-5.3.3.jar:5.3.3]
at com.moyang.zero.service.impl.BlogArticleServiceImpl$$EnhancerBySpringCGLIB$$1f479df8.readBlogArticle(<generated>) ~[classes/:na]
at com.moyang.zero.service.impl.BlogArticleServiceImpl$$FastClassBySpringCGLIB$$200ffa4e.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) ~[spring-tx-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) ~[spring-aop-5.3.3.jar:5.3.3]
at com.moyang.zero.service.impl.BlogArticleServiceImpl$$EnhancerBySpringCGLIB$$d5c1fa8a.readBlogArticle(<generated>) ~[classes/:na]
at com.moyang.zero.controller.BlogArticleController.readBlog(BlogArticleController.java:128) ~[classes/:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:344) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:782) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.apache.shiro.spring.security.interceptor.AopAllianceAnnotationsAuthorizingMethodInterceptor$1.proceed(AopAllianceAnnotationsAuthorizingMethodInterceptor.java:82) ~[shiro-spring-1.4.0.jar:1.4.0]
at org.apache.shiro.authz.aop.AuthorizingMethodInterceptor.invoke(AuthorizingMethodInterceptor.java:39) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.spring.security.interceptor.AopAllianceAnnotationsAuthorizingMethodInterceptor.invoke(AopAllianceAnnotationsAuthorizingMethodInterceptor.java:115) ~[shiro-spring-1.4.0.jar:1.4.0]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) ~[spring-aop-5.3.3.jar:5.3.3]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) ~[spring-aop-5.3.3.jar:5.3.3]
at com.moyang.zero.controller.BlogArticleController$$EnhancerBySpringCGLIB$$f08e2a2e.readBlog(<generated>) ~[classes/:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.3.jar:5.3.3]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) ~[spring-webmvc-5.3.3.jar:5.3.3]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) ~[tomcat-embed-core-9.0.41.jar:4.0.FR]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.3.jar:5.3.3]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) ~[tomcat-embed-core-9.0.41.jar:4.0.FR]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:125) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:449) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:365) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) ~[shiro-core-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:362) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:125) ~[shiro-web-1.4.0.jar:1.4.0]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.3.jar:5.3.3]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.3.jar:5.3.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.3.jar:5.3.3]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.41.jar:9.0.41]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
Caused by: org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 21
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:80) ~[mybatis-3.5.6.jar:3.5.6]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426) ~[mybatis-spring-2.0.5.jar:2.0.5]
... 110 common frames omitted
2022-04-02 21:35:40.980 WARN 240668 --- [http-nio-8080-exec-2] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 21]
2022-04-02 21:35:41.235 INFO 240668 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:35:41.240 INFO 240668 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:35:41.241 INFO 240668 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:35:41.390 INFO 240668 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:37:20.909 INFO 237252 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Starting ZeroWebApplication using Java 11.0.12 on DESKTOP-O5SE1DB with PID 237252 (D:\moyang\code\web\zero\zero_web\target\classes started by moyang in D:\moyang\code\web\zero)
2022-04-02 21:37:20.911 INFO 237252 --- [restartedMain] com.moyang.zero.ZeroWebApplication : The following profiles are active: dev
2022-04-02 21:37:20.947 INFO 237252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-04-02 21:37:20.947 INFO 237252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-04-02 21:37:21.544 INFO 237252 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-04-02 21:37:21.546 INFO 237252 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-04-02 21:37:21.591 INFO 237252 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 37 ms. Found 0 Redis repository interfaces.
2022-04-02 21:37:21.758 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.moyang.zero.config.ShiroConfig$$EnhancerBySpringCGLIB$$310c3e56] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.831 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.833 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusConfig' of type [com.moyang.zero.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$f481bbf2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.840 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.844 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$5b91cb5c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.845 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.857 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:21.880 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.729 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.732 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.732 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.734 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [com.sun.proxy.$Proxy72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.735 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.736 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [com.sun.proxy.$Proxy73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.736 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.737 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [com.sun.proxy.$Proxy74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.741 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConfig' of type [com.moyang.zero.common.config.RedisConfig$$EnhancerBySpringCGLIB$$a9b5d3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.743 INFO 237252 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisPoolConfig
2022-04-02 21:37:22.744 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'jedisPoolConfig' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.745 INFO 237252 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisConnectionFactory
2022-04-02 21:37:22.771 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.807 INFO 237252 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : objectMapper: com.fasterxml.jackson.databind.ObjectMapper@5da6e961
2022-04-02 21:37:22.813 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.815 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'stringRedisTemplate' of type [org.springframework.data.redis.core.StringRedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.815 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisUtil' of type [com.moyang.zero.common.util.redis.RedisUtil] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.815 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberManager' of type [com.moyang.zero.manager.SysMemberManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.815 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberDetailService' of type [com.moyang.zero.service.auth.SysMemberDetailServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.816 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'myRealm' of type [com.moyang.zero.auth.realm.MyRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:22.849 INFO 237252 --- [restartedMain] trationDelegate$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)
2022-04-02 21:37:22.849 INFO 237252 --- [restartedMain] com.moyang.zero.config.ShiroConfig : ShiroFilterFactoryBean config init start ...
2022-04-02 21:37:22.872 INFO 237252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 21:37:23.155 INFO 237252 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-04-02 21:37:23.163 INFO 237252 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-04-02 21:37:23.163 INFO 237252 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41]
2022-04-02 21:37:23.165 INFO 237252 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.2.30] using APR version [1.7.0].
2022-04-02 21:37:23.165 INFO 237252 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-04-02 21:37:23.165 INFO 237252 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-04-02 21:37:23.168 INFO 237252 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.1k 25 Mar 2021]
2022-04-02 21:37:23.246 INFO 237252 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-04-02 21:37:23.246 INFO 237252 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2298 ms
2022-04-02 21:37:23.871 INFO 237252 --- [restartedMain] c.moyang.zero.common.config.MinioConfig : initMinio start ...
2022-04-02 21:37:24.013 INFO 237252 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2022-04-02 21:37:24.511 INFO 237252 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2022-04-02 21:37:24.615 INFO 237252 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-04-02 21:37:24.624 INFO 237252 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Started ZeroWebApplication in 4.018 seconds (JVM running for 4.926)
2022-04-02 21:37:38.500 INFO 237252 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-04-02 21:37:38.502 INFO 237252 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-04-02 21:37:38.503 INFO 237252 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-04-02 21:37:38.555 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:37:38.555 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:37:38.559 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:37:38.871 INFO 237252 --- [http-nio-8080-exec-1] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
2022-04-02 21:37:39.286 WARN 237252 --- [http-nio-8080-exec-1] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [166] milliseconds.
2022-04-02 21:37:39.461 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:37:39.626 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:37:39.626 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:37:39.626 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:37:39.748 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:37:43.615 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:37:43.617 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:37:43.617 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:37:43.664 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:37:46.326 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:37:46.327 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:37:46.327 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:37:46.350 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:37:59.180 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:37:59.182 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:37:59.182 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:37:59.201 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:40:06.718 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:40:06.718 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:40:06.718 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:40:06.731 WARN 237252 --- [http-nio-8080-exec-1] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 127517
2022-04-02 21:40:06.843 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:40:07.277 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:40:07.278 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:40:07.279 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:40:07.299 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:40:51.984 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:40:51.984 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:40:51.985 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:40:52.004 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:42:50.653 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:42:50.654 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:42:50.654 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:42:50.662 WARN 237252 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 118573
2022-04-02 21:42:50.739 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:43:38.350 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:43:38.351 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:43:38.351 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:43:38.365 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:43:45.159 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:43:45.161 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:43:45.161 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:43:45.182 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:43:45.655 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:43:45.656 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:43:45.656 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:43:45.682 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:44:10.390 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:44:10.390 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:44:10.390 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:44:10.415 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:46:16.499 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:46:16.499 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:46:16.499 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:46:16.508 WARN 237252 --- [http-nio-8080-exec-10] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 126085
2022-04-02 21:46:16.625 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:46:17.089 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:46:17.090 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:46:17.090 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:46:17.115 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:46:18.788 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:46:18.790 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:46:18.791 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:46:18.810 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:46:49.197 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:46:49.198 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:46:49.199 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:46:49.225 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:51:47.747 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:51:47.748 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:51:47.748 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:51:47.755 WARN 237252 --- [http-nio-8080-exec-3] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 298521
2022-04-02 21:51:47.818 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:51:48.296 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:51:48.296 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:51:48.296 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:51:48.310 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:53:33.849 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:53:33.850 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:53:33.850 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:53:33.852 WARN 237252 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 105471
2022-04-02 21:53:33.927 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:53:34.393 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:53:34.393 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:53:34.394 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:53:34.407 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:56:21.455 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:56:21.455 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:56:21.455 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:56:21.458 WARN 237252 --- [http-nio-8080-exec-8] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 166975
2022-04-02 21:56:21.534 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:56:21.989 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:56:21.990 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:56:21.990 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:56:22.014 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:57:57.129 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:57:57.129 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:57:57.129 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:57:57.131 WARN 237252 --- [http-nio-8080-exec-10] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 95016
2022-04-02 21:57:57.207 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:57:57.636 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:57:57.636 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:57:57.636 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:57:57.660 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:58:48.305 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:58:48.305 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:58:48.305 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:58:48.331 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 21:58:48.794 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 21:58:48.795 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 21:58:48.796 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 21:58:48.822 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:06:51.947 WARN 237252 --- [http-nio-8080-exec-3] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 483070
2022-04-02 22:06:56.442 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:06:56.442 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:06:56.442 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:06:56.485 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:08:17.415 WARN 237252 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 80108
2022-04-02 22:08:17.416 WARN 237252 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 80471
2022-04-02 22:08:17.418 WARN 237252 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 80477
2022-04-02 22:09:45.825 WARN 237252 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 88385
2022-04-02 22:09:53.035 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:09:53.037 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:09:53.037 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:09:53.086 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:09:53.623 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:09:53.623 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:09:53.624 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:09:53.660 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:10:03.937 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:10:03.938 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:10:03.938 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:10:03.958 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:10:04.056 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:10:04.057 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:10:04.057 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:10:04.087 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:13:16.721 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:13:16.721 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:13:16.721 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:13:16.726 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 188139
2022-04-02 22:13:16.732 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 188150
2022-04-02 22:13:16.738 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 188175
2022-04-02 22:13:16.814 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:13:19.503 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:13:19.503 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:13:19.503 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:13:19.515 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:15:10.251 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:15:10.251 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:15:10.251 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:15:10.253 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 106058
2022-04-02 22:15:10.255 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 106084
2022-04-02 22:15:10.293 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:18:01.273 WARN 237252 --- [http-nio-8080-exec-9] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 170949
2022-04-02 22:18:03.391 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:18:03.391 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:18:03.391 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:18:03.438 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:20:25.955 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:20:25.955 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:20:25.955 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:20:25.958 WARN 237252 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 142461
2022-04-02 22:20:25.960 WARN 237252 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 144353
2022-04-02 22:20:26.033 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:20:26.496 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:20:26.496 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:20:26.497 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:20:26.517 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:20:38.440 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:20:38.441 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:20:38.441 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:20:38.461 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:20:38.940 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:20:38.941 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:20:38.941 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:20:38.957 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:23:12.837 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:23:12.838 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:23:12.838 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:23:12.841 WARN 237252 --- [http-nio-8080-exec-7] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 153853
2022-04-02 22:23:12.906 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:23:13.404 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:23:13.404 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:23:13.405 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:23:13.417 INFO 237252 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:25:57.089 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:25:57.090 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:25:57.090 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:25:57.095 WARN 237252 --- [http-nio-8080-exec-10] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 163629
2022-04-02 22:25:57.157 INFO 237252 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:26:08.671 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:26:08.671 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:26:08.671 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:26:08.682 INFO 237252 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:26:15.145 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:26:15.145 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:26:15.145 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:26:15.164 INFO 237252 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:26:15.626 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:26:15.627 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:26:15.627 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:26:15.638 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:26:27.647 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:26:27.648 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:26:27.648 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:26:27.661 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:26:58.807 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:26:58.807 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:26:58.808 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:26:58.821 INFO 237252 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:27:05.067 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:27:05.067 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:27:05.067 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:27:05.079 INFO 237252 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:27:05.563 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:27:05.563 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:27:05.563 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:27:05.576 INFO 237252 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:45:10.648 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:45:10.648 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:45:10.648 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:45:10.650 WARN 237252 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 1085049
2022-04-02 22:45:10.651 WARN 237252 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 1093444
2022-04-02 22:45:10.691 INFO 237252 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:45:51.172 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:45:51.173 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:45:51.173 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:45:51.188 INFO 237252 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 22:46:17.632 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 22:46:17.632 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 22:46:17.632 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 22:46:17.642 INFO 237252 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:03:16.690 INFO 244976 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Starting ZeroWebApplication using Java 11.0.12 on DESKTOP-O5SE1DB with PID 244976 (D:\moyang\code\web\zero\zero_web\target\classes started by moyang in D:\moyang\code\web\zero)
2022-04-02 23:03:16.693 INFO 244976 --- [restartedMain] com.moyang.zero.ZeroWebApplication : The following profiles are active: dev
2022-04-02 23:03:16.733 INFO 244976 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-04-02 23:03:16.733 INFO 244976 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-04-02 23:03:17.393 INFO 244976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-04-02 23:03:17.395 INFO 244976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-04-02 23:03:17.442 INFO 244976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 37 ms. Found 0 Redis repository interfaces.
2022-04-02 23:03:17.608 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.moyang.zero.config.ShiroConfig$$EnhancerBySpringCGLIB$$c84890a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.677 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.680 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusConfig' of type [com.moyang.zero.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$cffa06a6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.688 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.692 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$370a1610] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.693 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.706 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:17.734 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.161 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.169 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.170 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.172 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [com.sun.proxy.$Proxy72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.173 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.174 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [com.sun.proxy.$Proxy73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.175 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.177 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [com.sun.proxy.$Proxy74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.183 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConfig' of type [com.moyang.zero.common.config.RedisConfig$$EnhancerBySpringCGLIB$$dc220087] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.185 INFO 244976 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisPoolConfig
2022-04-02 23:03:19.187 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'jedisPoolConfig' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.187 INFO 244976 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisConnectionFactory
2022-04-02 23:03:19.237 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.284 INFO 244976 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : objectMapper: com.fasterxml.jackson.databind.ObjectMapper@704267dd
2022-04-02 23:03:19.292 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.293 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'stringRedisTemplate' of type [org.springframework.data.redis.core.StringRedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.293 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisUtil' of type [com.moyang.zero.common.util.redis.RedisUtil] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.294 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberManager' of type [com.moyang.zero.manager.SysMemberManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.294 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberDetailService' of type [com.moyang.zero.service.auth.SysMemberDetailServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.294 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'myRealm' of type [com.moyang.zero.auth.realm.MyRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:19.336 INFO 244976 --- [restartedMain] trationDelegate$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)
2022-04-02 23:03:19.336 INFO 244976 --- [restartedMain] com.moyang.zero.config.ShiroConfig : ShiroFilterFactoryBean config init start ...
2022-04-02 23:03:19.371 INFO 244976 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:03:20.102 INFO 244976 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-04-02 23:03:20.112 INFO 244976 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-04-02 23:03:20.113 INFO 244976 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41]
2022-04-02 23:03:20.114 INFO 244976 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.2.30] using APR version [1.7.0].
2022-04-02 23:03:20.115 INFO 244976 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-04-02 23:03:20.115 INFO 244976 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-04-02 23:03:20.118 INFO 244976 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.1k 25 Mar 2021]
2022-04-02 23:03:20.198 INFO 244976 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-04-02 23:03:20.198 INFO 244976 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3464 ms
2022-04-02 23:03:20.961 INFO 244976 --- [restartedMain] c.moyang.zero.common.config.MinioConfig : initMinio start ...
2022-04-02 23:03:21.102 INFO 244976 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2022-04-02 23:03:22.068 INFO 244976 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2022-04-02 23:03:22.199 INFO 244976 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-04-02 23:03:22.209 INFO 244976 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Started ZeroWebApplication in 5.852 seconds (JVM running for 6.848)
2022-04-02 23:10:03.378 INFO 244976 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-04-02 23:10:03.379 INFO 244976 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-04-02 23:10:03.381 INFO 244976 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-04-02 23:10:03.411 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:10:03.411 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:10:03.412 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:10:03.545 INFO 244976 --- [http-nio-8080-exec-1] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
2022-04-02 23:10:03.894 WARN 244976 --- [http-nio-8080-exec-1] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [174] milliseconds.
2022-04-02 23:10:04.015 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:10:11.045 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:10:11.045 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:10:11.045 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:10:11.075 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:10:11.570 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:10:11.571 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:10:11.571 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:10:11.591 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:11:02.464 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:11:02.465 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:11:02.465 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:11:02.490 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:11:02.968 INFO 244976 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:11:02.968 INFO 244976 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:11:02.968 INFO 244976 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:11:02.985 INFO 244976 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:13:07.635 INFO 244976 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:13:07.684 WARN 244976 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 124629
2022-04-02 23:13:19.963 INFO 244976 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:13:25.183 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:13:25.183 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:13:25.183 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:13:25.198 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:13:25.674 INFO 244976 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:13:25.674 INFO 244976 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:13:25.674 INFO 244976 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:13:25.687 INFO 244976 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:13:25.704 INFO 244976 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:14:31.535 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:14:31.540 WARN 244976 --- [http-nio-8080-exec-1] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 65776
2022-04-02 23:14:31.543 WARN 244976 --- [http-nio-8080-exec-1] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 65788
2022-04-02 23:14:37.611 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:14:37.611 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:14:37.611 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:14:37.625 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:14:38.110 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:14:38.110 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:14:38.110 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:14:38.126 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:14:38.140 INFO 244976 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:16:14.390 INFO 244976 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:16:14.403 WARN 244976 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 96182
2022-04-02 23:16:14.411 WARN 244976 --- [http-nio-8080-exec-6] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 96199
2022-04-02 23:19:57.620 INFO 244976 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:19:57.626 WARN 244976 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 223160
2022-04-02 23:20:02.033 INFO 244976 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:20:02.033 INFO 244976 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:20:02.033 INFO 244976 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:20:02.057 INFO 244976 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:02.553 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:20:02.554 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:20:02.554 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:20:02.566 INFO 244976 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:02.577 INFO 244976 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:16.193 INFO 244976 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:20:16.193 INFO 244976 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:20:16.193 INFO 244976 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:20:16.240 INFO 244976 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:31.680 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:20:31.681 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:20:31.681 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:20:31.702 INFO 244976 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:32.239 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:20:32.240 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:20:32.241 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:20:32.255 INFO 244976 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:20:32.269 INFO 244976 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:21:01.924 INFO 246496 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Starting ZeroWebApplication using Java 11.0.12 on DESKTOP-O5SE1DB with PID 246496 (D:\moyang\code\web\zero\zero_web\target\classes started by moyang in D:\moyang\code\web\zero)
2022-04-02 23:21:01.927 INFO 246496 --- [restartedMain] com.moyang.zero.ZeroWebApplication : The following profiles are active: dev
2022-04-02 23:21:01.970 INFO 246496 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-04-02 23:21:01.970 INFO 246496 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-04-02 23:21:02.809 INFO 246496 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-04-02 23:21:02.810 INFO 246496 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-04-02 23:21:02.876 INFO 246496 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 56 ms. Found 0 Redis repository interfaces.
2022-04-02 23:21:03.099 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.moyang.zero.config.ShiroConfig$$EnhancerBySpringCGLIB$$a5ccde0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.186 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.188 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusConfig' of type [com.moyang.zero.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$69425baa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.202 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'mybatisPlusInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.205 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$d0526b14] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.206 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Generic] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.217 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' of type [org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:03.245 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.234 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.237 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.238 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.241 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberMapper' of type [com.sun.proxy.$Proxy72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.242 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.243 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysRoleMapper' of type [com.sun.proxy.$Proxy73] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.243 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.244 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysPrivilegeMapper' of type [com.sun.proxy.$Proxy74] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.255 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConfig' of type [com.moyang.zero.common.config.RedisConfig$$EnhancerBySpringCGLIB$$756a558b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.261 INFO 246496 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisPoolConfig
2022-04-02 23:21:04.262 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'jedisPoolConfig' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.262 INFO 246496 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : 初始化JedisConnectionFactory
2022-04-02 23:21:04.292 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.337 INFO 246496 --- [restartedMain] c.moyang.zero.common.config.RedisConfig : objectMapper: com.fasterxml.jackson.databind.ObjectMapper@46f1192
2022-04-02 23:21:04.343 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.344 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'stringRedisTemplate' of type [org.springframework.data.redis.core.StringRedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.344 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'redisUtil' of type [com.moyang.zero.common.util.redis.RedisUtil] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.344 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberManager' of type [com.moyang.zero.manager.SysMemberManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.345 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'sysMemberDetailService' of type [com.moyang.zero.service.auth.SysMemberDetailServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.345 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'myRealm' of type [com.moyang.zero.auth.realm.MyRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.393 INFO 246496 --- [restartedMain] trationDelegate$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)
2022-04-02 23:21:04.393 INFO 246496 --- [restartedMain] com.moyang.zero.config.ShiroConfig : ShiroFilterFactoryBean config init start ...
2022-04-02 23:21:04.423 INFO 246496 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-04-02 23:21:04.736 INFO 246496 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-04-02 23:21:04.744 INFO 246496 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-04-02 23:21:04.744 INFO 246496 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41]
2022-04-02 23:21:04.745 INFO 246496 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.2.30] using APR version [1.7.0].
2022-04-02 23:21:04.746 INFO 246496 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-04-02 23:21:04.746 INFO 246496 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-04-02 23:21:04.753 INFO 246496 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.1k 25 Mar 2021]
2022-04-02 23:21:04.863 INFO 246496 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-04-02 23:21:04.864 INFO 246496 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2893 ms
2022-04-02 23:21:05.612 INFO 246496 --- [restartedMain] c.moyang.zero.common.config.MinioConfig : initMinio start ...
2022-04-02 23:21:05.784 INFO 246496 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2022-04-02 23:21:06.734 INFO 246496 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2022-04-02 23:21:06.941 INFO 246496 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-04-02 23:21:06.955 INFO 246496 --- [restartedMain] com.moyang.zero.ZeroWebApplication : Started ZeroWebApplication in 5.501 seconds (JVM running for 6.698)
2022-04-02 23:21:24.130 INFO 246496 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-04-02 23:21:24.131 INFO 246496 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-04-02 23:21:24.133 INFO 246496 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-04-02 23:21:24.180 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:21:24.180 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:21:24.181 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:21:24.678 INFO 246496 --- [http-nio-8080-exec-1] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
2022-04-02 23:21:25.406 WARN 246496 --- [http-nio-8080-exec-1] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [267] milliseconds.
2022-04-02 23:21:25.603 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:21:26.059 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:21:26.060 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:21:26.060 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:21:26.138 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:21:26.255 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:21:39.171 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:21:39.172 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:21:39.172 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:22:02.483 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:24:36.107 WARN 246496 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 153565
2022-04-02 23:24:36.108 WARN 246496 --- [http-nio-8080-exec-5] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 176933
2022-04-02 23:24:38.642 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:24:38.642 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:24:38.642 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:24:38.673 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:24:38.674 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:24:41.474 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:24:41.474 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:24:41.474 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:24:41.489 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:24:41.507 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.entity.Template : 墨阳人生2545在2022-04-02T23:24:41.505800500创建新记录
2022-04-02 23:25:02.154 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:10.586 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:15.081 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:15.081 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:15.082 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:15.102 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:20.101 INFO 246496 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:20.101 INFO 246496 --- [http-nio-8080-exec-5] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:20.101 INFO 246496 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:20.114 INFO 246496 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:20.557 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:20.558 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:20.558 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:20.572 INFO 246496 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:20.588 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:23.347 INFO 246496 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:23.348 INFO 246496 --- [http-nio-8080-exec-9] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:23.348 INFO 246496 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:23.381 INFO 246496 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:44.286 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:48.861 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:48.861 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:48.862 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:48.892 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:49.429 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:49.430 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:49.430 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:49.440 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:49.461 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:25:51.369 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:25:51.370 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:25:51.370 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:25:51.387 INFO 246496 --- [http-nio-8080-exec-3] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:27:39.750 INFO 246496 --- [http-nio-8080-exec-4] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:27:39.753 WARN 246496 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 108361
2022-04-02 23:27:39.755 WARN 246496 --- [http-nio-8080-exec-4] c.a.druid.pool.DruidAbstractDataSource : discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/zero?serverTimezone=UTC&tinyInt1isBit=false, version : 1.2.4, lastPacketReceivedIdleMillis : 181070
2022-04-02 23:27:50.794 INFO 246496 --- [http-nio-8080-exec-5] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:14.648 INFO 246496 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:28:14.648 INFO 246496 --- [http-nio-8080-exec-7] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:28:14.648 INFO 246496 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:28:14.662 INFO 246496 --- [http-nio-8080-exec-7] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:15.162 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:28:15.166 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:28:15.167 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:28:15.182 INFO 246496 --- [http-nio-8080-exec-9] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:15.202 INFO 246496 --- [http-nio-8080-exec-6] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:16.873 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:28:16.873 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:28:16.873 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:28:16.896 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:16.906 INFO 246496 --- [http-nio-8080-exec-10] com.moyang.zero.entity.Template : 墨阳人生2545在2022-04-02T23:28:16.906338100创建新记录
2022-04-02 23:28:22.497 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:28:22.498 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:28:22.498 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:28:22.532 INFO 246496 --- [http-nio-8080-exec-8] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:22.979 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : 用户已经登录系统...
2022-04-02 23:28:22.979 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.filter.JwtFilter : Login ...
2022-04-02 23:28:22.979 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthenticationInfo 认证........................
2022-04-02 23:28:22.989 INFO 246496 --- [http-nio-8080-exec-2] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................
2022-04-02 23:28:23.016 INFO 246496 --- [http-nio-8080-exec-1] com.moyang.zero.auth.realm.MyRealm : user request doGetAuthorizationInfo 鉴权........................