qirong
2023-06-16 a902b3ea7d5ec9b73c9ab54d09a6ab23fd5acb35
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
2023-06-07 08:58:10.249  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 15556 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 08:58:10.252  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 08:58:10.319  INFO 15556 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 08:58:10.319  INFO 15556 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 08:58:13.966  WARN 15556 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 08:58:13.997  INFO 15556 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 08:58:13.998  INFO 15556 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3679 ms
2023-06-07 08:58:15.287  INFO 15556 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7bd9c796, org.springframework.security.web.context.SecurityContextPersistenceFilter@120c4073, org.springframework.security.web.header.HeaderWriterFilter@211f918d, org.springframework.web.filter.CorsFilter@9ae5e87, org.springframework.security.web.authentication.logout.LogoutFilter@1da2c406, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@bdee800, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@161b8445, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2095fcec, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@16c78fa1, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@70fed14c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1de586bb, org.springframework.security.web.session.SessionManagementFilter@44a9086e, org.springframework.security.web.access.ExceptionTranslationFilter@75f1e444, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@594ace7b]
2023-06-07 08:58:15.963  INFO 15556 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 08:58:16.063  INFO 15556 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 08:58:16.074  INFO 15556 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 08:58:16.150  INFO 15556 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 08:58:16.154  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.633 seconds (JVM running for 8.479)
2023-06-07 08:58:45.649  INFO 15556 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-07 08:58:45.649  INFO 15556 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-07 08:58:45.661  INFO 15556 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 12 ms
2023-06-07 09:00:22.469  INFO 15556 --- [XNIO-1 task-11] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-07 09:00:22.716  INFO 15556 --- [XNIO-1 task-11] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-07 09:00:22.727 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:00:22.753 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:00:22.779 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:00:23.377 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:00:23.377 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:00:23.386 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:00:23.401 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:00:23.404 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了学之思开源考试系统(String), 2023-06-07 09:00:23.386(Timestamp)
2023-06-07 09:00:23.428 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:00:23.534 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:00:23.534 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.544 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.545 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:00:23.546 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:00:23.552 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:00:23.554 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:00:23.554 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.561 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.562 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:00:23.562 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.571 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.582 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:00:23.583 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:00:23.595 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:00:23.598 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:00:23.598 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:00:23.610 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:00:46.137 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:00:46.137 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:00:46.149 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:00:46.153 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:00:46.153 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:00:46.161 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:01:26.211 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:01:26.211 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:01:26.217 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:01:26.218 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:01:26.218 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:01:26.225 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:11:17.601 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:11:17.615 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.629 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.637 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:11:17.638 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:11:17.648 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:11:17.651 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:11:17.652 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.663 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.671 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:11:17.674 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.690 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.707 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:11:17.710 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:11:17.730 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:11:17.741 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:11:17.742 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:11:17.750 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:12:15.425 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:12:15.425 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.436 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.445 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:12:15.445 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:12:15.452 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:12:15.454 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:12:15.454 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.462 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.463 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:12:15.463 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.471 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.473 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:12:15.474 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:12:15.488 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:12:15.491 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:12:15.493 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:12:15.500 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:12:19.165 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:12:19.165 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:12:19.173 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:12:19.177 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:12:19.178 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:12:19.187 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:13:47.395 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:13:47.396 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:13:47.403 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:13:47.405 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:13:47.405 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:13:47.413 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:14:51.129 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:14:51.129 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:14:51.136 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:14:51.138 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:14:51.138 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:14:51.146 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:14:57.018 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:14:57.018 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:14:57.035 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:14:57.039 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:14:57.039 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:14:57.050 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:15:48.711 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:15:48.711 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:15:48.723 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:15:48.724 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:15:48.725 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:15:48.736 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:17:39.995 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-06-07 09:17:39.995 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:40.013 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:40.017 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : ==>  Preparing: SELECT id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name FROM t_task_exam WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:40.018 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:40.026 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : <==      Total: 1
2023-06-07 09:17:45.068 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:45.068 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:45.077 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:17:47.641 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:47.641 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:17:47.644 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:47.644 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:17:47.655 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-07 09:17:53.378 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:53.380 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:53.388 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:53.654 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:17:53.656 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:53.662 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:53.664 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:53.664 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:53.721 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-07 09:17:53.752 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.753 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-07 09:17:53.761 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.799 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.800 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-07 09:17:53.807 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.808 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.808 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-07 09:17:53.816 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.819 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.819 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-07 09:17:53.826 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.827 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.827 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-07 09:17:53.836 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.839 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.839 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-07 09:17:53.846 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.849 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.849 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-07 09:17:53.856 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.858 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.858 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-07 09:17:53.865 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.866 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.866 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-07 09:17:53.887 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.889 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.889 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-07 09:17:53.909 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:54.952 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:54.953 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:54.954 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:17:54.954 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:17:54.961 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:54.964 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:17:54.965 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:54.965 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:17:54.976 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-07 09:17:56.964 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:56.964 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:56.973 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:57.264 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:17:57.265 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:57.271 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:57.272 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:57.272 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:57.295 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-07 09:17:57.296 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.296 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-07 09:17:57.306 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.307 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.308 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-07 09:17:57.314 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.315 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.315 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-07 09:17:57.322 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.323 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.324 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-07 09:17:57.331 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.333 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.333 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-07 09:17:57.340 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.345 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.345 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-07 09:17:57.355 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.357 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.357 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-07 09:17:57.365 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.366 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.366 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-07 09:17:57.373 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.375 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.375 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-07 09:17:57.385 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.387 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.387 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-07 09:17:57.404 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:19:30.913 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:19:30.914 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:19:30.917 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:19:30.917 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:19:30.921 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 0
2023-06-07 09:19:30.926 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:19:33.664 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 0
2023-06-07 09:19:33.665 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:19:37.310 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:19:37.310 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-06-07 09:19:37.319 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:19:37.321 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:19:37.321 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-06-07 09:19:37.332 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:19:39.896 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:19:39.896 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:19:39.904 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:19:39.904 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:19:39.906 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:19:39.913 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:35.467 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:22:35.468 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:22:35.479 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:22:35.481 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:22:35.482 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:22:35.489 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:40.704 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:22:40.704 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:22:40.711 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:22:40.713 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:22:40.713 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:22:40.734 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:45.813 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:22:45.813 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:22:45.828 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:22:45.829 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:22:45.829 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.836 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.837 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:22:45.837 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.844 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.845 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:22:45.856 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:22:45.864 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:22:45.865 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:22:45.867 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:22:45.875 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 09:22:49.065 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:22:49.065 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:22:49.075 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:23:02.016 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:23:02.016 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:23:02.028 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 09:23:02.030 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-06-07 09:23:02.030 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-06-07 09:23:02.040 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-06-07 09:24:07.737  INFO 15556 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-07 09:24:07.759  INFO 15556 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-07 09:24:07.770  INFO 15556 --- [Thread-22] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-07 09:24:20.366  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 5652 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 09:24:20.369  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 09:24:20.443  INFO 5652 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 09:24:20.443  INFO 5652 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 09:24:23.198  WARN 5652 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 09:24:23.231  INFO 5652 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 09:24:23.231  INFO 5652 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2788 ms
2023-06-07 09:24:24.404  INFO 5652 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5b1b3c82, org.springframework.security.web.context.SecurityContextPersistenceFilter@400142e, org.springframework.security.web.header.HeaderWriterFilter@16a8e1d8, org.springframework.web.filter.CorsFilter@37da98e1, org.springframework.security.web.authentication.logout.LogoutFilter@461178b6, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@9d0000e, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6207af5c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@292bfb8c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@c0ac366, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@13ea3e73, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3d153672, org.springframework.security.web.session.SessionManagementFilter@2c42a2d4, org.springframework.security.web.access.ExceptionTranslationFilter@3a7a1103, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3e016a11]
2023-06-07 09:24:24.687  INFO 5652 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 09:24:24.772  INFO 5652 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 09:24:24.786  INFO 5652 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 09:24:24.860  INFO 5652 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 09:24:24.863  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.24 seconds (JVM running for 6.547)
2023-06-07 09:25:06.006  INFO 5652 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-07 09:25:06.006  INFO 5652 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-07 09:25:06.027  INFO 5652 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 21 ms
2023-06-07 09:25:06.078  INFO 5652 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-07 09:25:06.291  INFO 5652 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-07 09:25:06.299 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:06.322 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:06.349 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:06.367 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:25:06.369 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登出了学之思开源考试系统(String), 2023-06-07 09:25:06.353(Timestamp)
2023-06-07 09:25:06.391 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:25:13.501 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:13.502 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:13.511 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:13.850 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:13.850 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:13.859 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:13.861 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:25:13.863 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-06-07 09:25:13.86(Timestamp)
2023-06-07 09:25:13.896 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:25:14.010 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:25:14.011 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.021 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.023 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:25:14.023 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:25:14.036 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:25:14.037 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:25:14.037 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.045 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.047 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:25:14.047 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.055 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.061 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:25:14.063 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:25:14.072 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:25:14.075 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:25:14.076 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:25:14.085 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 09:25:17.267 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:25:17.267 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:25:17.276 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 09:25:17.279 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-06-07 09:25:17.279 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-06-07 09:25:17.292 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-06-07 09:31:46.098 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:31:46.098 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:31:46.145 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 10:55:50.441 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 10:55:50.449 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 10:55:50.472 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 10:55:50.487 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 10:55:50.488 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 10:55:50.502 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 10:55:50.510 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 10:55:50.513 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-06-07 10:55:50.504(Timestamp)
2023-06-07 10:55:50.535 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 10:55:50.639 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 10:55:50.640 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.651 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.652 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 10:55:50.653 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 10:55:50.673 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 10:55:50.678 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 10:55:50.679 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.691 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.695 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 10:55:50.695 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.707 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.713 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 10:55:50.723 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 10:55:50.732 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : <==      Total: 1
2023-06-07 10:55:50.737 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 10:55:50.738 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 10:55:50.747 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 10:56:03.783 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 10:56:03.784 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 10:56:03.791 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 11:04:20.707  INFO 5652 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-07 11:04:20.742  INFO 5652 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-07 11:04:20.753  INFO 5652 --- [Thread-18] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-07 11:06:15.673  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 5104 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 11:06:15.676  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 11:06:15.736  INFO 5104 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 11:06:15.736  INFO 5104 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 11:06:18.468  WARN 5104 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 11:06:18.504  INFO 5104 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 11:06:18.504  INFO 5104 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2768 ms
2023-06-07 11:06:19.827  INFO 5104 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4a3a323a, org.springframework.security.web.context.SecurityContextPersistenceFilter@7add2362, org.springframework.security.web.header.HeaderWriterFilter@27e75f5b, org.springframework.web.filter.CorsFilter@5a35d19b, org.springframework.security.web.authentication.logout.LogoutFilter@484fd8e, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@6945f363, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@76ce3b2d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@39cf2189, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4abb535f, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@6a151ded, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@aada50e, org.springframework.security.web.session.SessionManagementFilter@58502abf, org.springframework.security.web.access.ExceptionTranslationFilter@4316c6a4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6b0f829a]
2023-06-07 11:06:20.264  INFO 5104 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 11:06:20.370  INFO 5104 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 11:06:20.385  INFO 5104 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 11:06:20.495  INFO 5104 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 11:06:20.500  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.716 seconds (JVM running for 7.176)
2023-06-07 13:40:46.035  INFO 26704 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 26704 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 13:40:46.038  INFO 26704 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 13:40:46.093  INFO 26704 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 13:40:46.094  INFO 26704 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 13:40:48.317  INFO 26704 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$9e2c5a86] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 13:40:48.559  WARN 26704 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 13:40:48.589  INFO 26704 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 13:40:48.589  INFO 26704 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2495 ms
2023-06-07 13:40:49.880  INFO 26704 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 13:40:50.041  INFO 26704 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@617b6561, org.springframework.security.web.context.SecurityContextPersistenceFilter@ed44c66, org.springframework.security.web.header.HeaderWriterFilter@47c8f461, org.springframework.web.filter.CorsFilter@3cac1358, org.springframework.security.web.authentication.logout.LogoutFilter@3804ca76, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@26fb8869, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@45c16bb2, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5ae15e3d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@373f9fdb, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@76fb376e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7cadfa8c, org.springframework.security.web.session.SessionManagementFilter@25d837a8, org.springframework.security.web.access.ExceptionTranslationFilter@468e7ee4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@250562ad]
2023-06-07 13:40:50.059  INFO 26704 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 13:40:50.350  INFO 26704 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 13:40:50.369  INFO 26704 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 13:40:50.405  INFO 26704 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 13:40:50.557  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 13:40:50.559  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 13:40:50.591  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 13:40:50.607  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 13:40:50.658  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 13:40:50.690  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 13:40:50.694  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 13:40:50.697  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 13:40:50.700  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 13:40:50.714  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 13:40:50.721  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 13:40:50.725  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 13:40:50.728  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 13:40:50.731  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 13:40:50.739  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 13:40:50.747  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 13:40:50.749  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 13:40:50.759  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 13:40:50.770  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 13:40:50.774  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 13:40:50.778  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 13:40:50.780  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 13:40:50.808  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 13:40:50.811  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 13:40:50.813  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 13:40:50.817  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 13:40:50.825  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 13:40:50.828  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 13:40:50.839  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 13:40:50.840  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 13:40:50.841  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 13:40:50.841  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 13:40:50.842  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 13:40:50.843  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 13:40:50.843  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 13:40:50.844  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 13:40:50.878  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 13:40:50.889  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 13:40:50.890  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 13:40:50.897  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 13:40:50.907  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 13:40:50.908  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 13:40:50.912  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 13:40:50.913  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 13:40:50.914  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 13:40:50.918  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 13:40:50.919  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 13:40:50.922  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 13:40:50.923  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 13:40:50.926  INFO 26704 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 13:40:50.985  INFO 26704 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 13:40:50.997  INFO 26704 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 13:40:51.073  INFO 26704 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 13:40:51.077  INFO 26704 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.782 seconds (JVM running for 6.861)
2023-06-07 13:58:31.313  INFO 19304 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 19304 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 13:58:31.317  INFO 19304 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 13:58:31.390  INFO 19304 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 13:58:31.390  INFO 19304 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 13:58:33.435  INFO 19304 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d42de0a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 13:58:33.787  WARN 19304 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 13:58:33.831  INFO 19304 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 13:58:33.832  INFO 19304 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2442 ms
2023-06-07 13:58:35.368  INFO 19304 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 13:58:35.572  INFO 19304 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@cd913ba, org.springframework.security.web.context.SecurityContextPersistenceFilter@7843bbad, org.springframework.security.web.header.HeaderWriterFilter@556b4348, org.springframework.web.filter.CorsFilter@55ee2168, org.springframework.security.web.authentication.logout.LogoutFilter@1919a82f, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@f0fe2bd, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@45eb5b48, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@826f087, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5490d805, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@5f28d35, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@19e48fe9, org.springframework.security.web.session.SessionManagementFilter@12a43fc1, org.springframework.security.web.access.ExceptionTranslationFilter@4a66ff5a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@278cd4b6]
2023-06-07 13:58:35.592  INFO 19304 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 13:58:35.948  INFO 19304 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 13:58:35.975  INFO 19304 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 13:58:36.038  INFO 19304 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 13:58:36.259  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 13:58:36.261  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 13:58:36.310  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 13:58:36.315  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 13:58:36.380  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 13:58:36.412  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 13:58:36.415  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 13:58:36.417  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 13:58:36.421  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 13:58:36.424  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 13:58:36.434  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 13:58:36.444  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 13:58:36.446  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 13:58:36.458  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 13:58:36.461  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 13:58:36.464  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 13:58:36.466  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 13:58:36.476  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 13:58:36.489  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 13:58:36.493  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 13:58:36.497  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 13:58:36.499  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 13:58:36.534  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 13:58:36.538  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 13:58:36.541  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 13:58:36.545  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 13:58:36.555  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 13:58:36.574  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 13:58:36.581  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 13:58:36.582  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 13:58:36.583  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 13:58:36.584  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 13:58:36.585  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 13:58:36.587  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 13:58:36.588  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 13:58:36.589  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 13:58:36.611  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 13:58:36.617  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 13:58:36.630  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 13:58:36.632  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 13:58:36.643  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 13:58:36.656  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 13:58:36.666  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 13:58:36.668  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 13:58:36.669  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 13:58:36.672  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 13:58:36.674  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 13:58:36.676  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 13:58:36.677  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 13:58:36.679  INFO 19304 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 13:58:36.752  INFO 19304 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 13:58:36.767  INFO 19304 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 13:58:36.876  INFO 19304 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 13:58:36.882  INFO 19304 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.628 seconds (JVM running for 8.227)
2023-06-07 14:00:10.958  INFO 25260 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 25260 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:00:10.961  INFO 25260 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 14:00:11.003  INFO 25260 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:00:11.003  INFO 25260 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:00:12.367  INFO 25260 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$258985d1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 14:00:12.588  WARN 25260 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:00:12.621  INFO 25260 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:00:12.622  INFO 25260 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1618 ms
2023-06-07 14:00:13.992  INFO 25260 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:00:14.144  INFO 25260 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@452d8195, org.springframework.security.web.context.SecurityContextPersistenceFilter@550952f5, org.springframework.security.web.header.HeaderWriterFilter@15f7ceed, org.springframework.web.filter.CorsFilter@66ea134e, org.springframework.security.web.authentication.logout.LogoutFilter@3f2c4965, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@60eb0a63, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@7f53190a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5426b518, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@79a8eb17, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@74b5f871, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@68b73372, org.springframework.security.web.session.SessionManagementFilter@5a3df121, org.springframework.security.web.access.ExceptionTranslationFilter@4d9ef674, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5e70e15a]
2023-06-07 14:00:14.165  INFO 25260 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 14:00:14.435  INFO 25260 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 14:00:14.456  INFO 25260 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 14:00:14.492  INFO 25260 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 14:00:14.779  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 14:00:14.782  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 14:00:14.844  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 14:00:14.850  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 14:00:14.932  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 14:00:14.970  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 14:00:14.975  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 14:00:14.979  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 14:00:14.983  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 14:00:15.000  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 14:00:15.005  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 14:00:15.008  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 14:00:15.023  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 14:00:15.038  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 14:00:15.043  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 14:00:15.051  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 14:00:15.055  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 14:00:15.067  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 14:00:15.082  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 14:00:15.086  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 14:00:15.092  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 14:00:15.096  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 14:00:15.140  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 14:00:15.141  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 14:00:15.144  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 14:00:15.158  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 14:00:15.170  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 14:00:15.172  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 14:00:15.180  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 14:00:15.181  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 14:00:15.182  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 14:00:15.182  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 14:00:15.184  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 14:00:15.185  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 14:00:15.185  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 14:00:15.186  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 14:00:15.204  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 14:00:15.213  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 14:00:15.214  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 14:00:15.216  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 14:00:15.218  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 14:00:15.220  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 14:00:15.221  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 14:00:15.224  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 14:00:15.231  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 14:00:15.233  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 14:00:15.238  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 14:00:15.250  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 14:00:15.251  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 14:00:15.256  INFO 25260 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 14:00:15.316  INFO 25260 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 14:00:15.325  INFO 25260 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 14:00:15.387  INFO 25260 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 14:00:15.391  INFO 25260 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.151 seconds (JVM running for 6.12)
2023-06-07 14:07:59.460  INFO 26388 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 26388 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:07:59.463  INFO 26388 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 14:07:59.511  INFO 26388 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:07:59.511  INFO 26388 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:08:00.710  INFO 26388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$75c1b5c3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 14:08:00.910  WARN 26388 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:08:00.934  INFO 26388 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:08:00.934  INFO 26388 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1423 ms
2023-06-07 14:08:01.965  INFO 26388 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:08:02.105  INFO 26388 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4493a463, org.springframework.security.web.context.SecurityContextPersistenceFilter@1b05a91e, org.springframework.security.web.header.HeaderWriterFilter@43216e52, org.springframework.web.filter.CorsFilter@2050d081, org.springframework.security.web.authentication.logout.LogoutFilter@4f94b9dd, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@63bed8f8, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@59004a5f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7a11c547, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1ba31aea, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@68f2e3fb, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@48a22e33, org.springframework.security.web.session.SessionManagementFilter@1deb20d6, org.springframework.security.web.access.ExceptionTranslationFilter@21368faa, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@35598675]
2023-06-07 14:08:02.123  INFO 26388 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 14:08:02.378  INFO 26388 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 14:08:02.391  INFO 26388 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 14:08:02.422  INFO 26388 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 14:08:02.563  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 14:08:02.565  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 14:08:02.597  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 14:08:02.605  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 14:08:02.609  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 14:08:02.654  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 14:08:02.656  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 14:08:02.673  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 14:08:02.676  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 14:08:02.679  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 14:08:02.681  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 14:08:02.689  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 14:08:02.695  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 14:08:02.697  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 14:08:02.719  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 14:08:02.726  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 14:08:02.729  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 14:08:02.729  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 14:08:02.736  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 14:08:02.744  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 14:08:02.748  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 14:08:02.751  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 14:08:02.752  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 14:08:02.773  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 14:08:02.775  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 14:08:02.778  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 14:08:02.781  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 14:08:02.786  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 14:08:02.788  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 14:08:02.795  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 14:08:02.796  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 14:08:02.796  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 14:08:02.797  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 14:08:02.797  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 14:08:02.797  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 14:08:02.798  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 14:08:02.798  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 14:08:02.805  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 14:08:02.811  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 14:08:02.820  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-06-07 14:08:02.822  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 14:08:02.831  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 14:08:02.838  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 14:08:02.843  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 14:08:02.844  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 14:08:02.845  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 14:08:02.848  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 14:08:02.849  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 14:08:02.852  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 14:08:02.852  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 14:08:02.855  INFO 26388 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 14:08:02.899  INFO 26388 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 14:08:02.910  INFO 26388 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 14:08:02.975  INFO 26388 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 14:08:02.980  INFO 26388 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 4.227 seconds (JVM running for 5.116)
2023-06-07 14:12:23.918  INFO 17332 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 17332 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:12:23.920  INFO 17332 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 14:12:23.961  INFO 17332 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:12:23.961  INFO 17332 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:12:25.160  INFO 17332 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f04e8bd9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 14:12:25.368  WARN 17332 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:12:25.391  INFO 17332 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:12:25.391  INFO 17332 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1430 ms
2023-06-07 14:12:26.436  INFO 17332 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:12:26.582  INFO 17332 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3c7e84ea, org.springframework.security.web.context.SecurityContextPersistenceFilter@436c4c12, org.springframework.security.web.header.HeaderWriterFilter@7d703dd7, org.springframework.web.filter.CorsFilter@5a50ef6c, org.springframework.security.web.authentication.logout.LogoutFilter@6d100748, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@316e477a, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@73e93357, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@71cb1a10, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@31d8ab1, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@12a70c3e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@15e4bc00, org.springframework.security.web.session.SessionManagementFilter@3bd9655e, org.springframework.security.web.access.ExceptionTranslationFilter@16b93d7a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@245462c3]
2023-06-07 14:12:26.599  INFO 17332 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 14:12:26.869  INFO 17332 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 14:12:26.883  INFO 17332 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 14:12:26.914  INFO 17332 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 14:12:27.051  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 14:12:27.052  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 14:12:27.089  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 14:12:27.096  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 14:12:27.101  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 14:12:27.149  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 14:12:27.172  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 14:12:27.173  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 14:12:27.175  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 14:12:27.177  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 14:12:27.179  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 14:12:27.186  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 14:12:27.193  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 14:12:27.194  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 14:12:27.202  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 14:12:27.204  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 14:12:27.207  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 14:12:27.209  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 14:12:27.231  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 14:12:27.238  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 14:12:27.242  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 14:12:27.244  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 14:12:27.245  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 14:12:27.266  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 14:12:27.269  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 14:12:27.270  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 14:12:27.273  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 14:12:27.278  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 14:12:27.280  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 14:12:27.284  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 14:12:27.285  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 14:12:27.285  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 14:12:27.285  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 14:12:27.286  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 14:12:27.286  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 14:12:27.287  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 14:12:27.287  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 14:12:27.305  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 14:12:27.311  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 14:12:27.313  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 14:12:27.314  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 14:12:27.320  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 14:12:27.321  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 14:12:27.324  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 14:12:27.325  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 14:12:27.329  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 14:12:27.335  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 14:12:27.337  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 14:12:27.342  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 14:12:27.353  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-06-07 14:12:27.355  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 14:12:27.358  INFO 17332 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-06-07 14:12:27.400  INFO 17332 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 14:12:27.409  INFO 17332 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 14:12:27.465  INFO 17332 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 14:12:27.470  INFO 17332 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 4.217 seconds (JVM running for 5.094)
2023-06-07 14:59:04.759  INFO 25852 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 25852 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:59:04.762  INFO 25852 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 14:59:04.818  INFO 25852 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:59:04.819  INFO 25852 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:59:07.572  INFO 25852 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bd6b67f2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 14:59:07.876  WARN 25852 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:59:07.913  INFO 25852 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:59:07.913  INFO 25852 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3094 ms
2023-06-07 14:59:09.322  INFO 25852 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:59:09.491  INFO 25852 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7e375c5a, org.springframework.security.web.context.SecurityContextPersistenceFilter@54489894, org.springframework.security.web.header.HeaderWriterFilter@1cfb5e20, org.springframework.web.filter.CorsFilter@207f8fd5, org.springframework.security.web.authentication.logout.LogoutFilter@98467ab, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@758413f5, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@5090d0a0, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@511e356c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@62fa46ed, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@3a539110, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@477d73a3, org.springframework.security.web.session.SessionManagementFilter@24a150bf, org.springframework.security.web.access.ExceptionTranslationFilter@6e11cfa2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4eb8d4be]
2023-06-07 14:59:09.511  INFO 25852 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 14:59:09.801  INFO 25852 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 14:59:09.821  INFO 25852 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 14:59:09.858  INFO 25852 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 14:59:10.033  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 14:59:10.036  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 14:59:10.082  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 14:59:10.093  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 14:59:10.098  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 14:59:10.108  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 14:59:10.120  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 14:59:10.142  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 14:59:10.150  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 14:59:10.153  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 14:59:10.166  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 14:59:10.170  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 14:59:10.176  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 14:59:10.178  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 14:59:10.182  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 14:59:10.190  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 14:59:10.198  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 14:59:10.200  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 14:59:10.209  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 14:59:10.219  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 14:59:10.222  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 14:59:10.225  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 14:59:10.241  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 14:59:10.278  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 14:59:10.281  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 14:59:10.285  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 14:59:10.297  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 14:59:10.315  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 14:59:10.319  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 14:59:10.333  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 14:59:10.334  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 14:59:10.335  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 14:59:10.337  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 14:59:10.338  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 14:59:10.338  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 14:59:10.339  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 14:59:10.342  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 14:59:10.362  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 14:59:10.368  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 14:59:10.378  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 14:59:10.379  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 14:59:10.386  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 14:59:10.400  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-06-07 14:59:10.401  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 14:59:10.407  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 14:59:10.409  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 14:59:10.411  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 14:59:10.416  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 14:59:10.417  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 14:59:10.421  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 14:59:10.423  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 14:59:10.427  INFO 25852 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-06-07 14:59:10.506  INFO 25852 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 14:59:10.520  INFO 25852 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 14:59:10.604  INFO 25852 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 14:59:10.609  INFO 25852 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.7 seconds (JVM running for 7.937)
2023-06-07 14:59:28.512  INFO 16756 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 16756 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:59:28.516  INFO 16756 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 14:59:28.559  INFO 16756 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:59:28.559  INFO 16756 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:59:29.863  INFO 16756 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$4fa98445] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-06-07 14:59:30.088  WARN 16756 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:59:30.110  INFO 16756 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:59:30.110  INFO 16756 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1551 ms
2023-06-07 14:59:31.132  INFO 16756 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:59:31.274  INFO 16756 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2437bdca, org.springframework.security.web.context.SecurityContextPersistenceFilter@1c5b523a, org.springframework.security.web.header.HeaderWriterFilter@1d571c7b, org.springframework.web.filter.CorsFilter@3a3478c, org.springframework.security.web.authentication.logout.LogoutFilter@5b70bff4, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@788f79b8, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@26ff6646, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@46ea663c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4c4ba849, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@2e320072, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@40e5747b, org.springframework.security.web.session.SessionManagementFilter@797d94d3, org.springframework.security.web.access.ExceptionTranslationFilter@561ba152, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@15a59846]
2023-06-07 14:59:31.290  INFO 16756 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-06-07 14:59:31.552  INFO 16756 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-06-07 14:59:31.566  INFO 16756 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-06-07 14:59:31.608  INFO 16756 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-06-07 14:59:31.748  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
2023-06-07 14:59:31.750  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-06-07 14:59:31.792  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-06-07 14:59:31.802  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-06-07 14:59:31.807  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-06-07 14:59:31.853  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-06-07 14:59:31.861  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-06-07 14:59:31.879  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-06-07 14:59:31.884  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-06-07 14:59:31.886  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-06-07 14:59:31.894  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-06-07 14:59:31.898  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-06-07 14:59:31.902  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-06-07 14:59:31.903  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-06-07 14:59:31.906  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-06-07 14:59:31.911  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-06-07 14:59:31.917  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-06-07 14:59:31.920  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-06-07 14:59:31.927  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-06-07 14:59:31.935  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-06-07 14:59:31.937  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-06-07 14:59:31.939  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-06-07 14:59:31.941  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-06-07 14:59:31.962  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-06-07 14:59:31.964  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-06-07 14:59:31.965  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-06-07 14:59:31.969  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-06-07 14:59:31.975  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-06-07 14:59:31.978  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-06-07 14:59:31.982  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-06-07 14:59:31.983  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-06-07 14:59:31.984  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-06-07 14:59:31.984  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-06-07 14:59:31.985  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-06-07 14:59:31.985  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-06-07 14:59:31.985  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-06-07 14:59:31.986  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-06-07 14:59:31.997  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-06-07 14:59:32.002  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-06-07 14:59:32.013  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-06-07 14:59:32.015  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-06-07 14:59:32.019  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-06-07 14:59:32.025  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-06-07 14:59:32.034  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-06-07 14:59:32.039  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-06-07 14:59:32.043  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-06-07 14:59:32.044  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-06-07 14:59:32.049  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-06-07 14:59:32.050  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-06-07 14:59:32.054  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-06-07 14:59:32.055  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-06-07 14:59:32.059  INFO 16756 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-06-07 14:59:32.111  INFO 16756 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 14:59:32.121  INFO 16756 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 14:59:32.185  INFO 16756 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 14:59:32.189  INFO 16756 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 4.377 seconds (JVM running for 5.388)