xiangpei
2024-05-14 decf7856a39ff88488285cac45d3298f2844d614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2023-11-28 21:17:18.752  INFO 22992 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 22992 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-11-28 21:17:18.755  INFO 22992 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-11-28 21:17:18.805  INFO 22992 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-11-28 21:17:18.805  INFO 22992 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-11-28 21:17:21.442  INFO 22992 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c158be51] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-11-28 21:17:22.155  WARN 22992 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-11-28 21:17:22.210  INFO 22992 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-11-28 21:17:22.210  INFO 22992 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3404 ms
2023-11-28 21:17:24.978  INFO 22992 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-11-28 21:17:25.297  INFO 22992 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@eae360f, org.springframework.security.web.context.SecurityContextPersistenceFilter@5195a89e, org.springframework.security.web.header.HeaderWriterFilter@29628b5a, org.springframework.web.filter.CorsFilter@79aee098, org.springframework.security.web.authentication.logout.LogoutFilter@2ccc0b19, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@3c2537b3, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@5772e716, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4c7ca7e9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@60065e2c, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@6014af31, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1e09b61c, org.springframework.security.web.session.SessionManagementFilter@29a78a27, org.springframework.security.web.access.ExceptionTranslationFilter@33714d99, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7ed8e24d]
2023-11-28 21:17:25.352  INFO 22992 --- [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-11-28 21:17:26.184  INFO 22992 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-11-28 21:17:26.217  INFO 22992 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-11-28 21:17:26.290  INFO 22992 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-11-28 21:17:26.586  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-11-28 21:17:26.646  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-11-28 21:17:26.676  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-11-28 21:17:26.688  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-11-28 21:17:26.696  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-11-28 21:17:26.800  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-11-28 21:17:26.805  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-11-28 21:17:26.836  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-11-28 21:17:29.110  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-11-28 21:17:29.114  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-11-28 21:17:29.136  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-11-28 21:17:29.149  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-11-28 21:17:29.152  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-11-28 21:17:29.155  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-11-28 21:17:29.159  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-11-28 21:17:29.175  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-11-28 21:17:29.178  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-11-28 21:17:29.186  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-11-28 21:17:29.190  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-11-28 21:17:29.203  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageJudgeListUsingPOST_1
2023-11-28 21:17:29.215  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingGET_1
2023-11-28 21:17:29.220  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-11-28 21:17:29.240  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-11-28 21:17:29.249  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-11-28 21:17:29.255  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-11-28 21:17:29.258  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportTemplatesIdUsingGET_1
2023-11-28 21:17:29.261  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-11-28 21:17:29.265  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_2
2023-11-28 21:17:29.276  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-11-28 21:17:29.291  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-11-28 21:17:29.296  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-11-28 21:17:29.300  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-11-28 21:17:29.302  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-11-28 21:17:29.340  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-11-28 21:17:29.342  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-11-28 21:17:29.348  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-11-28 21:17:29.353  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-11-28 21:17:29.361  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-11-28 21:17:29.365  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-11-28 21:17:29.375  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-11-28 21:17:29.375  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-11-28 21:17:29.377  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-11-28 21:17:29.378  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-11-28 21:17:29.379  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-11-28 21:17:29.379  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-11-28 21:17:29.380  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-11-28 21:17:29.381  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-11-28 21:17:29.411  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-11-28 21:17:29.421  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-11-28 21:17:29.431  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-11-28 21:17:29.432  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-11-28 21:17:29.437  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-11-28 21:17:29.449  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-11-28 21:17:29.456  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-11-28 21:17:29.461  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-11-28 21:17:29.466  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-11-28 21:17:29.468  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-11-28 21:17:29.470  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-11-28 21:17:29.473  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-11-28 21:17:29.476  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-11-28 21:17:29.480  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-11-28 21:17:29.481  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-11-28 21:17:29.485  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-11-28 21:17:29.490  INFO 22992 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-11-28 21:17:29.629  INFO 22992 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-11-28 21:17:29.647  INFO 22992 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-11-28 21:17:29.843  INFO 22992 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-11-28 21:17:29.850  INFO 22992 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 11.933 seconds (JVM running for 13.566)
2023-11-28 21:17:48.764  INFO 22992 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-11-28 21:17:48.765  INFO 22992 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-11-28 21:17:48.789  INFO 22992 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 24 ms
2023-11-28 21:17:49.008  INFO 22992 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-11-28 21:17:49.083  INFO 22992 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-11-28 21:17:53.894  INFO 22992 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-11-28 21:17:53.955 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-11-28 21:17:53.986 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-11-28 21:17:54.089 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-11-28 21:17:54.096 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-11-28 21:17:54.097 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-11-28 21:17:54.314 DEBUG 22992 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 5
2023-11-28 21:17:54.482 DEBUG 22992 --- [XNIO-1 task-4] 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-11-28 21:17:54.483 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-11-28 21:17:54.718 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:17:55.319 DEBUG 22992 --- [XNIO-1 task-4] 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-11-28 21:17:55.319 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-11-28 21:17:55.348 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:17:55.351 DEBUG 22992 --- [XNIO-1 task-4] 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-11-28 21:17:55.355 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-11-28 21:17:55.349(Timestamp)
2023-11-28 21:17:55.428 DEBUG 22992 --- [XNIO-1 task-4] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 21:17:55.772  INFO 22992 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-11-28 21:17:55.773 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-11-28 21:17:55.773 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-11-28 21:17:55.808 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-11-28 21:17:55.809 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-11-28 21:17:55.809 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-11-28 21:17:55.838 DEBUG 22992 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 5
2023-11-28 21:17:55.865  INFO 22992 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-11-28 21:17:55.876 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-11-28 21:17:55.877 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 21:17:55.926 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 21:17:55.933 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-11-28 21:17:55.934 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-11-28 21:17:55.969 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-11-28 21:17:56.004 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-11-28 21:17:56.005 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 21:17:56.038 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 21:17:56.039 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-11-28 21:17:56.040 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 21:17:56.069 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 21:17:56.086 DEBUG 22992 --- [XNIO-1 task-6] 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-11-28 21:17:56.086 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-11-01 00:00:00.0(Timestamp), 2023-11-30 23:59:59.0(Timestamp)
2023-11-28 21:17:56.119 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.U.selectCountByDate            : <==      Total: 12
2023-11-28 21:17:56.121 DEBUG 22992 --- [XNIO-1 task-6] 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-11-28 21:17:56.121 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-11-01 00:00:00.0(Timestamp), 2023-11-30 23:59:59.0(Timestamp)
2023-11-28 21:17:56.162 DEBUG 22992 --- [XNIO-1 task-6] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-11-28 21:17:59.626  INFO 22992 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:17:59.647 DEBUG 22992 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:17:59.647 DEBUG 22992 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:17:59.673 DEBUG 22992 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:17:59.995  INFO 22992 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 21:18:00.008 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 21:18:00.008 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 21:18:00.058 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 21:18:00.061 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 21:18:00.062 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 21:18:00.105 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:18:00.106 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.107 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 47(Integer)
2023-11-28 21:18:00.130 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.132 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.132 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:18:00.155 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.156 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.156 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:18:00.177 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.178 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.179 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:18:00.204 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.205 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.205 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:18:00.238 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.238 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.238 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 44(Integer)
2023-11-28 21:18:00.259 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.259 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.260 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 43(Integer)
2023-11-28 21:18:00.277 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.278 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.278 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 42(Integer)
2023-11-28 21:18:00.308 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.309 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.309 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 40(Integer)
2023-11-28 21:18:00.328 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:00.329 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:00.329 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 40(Integer)
2023-11-28 21:18:00.349 DEBUG 22992 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:03.684  INFO 22992 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:18:03.695  INFO 22992 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-11-28 21:18:03.695  INFO 22992 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:18:03.729 DEBUG 22992 --- [XNIO-1 task-9] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:18:03.729 DEBUG 22992 --- [XNIO-1 task-9] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:18:03.747 DEBUG 22992 --- [XNIO-1 task-9] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:18:03.748 DEBUG 22992 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:18:03.748 DEBUG 22992 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:18:03.777 DEBUG 22992 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:18:03.777 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:18:03.777 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:18:03.809 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:18:03.810 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:18:03.810 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 15(Integer)
2023-11-28 21:18:03.846 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 0
2023-11-28 21:18:03.846 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:18:03.847 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 16(Integer)
2023-11-28 21:18:03.871 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:18:03.872 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:03.872 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:18:03.901 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:03.902 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:18:03.903 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 17(Integer)
2023-11-28 21:18:03.924 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 2
2023-11-28 21:18:03.925 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:03.925 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:18:03.952 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:03.953 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:03.953 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:18:03.975 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:03.975 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:18:03.977 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 18(Integer)
2023-11-28 21:18:04.006 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 3
2023-11-28 21:18:04.007 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:04.007 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 21:18:04.048 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:04.049 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:04.049 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:18:04.077 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:04.079 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:04.080 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:18:04.099 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:04.100 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:18:04.100 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 22(Integer)
2023-11-28 21:18:04.115 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:18:04.117 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:04.117 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:18:04.144 DEBUG 22992 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:34.746  INFO 22992 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/edit
2023-11-28 21:18:34.906 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : ==>  Preparing: insert into t_exam_templates (name, paper_type, suggest_time, title_name, ctime, status, menu_ids) values (?, ?, ?, ?, ?, ?, ?) 
2023-11-28 21:18:34.907 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : ==> Parameters: CE4(String), 7(String), 120(String), 123(String), 2023-11-28 21:18:34.903(Timestamp), 0(String), [[22,1031]](String)
2023-11-28 21:18:34.950 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : <==    Updates: 1
2023-11-28 21:18:34.957 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_question(id, label, multiple_choice, single_choice, true_false, templates_id, subject_id) values (?,?,?,?,?,?, ?) 
2023-11-28 21:18:34.958 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==> Parameters: null, 语文 (String), 1(String), 2(String), 2(String), 48(Integer), 20(Integer)
2023-11-28 21:18:35.021 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 21:18:35.033 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_subject(id, subject_id, templates_id) values (?,?,?) 
2023-11-28 21:18:35.033 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==> Parameters: null, 20(Integer), 48(Integer)
2023-11-28 21:18:35.123 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 21:18:35.126 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==>  Preparing: insert into t_exam_templates_user (templates_id, user_id) values (?, ?) 
2023-11-28 21:18:35.127 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==> Parameters: 48(String), 1031(String)
2023-11-28 21:18:35.768 DEBUG 22992 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : <==    Updates: 1
2023-11-28 21:18:36.414  INFO 22992 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:18:36.528 DEBUG 22992 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:18:36.528 DEBUG 22992 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:18:36.557 DEBUG 22992 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:18:36.727  INFO 22992 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 21:18:36.729 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 21:18:36.729 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 21:18:36.770 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 21:18:36.774 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 21:18:36.774 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 21:18:36.825 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:18:36.825 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.825 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 21:18:36.849 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.849 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.849 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 47(Integer)
2023-11-28 21:18:36.871 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.872 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.872 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:18:36.892 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.893 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.893 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:18:36.911 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.912 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.912 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:18:36.931 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.931 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.932 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:18:36.953 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.953 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.954 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 44(Integer)
2023-11-28 21:18:36.992 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:36.992 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:36.992 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 43(Integer)
2023-11-28 21:18:37.012 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:37.012 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:37.012 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 42(Integer)
2023-11-28 21:18:37.034 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:37.035 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:37.035 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 40(Integer)
2023-11-28 21:18:37.050 DEBUG 22992 --- [XNIO-1 task-14] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:40.618  INFO 22992 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-11-28 21:18:40.703 DEBUG 22992 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:18:40.704 DEBUG 22992 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:18:40.727 DEBUG 22992 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:18:43.061 DEBUG 22992 --- [XNIO-1 task-20] 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-11-28 21:18:43.062 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:43.510 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:43.514 DEBUG 22992 --- [XNIO-1 task-20] 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-11-28 21:18:43.514 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:45.361 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:45.363 DEBUG 22992 --- [XNIO-1 task-20] 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-11-28 21:18:45.364 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 登录了考试系统(String), 2023-11-28 21:18:45.363(Timestamp)
2023-11-28 21:18:45.422 DEBUG 22992 --- [XNIO-1 task-20] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 21:18:45.756  INFO 22992 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-11-28 21:18:45.756  INFO 22992 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-11-28 21:18:45.756  INFO 22992 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-11-28 21:18:45.757  INFO 22992 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-11-28 21:18:45.762 DEBUG 22992 --- [XNIO-1 task-23] 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-11-28 21:18:45.762 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:45.900 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:45.900 DEBUG 22992 --- [XNIO-1 task-21] 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-11-28 21:18:45.901 DEBUG 22992 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:45.961 DEBUG 22992 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:45.962 DEBUG 22992 --- [XNIO-1 task-24] 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-11-28 21:18:45.963 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:46.014 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:46.014 DEBUG 22992 --- [XNIO-1 task-22] 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-11-28 21:18:46.015 DEBUG 22992 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:46.057 DEBUG 22992 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:46.057 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-11-28 21:18:46.057 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 1031(Integer), 1(Integer), 7(Integer)
2023-11-28 21:18:46.093 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 5
2023-11-28 21:18:46.094 DEBUG 22992 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-11-28 21:18:46.095 DEBUG 22992 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1031(Integer)
2023-11-28 21:18:46.122 DEBUG 22992 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-11-28 21:18:46.123 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-11-28 21:18:46.124 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1031(Integer)
2023-11-28 21:18:46.150 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.r.E.getByUserId                  : <==      Total: 6
2023-11-28 21:18:46.150 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:18:46.150 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 83(Integer), 1031(Integer)
2023-11-28 21:18:46.186 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:18:46.187 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-11-28 21:18:46.187 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 221(Integer), 222(Integer), 223(Integer), 225(Integer), 226(Integer), 227(Integer)
2023-11-28 21:18:46.212 DEBUG 22992 --- [XNIO-1 task-24] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 5
2023-11-28 21:18:46.213 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:18:46.213 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 84(Integer), 1031(Integer)
2023-11-28 21:18:46.261 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:18:46.261 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:18:46.262 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 85(Integer), 1031(Integer)
2023-11-28 21:18:46.301 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:18:46.302 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:18:46.303 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 221(Integer), 1031(Integer)
2023-11-28 21:18:46.354 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 0
2023-11-28 21:18:46.354 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:18:46.355 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 223(Integer), 1031(Integer)
2023-11-28 21:18:46.401 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:18:46.402 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: select e.* from t_exam_templates e inner join t_exam_templates_user u on e.id = u.templates_id WHERE e.status = 0 and u.user_id = ? 
2023-11-28 21:18:46.402 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 1031(Integer)
2023-11-28 21:18:46.437 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 7
2023-11-28 21:18:46.438 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.438 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 42(Integer)
2023-11-28 21:18:46.477 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.477 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.478 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 43(Integer)
2023-11-28 21:18:46.500 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.500 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.500 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 44(Integer)
2023-11-28 21:18:46.517 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.518 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.518 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 45(Integer)
2023-11-28 21:18:46.533 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.534 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.534 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 46(Integer)
2023-11-28 21:18:46.554 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.555 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.555 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 47(Integer)
2023-11-28 21:18:46.577 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.577 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:18:46.578 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 48(Integer)
2023-11-28 21:18:46.607 DEBUG 22992 --- [XNIO-1 task-23] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:18:46.608 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-11-28 21:18:46.609 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 2023-11-28 21:18:46.608(Timestamp), 1031(Integer), 4(Integer), 2023-11-28 21:18:46.608(Timestamp)
2023-11-28 21:18:46.641 DEBUG 22992 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-11-28 21:18:48.998  INFO 22992 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/templates/addTemplates/48
2023-11-28 21:18:49.059 DEBUG 22992 --- [XNIO-1 task-25] 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-11-28 21:18:49.059 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:18:49.095 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:18:49.096 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:18:49.097 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 48(Integer)
2023-11-28 21:18:49.161 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:18:49.161 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:18:49.161 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 21:18:49.199 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:18:49.200 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByTemplatesId             : ==>  Preparing: select id, label, multiple_choice, single_choice, true_false, templates_id, subject_id from t_exam_templates_question where templates_id = ? 
2023-11-28 21:18:49.201 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByTemplatesId             : ==> Parameters: 48(Integer)
2023-11-28 21:18:49.259 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByTemplatesId             : <==      Total: 1
2023-11-28 21:18:49.259 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getById                      : ==>  Preparing: select id, templates_id, user_id from t_exam_templates_user where templates_id = ? 
2023-11-28 21:18:49.260 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getById                      : ==> Parameters: 48(Integer)
2023-11-28 21:18:49.299 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getById                      : <==      Total: 1
2023-11-28 21:18:49.346 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.Q.getSubject                   : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where subject_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-11-28 21:18:49.346 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.Q.getSubject                   : ==> Parameters: 20(Integer)
2023-11-28 21:18:49.380 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.Q.getSubject                   : <==      Total: 10
2023-11-28 21:18:49.381 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) 
2023-11-28 21:18:49.381 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 426(Integer), 427(Integer), 428(Integer), 429(Integer), 430(Integer), 431(Integer), 434(Integer), 433(Integer)
2023-11-28 21:18:49.456 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 10
2023-11-28 21:18:49.464 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-11-28 21:18:49.465 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"name":"123","questionItems":[{"id":434,"itemOrder":0},{"id":424,"itemOrder":1},{"id":426,"itemOrder":2},{"id":430,"itemOrder":3},{"id":431,"itemOrder":4}]}](String), 2023-11-28 21:18:49.343(Timestamp)
2023-11-28 21:18:49.524 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-11-28 21:18:49.532 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper ( name, paper_type, score, question_count, suggest_time, frame_text_content_id, create_user, create_time, deleted, type, user_ids ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 21:18:49.534 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : ==> Parameters: CE4(String), 7(Integer), 100(Integer), 5(Integer), 120(Integer), 688(Integer), 1031(Integer), 2023-11-28 21:18:49.343(Timestamp), false(Boolean), 1(String), [[22,1031]](String)
2023-11-28 21:18:49.583 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 21:18:49.583 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:49.585 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:49.607 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:18:49.609 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-11-28 21:18:49.610 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 228(Integer), 1031(Integer), 0(String)
2023-11-28 21:18:49.686 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-11-28 21:18:49.687 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:49.687 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:49.711 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:18:49.713 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) 
2023-11-28 21:18:49.713 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 228(Integer), 0(String)
2023-11-28 21:18:50.885 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 1
2023-11-28 21:18:52.792 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 21:18:52.792 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 228(Integer)
2023-11-28 21:18:52.825 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:52.828 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:52.828 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 688(Integer)
2023-11-28 21:18:52.851 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.017 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 21:18:53.017 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 434(Integer), 424(Integer), 426(Integer), 430(Integer), 431(Integer)
2023-11-28 21:18:53.062 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 21:18:53.068 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:53.068 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 613(Integer)
2023-11-28 21:18:53.094 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.100 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:53.100 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-11-28 21:18:53.139 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.141 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:53.141 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 21:18:53.176 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.178 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:53.178 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-11-28 21:18:53.217 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.218 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:53.218 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-11-28 21:18:53.255 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:53.261 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:53.261 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:53.302 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:18:53.303 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:53.303 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:53.342 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:18:53.343 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:53.343 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:53.375 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:18:53.375 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:53.376 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:18:53.405 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:18:53.405 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.add                          : ==>  Preparing: insert into t_exam_templates_user_count (exam_paper_id, user_id, exam_templates_id) values (?, ?, ?) 
2023-11-28 21:18:53.406 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.add                          : ==> Parameters: 228(Integer), 1031(Integer), 48(Integer)
2023-11-28 21:18:53.463 DEBUG 22992 --- [XNIO-1 task-25] r.c.m.x.r.E.add                          : <==    Updates: 1
2023-11-28 21:18:53.988  INFO 22992 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-11-28 21:18:54.022  INFO 22992 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/228
2023-11-28 21:18:54.050 DEBUG 22992 --- [XNIO-1 task-26] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:18:54.051 DEBUG 22992 --- [XNIO-1 task-26] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:18:54.088 DEBUG 22992 --- [XNIO-1 task-26] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:18:54.088 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 21:18:54.088 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 228(Integer)
2023-11-28 21:18:54.121 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.123 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.123 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 688(Integer)
2023-11-28 21:18:54.157 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.158 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 21:18:54.158 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 434(Integer), 424(Integer), 426(Integer), 430(Integer), 431(Integer)
2023-11-28 21:18:54.196 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 21:18:54.197 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.197 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 613(Integer)
2023-11-28 21:18:54.232 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.233 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.233 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-11-28 21:18:54.254 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.255 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.256 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 21:18:54.289 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.290 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.290 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-11-28 21:18:54.312 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.313 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:18:54.313 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-11-28 21:18:54.349 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:18:54.350 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:54.350 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:54.391 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:18:54.392 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:54.392 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:54.426 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:18:54.426 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:18:54.427 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:18:54.448 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:18:54.448 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:18:54.448 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:18:54.475 DEBUG 22992 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:55:20.725  INFO 22992 --- [XNIO-1 task-28] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 21:55:25.830  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3224c07b (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:30.860  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@13e90145 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:35.875  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3a4df745 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:40.891  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@13739b77 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:45.904  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1ea506d3 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:50.955  WARN 22992 --- [XNIO-1 task-28] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@44a0afa9 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:55:51.105 ERROR 22992 --- [XNIO-1 task-28] c.m.x.c.s.exception.ExceptionHandle      : nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
 
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:78)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectOne(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy84.getUserByUserName(Unknown Source)
    at com.mindskip.xzs.service.impl.UserServiceImpl.getUserByUserName(UserServiceImpl.java:48)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$FastClassBySpringCGLIB$$921573c2.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$EnhancerBySpringCGLIB$$efa76ff2.getUserByUserName(<generated>)
    at com.mindskip.xzs.context.WebContext.getCurrentUser(WebContext.java:51)
    at com.mindskip.xzs.base.BaseApiController.getCurrentUser(BaseApiController.java:32)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController.answerSubmit(ExamPaperAnswerController.java:78)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$FastClassBySpringCGLIB$$f93c3f4f.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$EnhancerBySpringCGLIB$$c6b43940.answerSubmit(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:149)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
    at sun.reflect.GeneratedMethodAccessor108.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 117 common frames omitted
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81)
    at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
    at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
    at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:336)
    at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:85)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy147.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    ... 123 common frames omitted
Caused by: java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30208ms.
    at com.zaxxer.hikari.pool.HikariPool.createTimeoutException(HikariPool.java:676)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:190)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:155)
    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:128)
    at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78)
    ... 135 common frames omitted
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:89)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:63)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:73)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2488)
    at com.zaxxer.hikari.pool.PoolBase.setNetworkTimeout(PoolBase.java:550)
    at com.zaxxer.hikari.pool.PoolBase.isConnectionAlive(PoolBase.java:165)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:179)
    ... 140 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
    at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:1209)
    at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:567)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2484)
    ... 143 common frames omitted
 
2023-11-28 21:56:10.688  INFO 22992 --- [XNIO-1 task-29] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 21:56:15.703  WARN 22992 --- [XNIO-1 task-29] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7e9c00dd (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:56:20.714  WARN 22992 --- [XNIO-1 task-29] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@a942638 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:56:21.581  INFO 22992 --- [XNIO-1 task-30] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:56:21.590  INFO 22992 --- [XNIO-1 task-31] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 21:56:21.640 DEBUG 22992 --- [XNIO-1 task-31] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status IS NULL 
2023-11-28 21:56:21.644 DEBUG 22992 --- [XNIO-1 task-31] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 21:56:21.670 DEBUG 22992 --- [XNIO-1 task-31] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 21:56:25.430  INFO 22992 --- [XNIO-1 task-32] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-11-28 21:56:25.543 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT u.exam_templates_id AS id, count(*) AS count, u.user_id AS userId FROM `t_exam_templates_user_count` u LEFT JOIN t_exam_templates e ON u.exam_templates_id = e.id WHERE e.status IS NULL GROUP BY u.exam_templates_id, u.user_id) table_count 
2023-11-28 21:56:25.543 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-11-28 21:56:25.561 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-11-28 21:56:25.564 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT u.exam_templates_id AS id, count(*) AS count, u.user_id AS userId FROM `t_exam_templates_user_count` u LEFT JOIN t_exam_templates e ON u.exam_templates_id = e.id WHERE e.status IS NULL GROUP BY u.exam_templates_id, u.user_id order by id desc LIMIT ? 
2023-11-28 21:56:25.565 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-11-28 21:56:25.587 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.E.list                         : <==      Total: 6
2023-11-28 21:56:25.590 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.590 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 31(Integer)
2023-11-28 21:56:25.612 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.613 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.613 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:25.647 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.647 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.648 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 31(Integer)
2023-11-28 21:56:25.668 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.669 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.669 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 21:56:25.694 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.695 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.695 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 30(Integer)
2023-11-28 21:56:25.716 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.718 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.718 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:25.718  WARN 22992 --- [XNIO-1 task-29] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7ad21ae0 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:56:25.746 DEBUG 22992 --- [XNIO-1 task-29] 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-11-28 21:56:25.746 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:56:25.748 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.748 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.748 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 29(Integer)
2023-11-28 21:56:25.772 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.772 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.773 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 21:56:25.774 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:56:25.778 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 21:56:25.778 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 228(Integer)
2023-11-28 21:56:25.804 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.805 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.805 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-11-28 21:56:25.809 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:56:25.810 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:56:25.810 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 688(Integer)
2023-11-28 21:56:25.824 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.825 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.826 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:25.841 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:56:25.851 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 21:56:25.851 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 434(Integer), 424(Integer), 426(Integer), 430(Integer), 431(Integer)
2023-11-28 21:56:25.853 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.855 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:56:25.855 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-11-28 21:56:25.882 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 21:56:25.884 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:56:25.884 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:25.884 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:25.916 DEBUG 22992 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:25.961 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( exam_paper_id, paper_name, paper_type, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 21:56:25.962 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertSelective              : ==> Parameters: 228(Integer), CE4(String), 7(Integer), 20(Integer), 20(Integer), 100(Integer), 1(Integer), 5(Integer), 2185(Integer), 2(Integer), 1031(Integer), 2023-11-28 21:56:25.777(Timestamp)
2023-11-28 21:56:26.013 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 21:56:26.035 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertList                   : ==>  Preparing: insert into t_exam_paper_question_customer_answer ( question_id, question_score, subject_id, create_time, create_user, text_content_id, exam_paper_id, question_type, answer, customer_score, exam_paper_answer_id , do_right,question_text_content_id,item_order) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) 
2023-11-28 21:56:26.038 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertList                   : ==> Parameters: 434(Integer), 20(Integer), null, 2023-11-28 21:56:25.777(Timestamp), 1031(Integer), null, 228(Integer), 3(Integer), A(String), 0(Integer), 6231(Integer), false(Boolean), 613(Integer), 0(Integer), 424(Integer), 20(Integer), null, 2023-11-28 21:56:25.777(Timestamp), 1031(Integer), null, 228(Integer), 1(Integer), B(String), 0(Integer), 6231(Integer), false(Boolean), 528(Integer), 1(Integer), 426(Integer), 20(Integer), null, 2023-11-28 21:56:25.777(Timestamp), 1031(Integer), null, 228(Integer), 3(Integer), A(String), 20(Integer), 6231(Integer), true(Boolean), 530(Integer), 2(Integer), 430(Integer), 20(Integer), null, 2023-11-28 21:56:25.777(Timestamp), 1031(Integer), null, 228(Integer), 1(Integer), B(String), 0(Integer), 6231(Integer), false(Boolean), 536(Integer), 3(Integer), 431(Integer), 20(Integer), null, 2023-11-28 21:56:25.777(Timestamp), 1031(Integer), null, 228(Integer), 2(Integer), B(String), 0(Integer), 6231(Integer), false(Boolean), 537(Integer), 4(Integer)
2023-11-28 21:56:26.091 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.E.insertList                   : <==    Updates: 5
2023-11-28 21:56:26.160 DEBUG 22992 --- [XNIO-1 task-29] 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-11-28 21:56:26.160 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 提交试卷:CE4 得分:2 耗时:36分 25秒(String), 2023-11-28 21:56:25.898(Timestamp)
2023-11-28 21:56:26.213 DEBUG 22992 --- [XNIO-1 task-29] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 21:56:26.594  WARN 22992 --- [XNIO-1 task-30] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@12f176db (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 21:56:26.663 DEBUG 22992 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:56:26.663 DEBUG 22992 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:56:26.683 DEBUG 22992 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:56:29.978  INFO 22992 --- [XNIO-1 task-33] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/sourceList
2023-11-28 21:56:30.023 DEBUG 22992 --- [XNIO-1 task-33] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==>  Preparing: select * from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:56:30.024 DEBUG 22992 --- [XNIO-1 task-33] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==> Parameters: 1027(Integer), 31(Integer)
2023-11-28 21:56:30.049 DEBUG 22992 --- [XNIO-1 task-33] r.c.m.x.r.E.getByUserIdAndTemplatesId    : <==      Total: 2
2023-11-28 21:56:30.064 DEBUG 22992 --- [XNIO-1 task-33] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==>  Preparing: select count(0) from (select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) , (?,?) )) tmp_count 
2023-11-28 21:56:30.065 DEBUG 22992 --- [XNIO-1 task-33] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==> Parameters: 204(Integer), 1027(Integer), 205(Integer), 1027(Integer)
2023-11-28 21:56:30.092 DEBUG 22992 --- [XNIO-1 task-33] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : <==      Total: 1
2023-11-28 21:56:38.780  INFO 22992 --- [XNIO-1 task-34] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-11-28 21:56:38.781  INFO 22992 --- [XNIO-1 task-35] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-11-28 21:56:38.806  INFO 22992 --- [XNIO-1 task-36] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-11-28 21:56:38.914 DEBUG 22992 --- [XNIO-1 task-36] 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-11-28 21:56:38.915 DEBUG 22992 --- [XNIO-1 task-35] 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-11-28 21:56:38.914 DEBUG 22992 --- [XNIO-1 task-34] 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-11-28 21:56:38.915 DEBUG 22992 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:56:38.915 DEBUG 22992 --- [XNIO-1 task-34] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:56:38.915 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:56:38.934 DEBUG 22992 --- [XNIO-1 task-34] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:56:38.935 DEBUG 22992 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-11-28 21:56:38.935 DEBUG 22992 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1031(Integer)
2023-11-28 21:56:38.946 DEBUG 22992 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:56:38.963 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:56:38.973 DEBUG 22992 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-11-28 21:56:39.114 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-11-28 21:56:39.114 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1031(Integer)
2023-11-28 21:56:40.832 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-11-28 21:56:40.835 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage                  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer WHERE create_user = ? order by id desc LIMIT ? 
2023-11-28 21:56:40.835 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1031(Integer), 10(Integer)
2023-11-28 21:56:40.875 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.studentPage                  : <==      Total: 8
2023-11-28 21:56:40.893 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:40.895 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6231(Integer)
2023-11-28 21:56:40.932 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:40.934 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:40.935 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 21:56:40.961 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:40.970 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:40.970 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:40.991 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:40.994 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:40.994 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6230(Integer)
2023-11-28 21:56:41.027 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.027 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.028 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 227(Integer)
2023-11-28 21:56:41.052 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.053 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.053 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.096 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.097 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.097 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6229(Integer)
2023-11-28 21:56:41.131 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.132 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.132 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 226(Integer)
2023-11-28 21:56:41.161 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.163 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.163 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.184 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.185 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.185 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6228(Integer)
2023-11-28 21:56:41.216 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.216 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.217 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 225(Integer)
2023-11-28 21:56:41.234 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.235 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.235 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.266 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.267 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.267 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6225(Integer)
2023-11-28 21:56:41.294 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.295 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.295 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 223(Integer)
2023-11-28 21:56:41.333 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.334 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.334 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.662 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.662 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.673 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6224(Integer)
2023-11-28 21:56:41.701 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.702 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.702 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-11-28 21:56:41.732 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.733 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.733 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.754 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.755 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.755 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6223(Integer)
2023-11-28 21:56:41.774 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.775 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.775 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-11-28 21:56:41.812 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.812 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.812 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.842 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:41.842 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 21:56:41.842 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6222(Integer)
2023-11-28 21:56:41.865 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 21:56:41.866 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:56:41.866 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-11-28 21:56:41.892 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:56:41.893 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 21:56:41.893 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 21:56:41.921 DEBUG 22992 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 21:56:52.993  INFO 22992 --- [XNIO-1 task-37] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:56:52.993  INFO 22992 --- [XNIO-1 task-38] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 21:56:53.012 DEBUG 22992 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:56:53.012 DEBUG 22992 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:56:53.013 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 21:56:53.013 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 21:56:53.027 DEBUG 22992 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:56:53.033 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 21:56:53.034 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 21:56:53.034 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 21:56:53.054 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:56:53.054 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.055 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 51(Integer)
2023-11-28 21:56:53.076 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.076 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.076 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 50(Integer)
2023-11-28 21:56:53.095 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.096 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.096 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 21:56:53.115 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.115 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.116 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 47(Integer)
2023-11-28 21:56:53.134 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.134 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.134 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:56:53.153 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.154 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.154 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:56:53.173 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.173 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.173 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:56:53.192 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.193 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.193 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:56:53.212 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.212 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.212 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 44(Integer)
2023-11-28 21:56:53.230 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:53.230 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:56:53.231 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 43(Integer)
2023-11-28 21:56:53.250 DEBUG 22992 --- [XNIO-1 task-38] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:56:55.065  INFO 22992 --- [XNIO-1 task-39] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:56:55.101 DEBUG 22992 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:56:55.101 DEBUG 22992 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:56:55.117 DEBUG 22992 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:56:55.366  INFO 22992 --- [XNIO-1 task-41] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:56:55.367 DEBUG 22992 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:56:55.367 DEBUG 22992 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:56:55.368  INFO 22992 --- [XNIO-1 task-40] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-11-28 21:56:55.422 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:56:55.422 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:56:55.422 DEBUG 22992 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:56:55.442 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:56:55.443 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:56:55.444 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 15(Integer)
2023-11-28 21:56:55.471 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 0
2023-11-28 21:56:55.471 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:56:55.471 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 16(Integer)
2023-11-28 21:56:55.487 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:56:55.488 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.488 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:56:55.508 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.508 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:56:55.508 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 17(Integer)
2023-11-28 21:56:55.526 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 2
2023-11-28 21:56:55.527 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.527 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:55.551 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.552 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.552 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:56:55.568 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.568 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:56:55.568 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 18(Integer)
2023-11-28 21:56:55.587 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 3
2023-11-28 21:56:55.588 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.588 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 21:56:55.607 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.607 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.607 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:56:55.631 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.631 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.632 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:56:55.652 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:56:55.652 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:56:55.652 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 22(Integer)
2023-11-28 21:56:55.668 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:56:55.669 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:56:55.669 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:56:55.688 DEBUG 22992 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:57:35.825  INFO 22992 --- [Thread-15] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-11-28 21:57:35.832  INFO 22992 --- [Thread-15] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-11-28 21:57:35.841  INFO 22992 --- [Thread-15] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-11-28 21:57:42.964  INFO 17252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 17252 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-11-28 21:57:42.968  INFO 17252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-11-28 21:57:43.026  INFO 17252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-11-28 21:57:43.026  INFO 17252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-11-28 21:57:44.875  INFO 17252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$459fe966] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-11-28 21:57:45.330  WARN 17252 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-11-28 21:57:45.365  INFO 17252 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-11-28 21:57:45.365  INFO 17252 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2337 ms
2023-11-28 21:57:47.152  INFO 17252 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-11-28 21:57:47.419  INFO 17252 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@66d02b08, org.springframework.security.web.context.SecurityContextPersistenceFilter@1e1d55ec, org.springframework.security.web.header.HeaderWriterFilter@1a487f35, org.springframework.web.filter.CorsFilter@686d6edd, org.springframework.security.web.authentication.logout.LogoutFilter@40a0b93, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@4f503b87, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2b82349d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@19fcb5b2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@174d944f, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@66f73e65, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@69de70a4, org.springframework.security.web.session.SessionManagementFilter@4131d273, org.springframework.security.web.access.ExceptionTranslationFilter@293d5cc1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3ff643fe]
2023-11-28 21:57:47.450  INFO 17252 --- [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-11-28 21:57:47.871  INFO 17252 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-11-28 21:57:47.891  INFO 17252 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-11-28 21:57:47.929  INFO 17252 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-11-28 21:57:48.102  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-11-28 21:57:48.139  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-11-28 21:57:48.158  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-11-28 21:57:48.166  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-11-28 21:57:48.172  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-11-28 21:57:48.209  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-11-28 21:57:48.220  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-11-28 21:57:48.260  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-11-28 21:57:48.265  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-11-28 21:57:48.268  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-11-28 21:57:48.282  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-11-28 21:57:48.286  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-11-28 21:57:48.287  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-11-28 21:57:48.296  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-11-28 21:57:48.303  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-11-28 21:57:48.304  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-11-28 21:57:48.308  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-11-28 21:57:48.310  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-11-28 21:57:48.311  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-11-28 21:57:48.319  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageJudgeListUsingPOST_1
2023-11-28 21:57:48.324  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-11-28 21:57:48.332  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-11-28 21:57:48.336  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingGET_1
2023-11-28 21:57:48.341  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-11-28 21:57:48.343  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-11-28 21:57:48.345  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportTemplatesIdUsingGET_1
2023-11-28 21:57:48.347  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-11-28 21:57:48.347  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_2
2023-11-28 21:57:48.353  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-11-28 21:57:48.361  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-11-28 21:57:48.363  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-11-28 21:57:48.366  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-11-28 21:57:48.367  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-11-28 21:57:48.386  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-11-28 21:57:48.388  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-11-28 21:57:48.390  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-11-28 21:57:48.393  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-11-28 21:57:48.398  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-11-28 21:57:48.400  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-11-28 21:57:48.407  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-11-28 21:57:48.408  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-11-28 21:57:48.408  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-11-28 21:57:48.409  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-11-28 21:57:48.409  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-11-28 21:57:48.409  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-11-28 21:57:48.410  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-11-28 21:57:48.410  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-11-28 21:57:48.423  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-11-28 21:57:48.429  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-11-28 21:57:48.431  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-11-28 21:57:48.432  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-11-28 21:57:48.433  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-11-28 21:57:48.434  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-11-28 21:57:48.435  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-11-28 21:57:48.436  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-11-28 21:57:48.437  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-11-28 21:57:48.442  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-11-28 21:57:48.443  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-11-28 21:57:48.446  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-11-28 21:57:48.452  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-11-28 21:57:48.456  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-11-28 21:57:48.457  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-11-28 21:57:48.460  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-11-28 21:57:48.462  INFO 17252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-11-28 21:57:48.993  INFO 17252 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-11-28 21:57:49.007  INFO 17252 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-11-28 21:57:49.127  INFO 17252 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-11-28 21:57:49.131  INFO 17252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.897 seconds (JVM running for 8.378)
2023-11-28 21:58:00.877  INFO 17252 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-11-28 21:58:00.877  INFO 17252 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-11-28 21:58:00.886  INFO 17252 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 9 ms
2023-11-28 21:58:14.986  INFO 17252 --- [XNIO-1 task-2] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-11-28 21:58:15.049  INFO 17252 --- [XNIO-1 task-2] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-11-28 21:58:15.339  INFO 17252 --- [XNIO-1 task-3] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:58:15.345  INFO 17252 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:58:15.348  INFO 17252 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-11-28 21:58:15.678  INFO 17252 --- [XNIO-1 task-2] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-11-28 21:58:15.693 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:58:15.727 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:58:15.785 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:58:15.792 DEBUG 17252 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:58:15.792 DEBUG 17252 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:58:15.819 DEBUG 17252 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:58:15.820 DEBUG 17252 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:58:15.822 DEBUG 17252 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:58:15.878 DEBUG 17252 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:58:15.879 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:58:15.880 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 15(Integer)
2023-11-28 21:58:15.913 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 0
2023-11-28 21:58:15.915 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-11-28 21:58:15.916 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-11-28 21:58:15.922 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:58:15.922 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 16(Integer)
2023-11-28 21:58:15.945 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-11-28 21:58:15.952 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-11-28 21:58:15.952 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-11-28 21:58:15.966 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:58:15.973 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:15.974 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:58:15.987 DEBUG 17252 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 5
2023-11-28 21:58:16.018 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.019 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:58:16.019 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 17(Integer)
2023-11-28 21:58:16.052 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 2
2023-11-28 21:58:16.054 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.055 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:58:16.089 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.090 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.090 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:58:16.137 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.138 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:58:16.138 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 18(Integer)
2023-11-28 21:58:16.169 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 3
2023-11-28 21:58:16.169 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.169 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 21:58:16.212 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.214 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.214 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 21:58:16.279 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.280 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.281 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 21:58:16.317 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:16.318 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 21:58:16.319 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 22(Integer)
2023-11-28 21:58:16.352 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 21:58:16.355 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:58:16.356 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:58:16.402 DEBUG 17252 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:58:42.945  INFO 17252 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/edit
2023-11-28 21:58:43.056 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesMapper.add        : ==>  Preparing: insert into t_exam_templates (name, paper_type, suggest_time, title_name, ctime, status, menu_ids) values (?, ?, ?, ?, ?, ?, ?) 
2023-11-28 21:58:43.060 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesMapper.add        : ==> Parameters: CE6(String), 7(String), 120(String), 123(String), 2023-11-28 21:58:43.053(Timestamp), 0(String), [[22,1031]](String)
2023-11-28 21:58:43.111 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesMapper.add        : <==    Updates: 1
2023-11-28 21:58:43.120 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_question(id, label, multiple_choice, single_choice, true_false, templates_id, subject_id) values (?,?,?,?,?,?, ?) 
2023-11-28 21:58:43.120 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : ==> Parameters: null, 语文 (String), 1(String), 2(String), 2(String), 52(Integer), 20(Integer)
2023-11-28 21:58:43.183 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 21:58:43.191 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_subject(id, subject_id, templates_id) values (?,?,?) 
2023-11-28 21:58:43.192 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : ==> Parameters: null, 20(Integer), 52(Integer)
2023-11-28 21:58:43.255 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 21:58:43.258 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==>  Preparing: insert into t_exam_templates_user (templates_id, user_id) values (?, ?) 
2023-11-28 21:58:43.259 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==> Parameters: 52(String), 1031(String)
2023-11-28 21:58:43.299 DEBUG 17252 --- [XNIO-1 task-6] r.c.m.x.r.ExamTemplatesUserMapper.add    : <==    Updates: 1
2023-11-28 21:58:44.039  INFO 17252 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 21:58:44.138 DEBUG 17252 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 21:58:44.138 DEBUG 17252 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 21:58:44.174 DEBUG 17252 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 21:58:44.355  INFO 17252 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 21:58:44.360 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 21:58:44.361 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 21:58:44.385 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 21:58:44.387 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 21:58:44.387 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 21:58:44.421 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:58:44.422 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.423 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 52(Integer)
2023-11-28 21:58:44.450 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.451 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.451 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 51(Integer)
2023-11-28 21:58:44.479 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.480 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.480 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 50(Integer)
2023-11-28 21:58:44.512 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.513 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.514 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 21:58:44.537 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.538 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.538 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 47(Integer)
2023-11-28 21:58:44.558 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.560 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.561 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:58:44.592 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.593 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.593 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 46(Integer)
2023-11-28 21:58:44.614 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.615 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.615 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:58:44.644 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.644 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.645 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 45(Integer)
2023-11-28 21:58:44.672 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:44.673 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:44.673 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 44(Integer)
2023-11-28 21:58:44.688 DEBUG 17252 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:47.160  INFO 17252 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-11-28 21:58:47.249 DEBUG 17252 --- [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-11-28 21:58:47.249 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:47.281 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:47.300 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-11-28 21:58:47.300 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 1031(Integer), 1(Integer), 7(Integer)
2023-11-28 21:58:47.332 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 5
2023-11-28 21:58:47.340 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:47.340 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 83(Integer), 1031(Integer)
2023-11-28 21:58:47.374 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:47.375 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:47.375 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 84(Integer), 1031(Integer)
2023-11-28 21:58:47.415 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:47.415 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:47.415 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 85(Integer), 1031(Integer)
2023-11-28 21:58:47.449 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:47.450 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:47.450 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 221(Integer), 1031(Integer)
2023-11-28 21:58:47.503 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 0
2023-11-28 21:58:47.504 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:47.505 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 223(Integer), 1031(Integer)
2023-11-28 21:58:47.564 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:47.565 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: select e.* from t_exam_templates e inner join t_exam_templates_user u on e.id = u.templates_id WHERE e.status = 0 and u.user_id = ? 
2023-11-28 21:58:47.565 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 1031(Integer)
2023-11-28 21:58:47.602 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:58:47.603 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.603 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 42(Integer)
2023-11-28 21:58:47.644 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.645 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.645 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 43(Integer)
2023-11-28 21:58:47.675 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.676 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.676 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 44(Integer)
2023-11-28 21:58:47.695 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.695 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.696 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 45(Integer)
2023-11-28 21:58:47.725 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.725 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.725 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 46(Integer)
2023-11-28 21:58:47.753 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.754 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.754 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 47(Integer)
2023-11-28 21:58:47.781 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.782 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.782 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 48(Integer)
2023-11-28 21:58:47.803 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.806 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.807 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 50(Integer)
2023-11-28 21:58:47.827 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.827 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.828 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 51(Integer)
2023-11-28 21:58:47.854 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.854 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:47.855 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 52(Integer)
2023-11-28 21:58:47.890 DEBUG 17252 --- [XNIO-1 task-9] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:47.891 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-11-28 21:58:47.891 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 2023-11-28 21:58:47.89(Timestamp), 1031(Integer), 4(Integer), 2023-11-28 21:58:47.89(Timestamp)
2023-11-28 21:58:47.928 DEBUG 17252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-11-28 21:58:49.547 DEBUG 17252 --- [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-11-28 21:58:49.548 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:49.576 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.041 DEBUG 17252 --- [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-11-28 21:58:50.041 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:50.150 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.152 DEBUG 17252 --- [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-11-28 21:58:50.153 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 登录了考试系统(String), 2023-11-28 21:58:50.15(Timestamp)
2023-11-28 21:58:50.221 DEBUG 17252 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 21:58:50.261  INFO 17252 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-11-28 21:58:50.263 DEBUG 17252 --- [XNIO-1 task-12] 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-11-28 21:58:50.263 DEBUG 17252 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:50.307 DEBUG 17252 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.311 DEBUG 17252 --- [XNIO-1 task-12] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-11-28 21:58:50.311 DEBUG 17252 --- [XNIO-1 task-12] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1031(Integer)
2023-11-28 21:58:50.332 DEBUG 17252 --- [XNIO-1 task-12] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-11-28 21:58:50.597  INFO 17252 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-11-28 21:58:50.598 DEBUG 17252 --- [XNIO-1 task-14] 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-11-28 21:58:50.598 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:50.608  INFO 17252 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-11-28 21:58:50.609  INFO 17252 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-11-28 21:58:50.713 DEBUG 17252 --- [XNIO-1 task-13] 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-11-28 21:58:50.713 DEBUG 17252 --- [XNIO-1 task-15] 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-11-28 21:58:50.713 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:50.713 DEBUG 17252 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:50.715 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.715 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-11-28 21:58:50.715 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1031(Integer)
2023-11-28 21:58:50.753 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.r.E.getByUserId                  : <==      Total: 7
2023-11-28 21:58:50.753 DEBUG 17252 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.753 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:50.755 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-11-28 21:58:50.755 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 1031(Integer), 1(Integer), 7(Integer)
2023-11-28 21:58:50.755 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-11-28 21:58:50.755 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 221(Integer), 222(Integer), 223(Integer), 225(Integer), 226(Integer), 227(Integer), 228(Integer)
2023-11-28 21:58:50.789 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 5
2023-11-28 21:58:50.790 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:50.790 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 83(Integer), 1031(Integer)
2023-11-28 21:58:50.807 DEBUG 17252 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 6
2023-11-28 21:58:50.821 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:50.822 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:50.823 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 84(Integer), 1031(Integer)
2023-11-28 21:58:50.858 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:50.859 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:50.860 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 85(Integer), 1031(Integer)
2023-11-28 21:58:50.894 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:50.895 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:50.896 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 221(Integer), 1031(Integer)
2023-11-28 21:58:50.940 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 0
2023-11-28 21:58:50.941 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 21:58:50.941 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 223(Integer), 1031(Integer)
2023-11-28 21:58:50.980 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 21:58:50.981 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: select e.* from t_exam_templates e inner join t_exam_templates_user u on e.id = u.templates_id WHERE e.status = 0 and u.user_id = ? 
2023-11-28 21:58:50.981 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 1031(Integer)
2023-11-28 21:58:51.020 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 21:58:51.020 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.020 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 42(Integer)
2023-11-28 21:58:51.048 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.049 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.049 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 43(Integer)
2023-11-28 21:58:51.095 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.097 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.097 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 44(Integer)
2023-11-28 21:58:51.119 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.119 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.119 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 45(Integer)
2023-11-28 21:58:51.151 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.152 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.152 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 46(Integer)
2023-11-28 21:58:51.173 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.173 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.173 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 47(Integer)
2023-11-28 21:58:51.199 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.200 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.200 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 48(Integer)
2023-11-28 21:58:51.232 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.233 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.234 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 50(Integer)
2023-11-28 21:58:51.256 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.256 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.256 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 51(Integer)
2023-11-28 21:58:51.286 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.287 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 21:58:51.287 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 52(Integer)
2023-11-28 21:58:51.312 DEBUG 17252 --- [XNIO-1 task-13] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 21:58:51.313 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-11-28 21:58:51.314 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 2023-11-28 21:58:51.312(Timestamp), 1031(Integer), 4(Integer), 2023-11-28 21:58:51.312(Timestamp)
2023-11-28 21:58:51.348 DEBUG 17252 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-11-28 21:58:59.763  INFO 17252 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/templates/addTemplates/52
2023-11-28 21:58:59.809 DEBUG 17252 --- [XNIO-1 task-16] 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-11-28 21:58:59.809 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 21:58:59.855 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 21:58:59.856 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 21:58:59.857 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 52(Integer)
2023-11-28 21:58:59.884 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 21:58:59.884 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 21:58:59.884 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 52(Integer)
2023-11-28 21:58:59.914 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 21:58:59.915 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByTemplatesId             : ==>  Preparing: select id, label, multiple_choice, single_choice, true_false, templates_id, subject_id from t_exam_templates_question where templates_id = ? 
2023-11-28 21:58:59.916 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByTemplatesId             : ==> Parameters: 52(Integer)
2023-11-28 21:58:59.952 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByTemplatesId             : <==      Total: 1
2023-11-28 21:58:59.954 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getById                      : ==>  Preparing: select id, templates_id, user_id from t_exam_templates_user where templates_id = ? 
2023-11-28 21:58:59.954 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getById                      : ==> Parameters: 52(Integer)
2023-11-28 21:58:59.981 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getById                      : <==      Total: 1
2023-11-28 21:59:00.050 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.Q.getSubject                   : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where subject_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-11-28 21:59:00.052 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.Q.getSubject                   : ==> Parameters: 20(Integer)
2023-11-28 21:59:00.085 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.Q.getSubject                   : <==      Total: 10
2023-11-28 21:59:00.089 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) 
2023-11-28 21:59:00.089 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 426(Integer), 427(Integer), 428(Integer), 429(Integer), 430(Integer), 431(Integer), 434(Integer), 433(Integer)
2023-11-28 21:59:00.139 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 10
2023-11-28 21:59:00.149 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-11-28 21:59:00.149 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"name":"123","questionItems":[{"id":425,"itemOrder":0},{"id":426,"itemOrder":1},{"id":427,"itemOrder":2},{"id":429,"itemOrder":3},{"id":430,"itemOrder":4}]}](String), 2023-11-28 21:59:00.047(Timestamp)
2023-11-28 21:59:00.220 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-11-28 21:59:00.227 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper ( name, paper_type, score, question_count, suggest_time, frame_text_content_id, create_user, create_time, deleted, type, user_ids ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 21:59:00.228 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.insertSelective              : ==> Parameters: CE6(String), 7(Integer), 100(Integer), 5(Integer), 120(Integer), 689(Integer), 1031(Integer), 2023-11-28 21:59:00.047(Timestamp), false(Boolean), 1(String), [[22,1031]](String)
2023-11-28 21:59:00.294 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 21:59:00.296 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:00.296 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.327 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:59:00.329 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-11-28 21:59:00.330 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 229(Integer), 1031(Integer), 0(String)
2023-11-28 21:59:00.387 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-11-28 21:59:00.388 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:00.388 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.413 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:59:00.414 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) 
2023-11-28 21:59:00.415 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 229(Integer), 0(String)
2023-11-28 21:59:00.471 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 1
2023-11-28 21:59:00.542 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 21:59:00.542 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.575 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.577 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.577 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 689(Integer)
2023-11-28 21:59:00.615 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.619 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 21:59:00.619 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 425(Integer), 426(Integer), 427(Integer), 429(Integer), 430(Integer)
2023-11-28 21:59:00.658 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 21:59:00.663 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.664 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-11-28 21:59:00.691 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.708 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.708 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 21:59:00.734 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.735 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.735 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-11-28 21:59:00.763 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.764 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.765 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-11-28 21:59:00.782 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.782 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:00.782 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-11-28 21:59:00.809 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:00.813 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:00.813 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.845 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:59:00.847 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:00.847 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.882 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:59:00.883 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:00.883 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:00.911 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:59:00.912 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:59:00.912 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:59:00.937 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 21:59:00.937 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.add                          : ==>  Preparing: insert into t_exam_templates_user_count (exam_paper_id, user_id, exam_templates_id) values (?, ?, ?) 
2023-11-28 21:59:00.937 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.add                          : ==> Parameters: 229(Integer), 1031(Integer), 52(Integer)
2023-11-28 21:59:01.010 DEBUG 17252 --- [XNIO-1 task-16] r.c.m.x.r.E.add                          : <==    Updates: 1
2023-11-28 21:59:01.594  INFO 17252 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-11-28 21:59:01.618  INFO 17252 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/229
2023-11-28 21:59:01.645 DEBUG 17252 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 21:59:01.645 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 21:59:01.645 DEBUG 17252 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 21:59:01.645 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 229(Integer)
2023-11-28 21:59:01.685 DEBUG 17252 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 21:59:01.691 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:01.692 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:01.692 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 689(Integer)
2023-11-28 21:59:01.723 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:01.724 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 21:59:01.724 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 425(Integer), 426(Integer), 427(Integer), 429(Integer), 430(Integer)
2023-11-28 21:59:01.912 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 21:59:01.914 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:01.914 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-11-28 21:59:01.974 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:01.978 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:01.978 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 21:59:02.015 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:02.016 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:02.016 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-11-28 21:59:02.054 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:02.056 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:02.056 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-11-28 21:59:02.094 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:02.096 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 21:59:02.096 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-11-28 21:59:02.124 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 21:59:02.125 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:02.125 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:02.166 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:59:02.178 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:02.179 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:02.208 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 21:59:02.209 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 21:59:02.209 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 21:59:02.244 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 21:59:02.245 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 21:59:02.245 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 21:59:02.296 DEBUG 17252 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:03:53.318  INFO 17252 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 23:03:59.824  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@48e18fc6 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:04.850  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7dbecfba (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:09.867  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3965f074 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:14.882  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@610f6db1 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:20.014  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@6ac7ad35 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:25.028  WARN 17252 --- [XNIO-1 task-19] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4a017eca (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:25.156 ERROR 17252 --- [XNIO-1 task-19] c.m.x.c.s.exception.ExceptionHandle      : nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
 
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:78)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectOne(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy84.getUserByUserName(Unknown Source)
    at com.mindskip.xzs.service.impl.UserServiceImpl.getUserByUserName(UserServiceImpl.java:48)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$FastClassBySpringCGLIB$$921573c2.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$EnhancerBySpringCGLIB$$510df6f2.getUserByUserName(<generated>)
    at com.mindskip.xzs.context.WebContext.getCurrentUser(WebContext.java:51)
    at com.mindskip.xzs.base.BaseApiController.getCurrentUser(BaseApiController.java:32)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController.answerSubmit(ExamPaperAnswerController.java:78)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$FastClassBySpringCGLIB$$f93c3f4f.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$EnhancerBySpringCGLIB$$cdba045f.answerSubmit(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:149)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
    at sun.reflect.GeneratedMethodAccessor89.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 117 common frames omitted
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81)
    at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
    at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
    at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:336)
    at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:85)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy148.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    ... 123 common frames omitted
Caused by: java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 31710ms.
    at com.zaxxer.hikari.pool.HikariPool.createTimeoutException(HikariPool.java:676)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:190)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:155)
    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:128)
    at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78)
    ... 135 common frames omitted
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:89)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:63)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:73)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2488)
    at com.zaxxer.hikari.pool.PoolBase.setNetworkTimeout(PoolBase.java:550)
    at com.zaxxer.hikari.pool.PoolBase.isConnectionAlive(PoolBase.java:165)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:179)
    ... 140 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
    at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:1209)
    at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:567)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2484)
    ... 143 common frames omitted
 
2023-11-28 23:04:26.139  INFO 17252 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 23:04:31.147  WARN 17252 --- [XNIO-1 task-20] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@39fa38b3 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:36.162  WARN 17252 --- [XNIO-1 task-20] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2490aabd (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:41.202  WARN 17252 --- [XNIO-1 task-20] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5563f057 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:46.313  WARN 17252 --- [XNIO-1 task-20] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2002016e (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:04:46.381 DEBUG 17252 --- [XNIO-1 task-20] 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-11-28 23:04:46.394 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:04:46.449 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:04:46.476 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 23:04:46.477 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 229(Integer)
2023-11-28 23:04:46.496 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:04:46.500 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:04:46.500 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 689(Integer)
2023-11-28 23:04:46.532 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:04:46.554 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 23:04:46.555 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 425(Integer), 426(Integer), 427(Integer), 429(Integer), 430(Integer)
2023-11-28 23:04:46.578 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 23:04:46.717 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( exam_paper_id, paper_name, paper_type, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 23:04:46.720 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertSelective              : ==> Parameters: 229(Integer), CE6(String), 7(Integer), 40(Integer), 40(Integer), 100(Integer), 2(Integer), 5(Integer), 3889(Integer), 2(Integer), 1031(Integer), 2023-11-28 23:04:46.471(Timestamp)
2023-11-28 23:04:46.768 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 23:04:46.775 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertList                   : ==>  Preparing: insert into t_exam_paper_question_customer_answer ( question_id, question_score, subject_id, create_time, create_user, text_content_id, exam_paper_id, question_type, answer, customer_score, exam_paper_answer_id , do_right,question_text_content_id,item_order) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) 
2023-11-28 23:04:46.778 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertList                   : ==> Parameters: 425(Integer), 20(Integer), null, 2023-11-28 23:04:46.471(Timestamp), 1031(Integer), null, 229(Integer), 2(Integer), B(String), 0(Integer), 6232(Integer), false(Boolean), 529(Integer), 0(Integer), 426(Integer), 20(Integer), null, 2023-11-28 23:04:46.471(Timestamp), 1031(Integer), null, 229(Integer), 3(Integer), A(String), 20(Integer), 6232(Integer), true(Boolean), 530(Integer), 1(Integer), 427(Integer), 20(Integer), null, 2023-11-28 23:04:46.471(Timestamp), 1031(Integer), null, 229(Integer), 1(Integer), B(String), 0(Integer), 6232(Integer), false(Boolean), 533(Integer), 2(Integer), 429(Integer), 20(Integer), null, 2023-11-28 23:04:46.471(Timestamp), 1031(Integer), null, 229(Integer), 3(Integer), A(String), 20(Integer), 6232(Integer), true(Boolean), 535(Integer), 3(Integer), 430(Integer), 20(Integer), null, 2023-11-28 23:04:46.471(Timestamp), 1031(Integer), null, 229(Integer), 1(Integer), B(String), 0(Integer), 6232(Integer), false(Boolean), 536(Integer), 4(Integer)
2023-11-28 23:04:46.821 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.E.insertList                   : <==    Updates: 5
2023-11-28 23:04:46.962 DEBUG 17252 --- [XNIO-1 task-20] 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-11-28 23:04:46.963 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 提交试卷:CE6 得分:4 耗时:1时 4分 49秒(String), 2023-11-28 23:04:46.658(Timestamp)
2023-11-28 23:04:47.011 DEBUG 17252 --- [XNIO-1 task-20] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 23:04:52.906  INFO 17252 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-11-28 23:04:52.906  INFO 17252 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-11-28 23:04:52.926 DEBUG 17252 --- [XNIO-1 task-21] 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-11-28 23:04:52.927 DEBUG 17252 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:04:52.927 DEBUG 17252 --- [XNIO-1 task-22] 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-11-28 23:04:52.927 DEBUG 17252 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:04:52.934  INFO 17252 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-11-28 23:04:52.952 DEBUG 17252 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:04:52.952 DEBUG 17252 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:04:52.952 DEBUG 17252 --- [XNIO-1 task-23] 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-11-28 23:04:52.952 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:04:52.954 DEBUG 17252 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-11-28 23:04:52.954 DEBUG 17252 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1031(Integer)
2023-11-28 23:04:52.972 DEBUG 17252 --- [XNIO-1 task-21] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-11-28 23:04:52.977 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:04:53.010 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-11-28 23:04:53.010 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1031(Integer)
2023-11-28 23:04:53.034 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-11-28 23:04:53.037 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage                  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer WHERE create_user = ? order by id desc LIMIT ? 
2023-11-28 23:04:53.037 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1031(Integer), 10(Integer)
2023-11-28 23:04:53.070 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.studentPage                  : <==      Total: 9
2023-11-28 23:04:53.078 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.078 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6232(Integer)
2023-11-28 23:04:53.098 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.100 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.100 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 229(Integer)
2023-11-28 23:04:53.128 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.138 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.139 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.159 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.160 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.161 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6231(Integer)
2023-11-28 23:04:53.190 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.192 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.194 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 228(Integer)
2023-11-28 23:04:53.211 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.213 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.213 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.235 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.237 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.237 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6230(Integer)
2023-11-28 23:04:53.257 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.258 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.259 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 227(Integer)
2023-11-28 23:04:53.283 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.284 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.284 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.308 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.310 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.310 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6229(Integer)
2023-11-28 23:04:53.327 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.328 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.328 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 226(Integer)
2023-11-28 23:04:53.348 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.350 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.350 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.370 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.371 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.371 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6228(Integer)
2023-11-28 23:04:53.399 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.433 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.433 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 225(Integer)
2023-11-28 23:04:53.453 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.453 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.454 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.500 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.501 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.501 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6225(Integer)
2023-11-28 23:04:53.523 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.524 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.524 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 223(Integer)
2023-11-28 23:04:53.545 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.545 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.545 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.563 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.564 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.565 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6224(Integer)
2023-11-28 23:04:53.590 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.590 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.590 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-11-28 23:04:53.606 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.609 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.610 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.631 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.632 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.632 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6223(Integer)
2023-11-28 23:04:53.652 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.653 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.654 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-11-28 23:04:53.673 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.674 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.675 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.695 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:04:53.696 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-11-28 23:04:53.696 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6222(Integer)
2023-11-28 23:04:53.716 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-11-28 23:04:53.717 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:04:53.717 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-11-28 23:04:53.739 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:04:53.739 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-11-28 23:04:53.740 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-11-28 23:04:53.765 DEBUG 17252 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-11-28 23:22:05.260  INFO 17252 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-11-28 23:22:05.310  INFO 17252 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-11-28 23:22:05.349  INFO 17252 --- [Thread-22] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-11-28 23:22:11.381  INFO 22480 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 22480 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-11-28 23:22:11.385  INFO 22480 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-11-28 23:22:11.456  INFO 22480 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-11-28 23:22:11.456  INFO 22480 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-11-28 23:22:14.068  INFO 22480 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$359100ce] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-11-28 23:22:14.651  WARN 22480 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-11-28 23:22:14.697  INFO 22480 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-11-28 23:22:14.697  INFO 22480 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3241 ms
2023-11-28 23:22:17.117  INFO 22480 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-11-28 23:22:17.408  INFO 22480 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@113ad0e7, org.springframework.security.web.context.SecurityContextPersistenceFilter@6c248677, org.springframework.security.web.header.HeaderWriterFilter@745882e9, org.springframework.web.filter.CorsFilter@7547ec21, org.springframework.security.web.authentication.logout.LogoutFilter@7bf2bbf7, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@44786c53, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@7ba1cf6a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@35479034, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@415924a0, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@6add2119, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@64771d24, org.springframework.security.web.session.SessionManagementFilter@6c611816, org.springframework.security.web.access.ExceptionTranslationFilter@132982ce, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4773a13b]
2023-11-28 23:22:17.442  INFO 22480 --- [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-11-28 23:22:18.092  INFO 22480 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-11-28 23:22:18.120  INFO 22480 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-11-28 23:22:18.187  INFO 22480 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-11-28 23:22:18.427  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-11-28 23:22:18.484  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-11-28 23:22:18.508  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-11-28 23:22:18.519  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-11-28 23:22:18.526  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-11-28 23:22:18.627  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-11-28 23:22:18.684  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-11-28 23:22:18.709  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-11-28 23:22:18.714  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-11-28 23:22:18.723  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-11-28 23:22:18.734  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-11-28 23:22:18.738  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-11-28 23:22:18.752  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-11-28 23:22:18.756  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-11-28 23:22:18.758  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-11-28 23:22:18.762  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-11-28 23:22:18.765  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-11-28 23:22:18.778  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-11-28 23:22:18.781  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-11-28 23:22:18.799  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageJudgeListUsingPOST_1
2023-11-28 23:22:18.811  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingGET_1
2023-11-28 23:22:18.816  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-11-28 23:22:18.831  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-11-28 23:22:18.834  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportTemplatesIdUsingGET_1
2023-11-28 23:22:18.897  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-11-28 23:22:18.903  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-11-28 23:22:18.905  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-11-28 23:22:18.906  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_2
2023-11-28 23:22:18.915  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-11-28 23:22:18.928  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-11-28 23:22:18.933  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-11-28 23:22:18.937  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-11-28 23:22:18.939  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-11-28 23:22:18.973  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-11-28 23:22:18.977  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-11-28 23:22:18.982  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-11-28 23:22:18.985  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-11-28 23:22:18.992  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-11-28 23:22:18.996  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-11-28 23:22:19.009  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-11-28 23:22:19.009  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-11-28 23:22:19.011  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-11-28 23:22:19.012  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-11-28 23:22:19.012  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-11-28 23:22:19.013  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-11-28 23:22:19.014  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-11-28 23:22:19.014  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-11-28 23:22:19.031  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-11-28 23:22:19.036  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-11-28 23:22:19.039  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-11-28 23:22:19.040  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-11-28 23:22:19.045  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-11-28 23:22:19.046  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-11-28 23:22:19.050  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-11-28 23:22:19.051  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-11-28 23:22:19.055  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-11-28 23:22:19.064  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-11-28 23:22:19.065  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-11-28 23:22:19.069  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-11-28 23:22:19.077  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-11-28 23:22:19.082  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-11-28 23:22:19.084  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-11-28 23:22:19.087  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-11-28 23:22:19.091  INFO 22480 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-11-28 23:22:19.238  INFO 22480 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-11-28 23:22:19.254  INFO 22480 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-11-28 23:22:19.428  INFO 22480 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-11-28 23:22:19.433  INFO 22480 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 8.965 seconds (JVM running for 10.862)
2023-11-28 23:25:14.907  INFO 22480 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-11-28 23:25:14.907  INFO 22480 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-11-28 23:25:14.927  INFO 22480 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 19 ms
2023-11-28 23:25:15.017  INFO 22480 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 23:25:15.065  INFO 22480 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-11-28 23:25:15.639  INFO 22480 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-11-28 23:25:15.654 DEBUG 22480 --- [XNIO-1 task-1] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 23:25:15.686 DEBUG 22480 --- [XNIO-1 task-1] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 23:25:15.752 DEBUG 22480 --- [XNIO-1 task-1] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 23:25:22.736 DEBUG 22480 --- [XNIO-1 task-4] 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-11-28 23:25:22.738 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-11-28 23:25:22.791 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:25:23.765 DEBUG 22480 --- [XNIO-1 task-4] 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-11-28 23:25:23.765 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-11-28 23:25:23.801 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:25:23.844 DEBUG 22480 --- [XNIO-1 task-4] 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-11-28 23:25:23.850 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-11-28 23:25:23.801(Timestamp)
2023-11-28 23:25:23.935 DEBUG 22480 --- [XNIO-1 task-4] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 23:25:24.107  INFO 22480 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-11-28 23:25:24.184 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-11-28 23:25:24.185 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-11-28 23:25:24.206 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-11-28 23:25:24.212 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-11-28 23:25:24.213 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-11-28 23:25:24.230 DEBUG 22480 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 5
2023-11-28 23:25:24.547  INFO 22480 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-11-28 23:25:24.564 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-11-28 23:25:24.564 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 23:25:24.599 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 23:25:24.610 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-11-28 23:25:24.611 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-11-28 23:25:24.626 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-11-28 23:25:24.633 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-11-28 23:25:24.634 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 23:25:24.655 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 23:25:24.657 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-11-28 23:25:24.657 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-11-28 23:25:24.687 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-11-28 23:25:24.734 DEBUG 22480 --- [XNIO-1 task-6] 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-11-28 23:25:24.735 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-11-01 00:00:00.0(Timestamp), 2023-11-30 23:59:59.0(Timestamp)
2023-11-28 23:25:24.810 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.U.selectCountByDate            : <==      Total: 12
2023-11-28 23:25:24.817 DEBUG 22480 --- [XNIO-1 task-6] 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-11-28 23:25:24.817 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-11-01 00:00:00.0(Timestamp), 2023-11-30 23:59:59.0(Timestamp)
2023-11-28 23:25:24.857 DEBUG 22480 --- [XNIO-1 task-6] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-11-28 23:25:28.679  INFO 22480 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 23:25:28.725 DEBUG 22480 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 23:25:28.726 DEBUG 22480 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 23:25:28.752 DEBUG 22480 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 23:25:29.070  INFO 22480 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 23:25:29.086 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 23:25:29.087 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 23:25:29.119 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 23:25:29.124 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 23:25:29.127 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 23:25:29.162 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 23:25:29.163 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.164 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 59(Integer)
2023-11-28 23:25:29.188 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.190 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.193 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 58(Integer)
2023-11-28 23:25:29.249 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.250 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.251 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 57(Integer)
2023-11-28 23:25:29.279 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.281 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.281 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 55(Integer)
2023-11-28 23:25:29.310 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.311 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.311 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 54(Integer)
2023-11-28 23:25:29.367 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.369 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.369 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 52(Integer)
2023-11-28 23:25:29.519 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.520 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.521 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 51(Integer)
2023-11-28 23:25:29.607 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.610 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.611 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 50(Integer)
2023-11-28 23:25:29.667 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.668 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.669 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 23:25:29.697 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:29.698 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:25:29.699 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 47(Integer)
2023-11-28 23:25:29.771 DEBUG 22480 --- [XNIO-1 task-8] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:25:32.508  INFO 22480 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-11-28 23:25:32.519  INFO 22480 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 23:25:32.523  INFO 22480 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 23:25:32.567 DEBUG 22480 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 23:25:32.597 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 23:25:32.598 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 23:25:32.599 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 15(Integer)
2023-11-28 23:25:32.600 DEBUG 22480 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 23:25:32.600 DEBUG 22480 --- [XNIO-1 task-10] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 23:25:32.623 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 0
2023-11-28 23:25:32.625 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 23:25:32.625 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 16(Integer)
2023-11-28 23:25:32.648 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 23:25:32.650 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.651 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 23:25:32.678 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.678 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 23:25:32.679 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 17(Integer)
2023-11-28 23:25:32.702 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 2
2023-11-28 23:25:32.702 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.703 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 23:25:32.732 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.734 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.734 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 23:25:32.768 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.769 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 23:25:32.769 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 18(Integer)
2023-11-28 23:25:32.795 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 3
2023-11-28 23:25:32.796 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.796 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-11-28 23:25:32.820 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.822 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.822 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-11-28 23:25:32.858 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.860 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.860 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1030(Integer)
2023-11-28 23:25:32.886 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:25:32.887 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==>  Preparing: select id, user_id, department_id from t_user_department where department_id = ? 
2023-11-28 23:25:32.889 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : ==> Parameters: 22(Integer)
2023-11-28 23:25:32.913 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.U.selectByDepartmentId         : <==      Total: 1
2023-11-28 23:25:32.928 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:25:32.929 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 23:25:32.960 DEBUG 22480 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:26:00.001  INFO 22480 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/edit
2023-11-28 23:26:00.128 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : ==>  Preparing: insert into t_exam_templates (name, paper_type, suggest_time, title_name, ctime, status, menu_ids) values (?, ?, ?, ?, ?, ?, ?) 
2023-11-28 23:26:00.129 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : ==> Parameters: CE7(String), 7(String), 120(String), 12(String), 2023-11-28 23:26:00.125(Timestamp), 0(String), [[22,1031]](String)
2023-11-28 23:26:00.166 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesMapper.add        : <==    Updates: 1
2023-11-28 23:26:00.178 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_question(id, label, multiple_choice, single_choice, true_false, templates_id, subject_id) values (?,?,?,?,?,?, ?) 
2023-11-28 23:26:00.179 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==> Parameters: null, 语文 (String), 1(String), 2(String), 2(String), 60(Integer), 20(Integer)
2023-11-28 23:26:00.217 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 23:26:00.230 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==>  Preparing: insert into t_exam_templates_subject(id, subject_id, templates_id) values (?,?,?) 
2023-11-28 23:26:00.231 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : ==> Parameters: null, 20(Integer), 60(Integer)
2023-11-28 23:26:00.269 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.E.saves                        : <==    Updates: 1
2023-11-28 23:26:00.272 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==>  Preparing: insert into t_exam_templates_user (templates_id, user_id) values (?, ?) 
2023-11-28 23:26:00.273 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : ==> Parameters: 60(String), 1031(String)
2023-11-28 23:26:00.305 DEBUG 22480 --- [XNIO-1 task-12] r.c.m.x.r.ExamTemplatesUserMapper.add    : <==    Updates: 1
2023-11-28 23:26:01.300  INFO 22480 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-11-28 23:26:01.300  INFO 22480 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-11-28 23:26:01.359 DEBUG 22480 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-11-28 23:26:01.359 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 
2023-11-28 23:26:01.360 DEBUG 22480 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-11-28 23:26:01.360 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-11-28 23:26:01.376 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-11-28 23:26:01.379 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT e.* FROM t_exam_templates e INNER JOIN t_exam_templates_user u ON e.id = u.templates_id WHERE e.status = 0 order by id desc LIMIT ? 
2023-11-28 23:26:01.380 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-11-28 23:26:01.389 DEBUG 22480 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-11-28 23:26:01.415 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-11-28 23:26:01.416 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.417 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 60(Integer)
2023-11-28 23:26:01.437 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.437 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.438 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 59(Integer)
2023-11-28 23:26:01.455 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.456 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.456 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 58(Integer)
2023-11-28 23:26:01.481 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.482 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.482 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 57(Integer)
2023-11-28 23:26:01.501 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.502 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.502 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 55(Integer)
2023-11-28 23:26:01.522 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.523 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.524 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 54(Integer)
2023-11-28 23:26:01.551 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.552 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.552 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 52(Integer)
2023-11-28 23:26:01.570 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.571 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.571 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 51(Integer)
2023-11-28 23:26:01.591 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.592 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.592 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 50(Integer)
2023-11-28 23:26:01.622 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:01.622 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:01.622 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 48(Integer)
2023-11-28 23:26:01.641 DEBUG 22480 --- [XNIO-1 task-13] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:04.700  INFO 22480 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-11-28 23:26:04.740 DEBUG 22480 --- [XNIO-1 task-15] 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-11-28 23:26:04.741 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:04.756 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:04.799 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-11-28 23:26:04.800 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 1031(Integer), 1(Integer), 7(Integer)
2023-11-28 23:26:04.817 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 5
2023-11-28 23:26:04.827 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:04.828 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 83(Integer), 1031(Integer)
2023-11-28 23:26:04.847 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:04.849 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:04.849 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 84(Integer), 1031(Integer)
2023-11-28 23:26:04.870 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:04.871 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:04.872 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 85(Integer), 1031(Integer)
2023-11-28 23:26:04.891 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:04.892 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:04.892 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 221(Integer), 1031(Integer)
2023-11-28 23:26:04.912 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 0
2023-11-28 23:26:04.914 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:04.914 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 223(Integer), 1031(Integer)
2023-11-28 23:26:04.933 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:04.934 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: select e.* from t_exam_templates e inner join t_exam_templates_user u on e.id = u.templates_id WHERE e.status = 0 and u.user_id = ? 
2023-11-28 23:26:04.934 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 1031(Integer)
2023-11-28 23:26:04.953 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 16
2023-11-28 23:26:04.955 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:04.955 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 42(Integer)
2023-11-28 23:26:04.970 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:04.972 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:04.990 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 43(Integer)
2023-11-28 23:26:05.005 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.006 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.007 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 44(Integer)
2023-11-28 23:26:05.030 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.031 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.031 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 45(Integer)
2023-11-28 23:26:05.046 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.046 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.046 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 46(Integer)
2023-11-28 23:26:05.066 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.067 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.067 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 47(Integer)
2023-11-28 23:26:05.087 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.088 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.088 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 48(Integer)
2023-11-28 23:26:05.109 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.110 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.112 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 50(Integer)
2023-11-28 23:26:05.134 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.135 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.135 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 51(Integer)
2023-11-28 23:26:05.151 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.151 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.152 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 52(Integer)
2023-11-28 23:26:05.171 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.172 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.172 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 54(Integer)
2023-11-28 23:26:05.192 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.192 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.193 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 55(Integer)
2023-11-28 23:26:05.212 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.212 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.212 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 57(Integer)
2023-11-28 23:26:05.231 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.232 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.232 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 58(Integer)
2023-11-28 23:26:05.250 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.251 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.251 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 59(Integer)
2023-11-28 23:26:05.271 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.272 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:05.273 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 60(Integer)
2023-11-28 23:26:05.289 DEBUG 22480 --- [XNIO-1 task-15] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:05.291 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-11-28 23:26:05.292 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 2023-11-28 23:26:05.29(Timestamp), 1031(Integer), 4(Integer), 2023-11-28 23:26:05.29(Timestamp)
2023-11-28 23:26:05.316 DEBUG 22480 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-11-28 23:26:07.339 DEBUG 22480 --- [XNIO-1 task-17] 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-11-28 23:26:07.340 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.362 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.370 DEBUG 22480 --- [XNIO-1 task-17] 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-11-28 23:26:07.370 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.386 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.387 DEBUG 22480 --- [XNIO-1 task-17] 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-11-28 23:26:07.388 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 登录了考试系统(String), 2023-11-28 23:26:07.386(Timestamp)
2023-11-28 23:26:07.431 DEBUG 22480 --- [XNIO-1 task-17] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-11-28 23:26:07.586  INFO 22480 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-11-28 23:26:07.591 DEBUG 22480 --- [XNIO-1 task-18] 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-11-28 23:26:07.593 DEBUG 22480 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.611 DEBUG 22480 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.618 DEBUG 22480 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-11-28 23:26:07.618 DEBUG 22480 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1031(Integer)
2023-11-28 23:26:07.636 DEBUG 22480 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-11-28 23:26:07.824  INFO 22480 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-11-28 23:26:07.825  INFO 22480 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-11-28 23:26:07.825 DEBUG 22480 --- [XNIO-1 task-19] 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-11-28 23:26:07.826 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.829  INFO 22480 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-11-28 23:26:07.881 DEBUG 22480 --- [XNIO-1 task-20] 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-11-28 23:26:07.882 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.882 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.884 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-11-28 23:26:07.885 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 1031(Integer), 1(Integer), 7(Integer)
2023-11-28 23:26:07.890 DEBUG 22480 --- [XNIO-1 task-21] 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-11-28 23:26:07.890 DEBUG 22480 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:07.900 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.901 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-11-28 23:26:07.901 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1031(Integer)
2023-11-28 23:26:07.909 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 5
2023-11-28 23:26:07.912 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:07.912 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 83(Integer), 1031(Integer)
2023-11-28 23:26:07.917 DEBUG 22480 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:07.922 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.r.E.getByUserId                  : <==      Total: 9
2023-11-28 23:26:07.924 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-11-28 23:26:07.926 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 221(Integer), 222(Integer), 223(Integer), 225(Integer), 226(Integer), 227(Integer), 228(Integer), 229(Integer), 230(Integer)
2023-11-28 23:26:07.935 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:07.936 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:07.936 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 84(Integer), 1031(Integer)
2023-11-28 23:26:07.947 DEBUG 22480 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 8
2023-11-28 23:26:07.956 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:07.958 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:07.959 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 85(Integer), 1031(Integer)
2023-11-28 23:26:07.977 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:07.978 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:07.979 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 221(Integer), 1031(Integer)
2023-11-28 23:26:08.001 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 0
2023-11-28 23:26:08.003 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where (exam_paper_id,create_user) in ( (?,?) ) 
2023-11-28 23:26:08.003 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 223(Integer), 1031(Integer)
2023-11-28 23:26:08.022 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-11-28 23:26:08.023 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: select e.* from t_exam_templates e inner join t_exam_templates_user u on e.id = u.templates_id WHERE e.status = 0 and u.user_id = ? 
2023-11-28 23:26:08.024 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 1031(Integer)
2023-11-28 23:26:08.043 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 16
2023-11-28 23:26:08.045 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.045 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 42(Integer)
2023-11-28 23:26:08.070 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.070 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.071 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 43(Integer)
2023-11-28 23:26:08.085 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.087 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.087 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 44(Integer)
2023-11-28 23:26:08.106 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.107 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.107 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 45(Integer)
2023-11-28 23:26:08.132 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.132 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.132 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 46(Integer)
2023-11-28 23:26:08.160 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.161 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.161 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 47(Integer)
2023-11-28 23:26:08.181 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.183 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.183 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 48(Integer)
2023-11-28 23:26:08.201 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.202 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.202 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 50(Integer)
2023-11-28 23:26:08.229 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.231 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.231 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 51(Integer)
2023-11-28 23:26:08.250 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.251 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.251 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 52(Integer)
2023-11-28 23:26:08.264 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.265 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.266 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 54(Integer)
2023-11-28 23:26:08.280 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.280 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.281 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 55(Integer)
2023-11-28 23:26:08.295 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.296 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.296 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 57(Integer)
2023-11-28 23:26:08.321 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.322 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.323 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 58(Integer)
2023-11-28 23:26:08.340 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.341 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.341 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 59(Integer)
2023-11-28 23:26:08.356 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.356 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==>  Preparing: select count(*) from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-11-28 23:26:08.357 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : ==> Parameters: 1031(Integer), 60(Integer)
2023-11-28 23:26:08.375 DEBUG 22480 --- [XNIO-1 task-19] c.m.x.r.E.getCountByUserIdAndTemplatesId : <==      Total: 1
2023-11-28 23:26:08.377 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-11-28 23:26:08.378 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 2023-11-28 23:26:08.376(Timestamp), 1031(Integer), 4(Integer), 2023-11-28 23:26:08.376(Timestamp)
2023-11-28 23:26:08.407 DEBUG 22480 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-11-28 23:26:15.504  INFO 22480 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/templates/addTemplates/60
2023-11-28 23:26:15.534 DEBUG 22480 --- [XNIO-1 task-22] 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-11-28 23:26:15.534 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:26:15.560 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:26:15.561 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime, status, menu_ids from t_exam_templates where id = ? 
2023-11-28 23:26:15.561 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 60(Integer)
2023-11-28 23:26:15.595 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-11-28 23:26:15.596 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-11-28 23:26:15.596 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 60(Integer)
2023-11-28 23:26:15.616 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-11-28 23:26:15.617 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByTemplatesId             : ==>  Preparing: select id, label, multiple_choice, single_choice, true_false, templates_id, subject_id from t_exam_templates_question where templates_id = ? 
2023-11-28 23:26:15.618 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByTemplatesId             : ==> Parameters: 60(Integer)
2023-11-28 23:26:15.636 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByTemplatesId             : <==      Total: 1
2023-11-28 23:26:15.636 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getById                      : ==>  Preparing: select id, templates_id, user_id from t_exam_templates_user where templates_id = ? 
2023-11-28 23:26:15.637 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getById                      : ==> Parameters: 60(Integer)
2023-11-28 23:26:15.653 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getById                      : <==      Total: 1
2023-11-28 23:26:15.692 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.Q.getSubject                   : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where subject_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-11-28 23:26:15.692 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.Q.getSubject                   : ==> Parameters: 20(Integer)
2023-11-28 23:26:15.714 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.Q.getSubject                   : <==      Total: 10
2023-11-28 23:26:15.716 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) 
2023-11-28 23:26:15.717 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 426(Integer), 427(Integer), 428(Integer), 429(Integer), 430(Integer), 431(Integer), 434(Integer), 433(Integer)
2023-11-28 23:26:15.741 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 10
2023-11-28 23:26:15.755 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-11-28 23:26:15.755 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"name":"12","questionItems":[{"id":433,"itemOrder":0},{"id":424,"itemOrder":1},{"id":426,"itemOrder":2},{"id":427,"itemOrder":3},{"id":428,"itemOrder":4}]}](String), 2023-11-28 23:26:15.688(Timestamp)
2023-11-28 23:26:15.805 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-11-28 23:26:15.815 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper ( name, paper_type, score, question_count, suggest_time, frame_text_content_id, create_user, create_time, deleted, type, user_ids ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 23:26:15.816 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.insertSelective              : ==> Parameters: CE7(String), 7(Integer), 100(Integer), 5(Integer), 120(Integer), 691(Integer), 1031(Integer), 2023-11-28 23:26:15.688(Timestamp), false(Boolean), 1(String), [[22,1031]](String)
2023-11-28 23:26:15.874 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 23:26:15.875 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:15.876 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:15.894 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 23:26:15.896 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-11-28 23:26:15.897 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 231(Integer), 1031(Integer), 0(String)
2023-11-28 23:26:15.947 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-11-28 23:26:15.948 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:15.948 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:15.967 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 23:26:15.970 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) 
2023-11-28 23:26:15.971 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 231(Integer), 0(String)
2023-11-28 23:26:16.026 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 1
2023-11-28 23:26:16.106 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 23:26:16.107 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 231(Integer)
2023-11-28 23:26:16.135 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.137 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.139 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 691(Integer)
2023-11-28 23:26:16.169 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.214 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 23:26:16.214 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 433(Integer), 424(Integer), 426(Integer), 427(Integer), 428(Integer)
2023-11-28 23:26:16.235 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 23:26:16.245 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.245 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 612(Integer)
2023-11-28 23:26:16.267 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.277 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.277 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-11-28 23:26:16.296 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.298 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.298 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 23:26:16.328 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.329 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.330 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-11-28 23:26:16.347 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.348 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:16.350 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-11-28 23:26:16.367 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:16.600 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:16.600 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:16.634 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:26:16.635 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:16.636 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:16.658 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 23:26:16.680 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:16.682 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:16.713 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:26:16.715 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:26:16.715 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 23:26:16.734 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:26:16.736 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.add                          : ==>  Preparing: insert into t_exam_templates_user_count (exam_paper_id, user_id, exam_templates_id) values (?, ?, ?) 
2023-11-28 23:26:16.737 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.add                          : ==> Parameters: 231(Integer), 1031(Integer), 60(Integer)
2023-11-28 23:26:16.793 DEBUG 22480 --- [XNIO-1 task-22] r.c.m.x.r.E.add                          : <==    Updates: 1
2023-11-28 23:26:18.326  INFO 22480 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-11-28 23:26:18.354 DEBUG 22480 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-11-28 23:26:18.354 DEBUG 22480 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-11-28 23:26:18.374 DEBUG 22480 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 5
2023-11-28 23:26:18.394  INFO 22480 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/231
2023-11-28 23:26:18.400 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 23:26:18.400 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 231(Integer)
2023-11-28 23:26:18.428 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.429 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.430 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 691(Integer)
2023-11-28 23:26:18.446 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.448 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 23:26:18.448 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 433(Integer), 424(Integer), 426(Integer), 427(Integer), 428(Integer)
2023-11-28 23:26:18.477 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 23:26:18.479 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.479 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 612(Integer)
2023-11-28 23:26:18.506 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.509 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.509 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-11-28 23:26:18.526 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.529 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.529 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-11-28 23:26:18.555 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.557 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.557 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-11-28 23:26:18.574 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.576 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:26:18.576 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-11-28 23:26:18.594 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:26:18.597 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:18.597 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:18.614 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:26:18.615 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:18.615 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:18.634 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-11-28 23:26:18.635 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-11-28 23:26:18.636 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 231(Integer)
2023-11-28 23:26:18.654 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-11-28 23:26:18.655 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserById         : ==>  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 id=? 
2023-11-28 23:26:18.655 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1031(Integer)
2023-11-28 23:26:18.695 DEBUG 22480 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-11-28 23:58:59.803  INFO 22480 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 23:59:04.952  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@74c65dd7 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:10.003  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5565f573 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:15.020  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@37ff2814 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:20.048  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1c746d7 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:25.092  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7bf3f5f1 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:30.143  WARN 22480 --- [XNIO-1 task-25] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7f548d90 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:30.284 ERROR 22480 --- [XNIO-1 task-25] c.m.x.c.s.exception.ExceptionHandle      : nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
 
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:78)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectOne(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy84.getUserByUserName(Unknown Source)
    at com.mindskip.xzs.service.impl.UserServiceImpl.getUserByUserName(UserServiceImpl.java:48)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$FastClassBySpringCGLIB$$921573c2.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$EnhancerBySpringCGLIB$$a2bbe53d.getUserByUserName(<generated>)
    at com.mindskip.xzs.context.WebContext.getCurrentUser(WebContext.java:51)
    at com.mindskip.xzs.base.BaseApiController.getCurrentUser(BaseApiController.java:32)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController.answerSubmit(ExamPaperAnswerController.java:78)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$FastClassBySpringCGLIB$$f93c3f4f.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.ExamPaperAnswerController$$EnhancerBySpringCGLIB$$f0071db0.answerSubmit(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:149)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
    at sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 117 common frames omitted
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81)
    at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
    at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
    at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:336)
    at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:85)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy147.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    ... 123 common frames omitted
Caused by: java.sql.SQLTransientConnectionException: HikariPool-1 - Connection is not available, request timed out after 30342ms.
    at com.zaxxer.hikari.pool.HikariPool.createTimeoutException(HikariPool.java:676)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:190)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:155)
    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:128)
    at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78)
    ... 135 common frames omitted
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:89)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:63)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:73)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2488)
    at com.zaxxer.hikari.pool.PoolBase.setNetworkTimeout(PoolBase.java:550)
    at com.zaxxer.hikari.pool.PoolBase.isConnectionAlive(PoolBase.java:165)
    at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:179)
    ... 140 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
    at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:1209)
    at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:567)
    at com.mysql.cj.jdbc.ConnectionImpl.setNetworkTimeout(ConnectionImpl.java:2484)
    ... 143 common frames omitted
 
2023-11-28 23:59:36.866  INFO 22480 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-11-28 23:59:41.887  WARN 22480 --- [XNIO-1 task-26] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@47babd7b (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:46.906  WARN 22480 --- [XNIO-1 task-26] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5470609 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:51.961  WARN 22480 --- [XNIO-1 task-26] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@43f40678 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:56.971  WARN 22480 --- [XNIO-1 task-26] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3ecdf86f (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2023-11-28 23:59:57.048 DEBUG 22480 --- [XNIO-1 task-26] 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-11-28 23:59:57.055 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ceshirenyuan(String)
2023-11-28 23:59:57.101 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-11-28 23:59:57.112 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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, type, user_ids from t_exam_paper where id = ? 
2023-11-28 23:59:57.114 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 231(Integer)
2023-11-28 23:59:57.142 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:59:57.144 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-11-28 23:59:57.144 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 691(Integer)
2023-11-28 23:59:57.167 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-11-28 23:59:57.188 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  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 id in ( ? , ? , ? , ? , ? ) 
2023-11-28 23:59:57.189 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 433(Integer), 424(Integer), 426(Integer), 427(Integer), 428(Integer)
2023-11-28 23:59:57.221 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-11-28 23:59:57.458 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( exam_paper_id, paper_name, paper_type, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-11-28 23:59:57.461 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertSelective              : ==> Parameters: 231(Integer), CE7(String), 7(Integer), 0(Integer), 0(Integer), 100(Integer), 0(Integer), 5(Integer), 1960(Integer), 2(Integer), 1031(Integer), 2023-11-28 23:59:57.108(Timestamp)
2023-11-28 23:59:57.655 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-11-28 23:59:57.662 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertList                   : ==>  Preparing: insert into t_exam_paper_question_customer_answer ( question_id, question_score, subject_id, create_time, create_user, text_content_id, exam_paper_id, question_type, answer, customer_score, exam_paper_answer_id , do_right,question_text_content_id,item_order) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) 
2023-11-28 23:59:57.667 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertList                   : ==> Parameters: 433(Integer), 20(Integer), null, 2023-11-28 23:59:57.108(Timestamp), 1031(Integer), null, 231(Integer), 3(Integer), null, 0(Integer), 6233(Integer), false(Boolean), 612(Integer), 0(Integer), 424(Integer), 20(Integer), null, 2023-11-28 23:59:57.108(Timestamp), 1031(Integer), null, 231(Integer), 1(Integer), C(String), 0(Integer), 6233(Integer), false(Boolean), 528(Integer), 1(Integer), 426(Integer), 20(Integer), null, 2023-11-28 23:59:57.108(Timestamp), 1031(Integer), null, 231(Integer), 3(Integer), null, 0(Integer), 6233(Integer), false(Boolean), 530(Integer), 2(Integer), 427(Integer), 20(Integer), null, 2023-11-28 23:59:57.108(Timestamp), 1031(Integer), null, 231(Integer), 1(Integer), null, 0(Integer), 6233(Integer), false(Boolean), 533(Integer), 3(Integer), 428(Integer), 20(Integer), null, 2023-11-28 23:59:57.108(Timestamp), 1031(Integer), null, 231(Integer), 2(Integer), (String), 0(Integer), 6233(Integer), false(Boolean), 534(Integer), 4(Integer)
2023-11-28 23:59:57.714 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.E.insertList                   : <==    Updates: 5
2023-11-28 23:59:57.834 DEBUG 22480 --- [XNIO-1 task-26] 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-11-28 23:59:57.834 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1031(Integer), ceshirenyuan(String), 测试(String), ceshirenyuan 提交试卷:CE7 得分:0 耗时:32分 40秒(String), 2023-11-28 23:59:57.369(Timestamp)
2023-11-28 23:59:57.925 DEBUG 22480 --- [XNIO-1 task-26] r.c.m.x.r.U.insertSelective              : <==    Updates: 1