baizonghao
2023-06-19 996dd70c3617d3dac5fe8b6d44d5cb70a26069a4
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
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
2023-06-06 13:39:57.594  INFO 10416 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 10416 (E:\demo\xzs-mysql\source\xzs\target\classes started by qirong in E:\demo\xzs-mysql\source\xzs)
2023-06-06 13:39:57.597  INFO 10416 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 13:39:57.665  INFO 10416 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 13:39:57.665  INFO 10416 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 13:40:01.104  WARN 10416 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 13:40:01.145  INFO 10416 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 13:40:01.145  INFO 10416 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3480 ms
2023-06-06 13:40:02.665  INFO 10416 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4345d07d, org.springframework.security.web.context.SecurityContextPersistenceFilter@b74f41b, org.springframework.security.web.header.HeaderWriterFilter@7b327935, org.springframework.web.filter.CorsFilter@d417f16, org.springframework.security.web.authentication.logout.LogoutFilter@239a56fc, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@234d453d, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@38faa32e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2ea48c74, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5d326e12, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@1783cfed, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@9f79da5, org.springframework.security.web.session.SessionManagementFilter@60ba4494, org.springframework.security.web.access.ExceptionTranslationFilter@118f6584, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4b3544b1]
2023-06-06 13:40:03.207  INFO 10416 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 13:40:03.321  INFO 10416 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 13:40:03.343  INFO 10416 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 13:40:03.586  INFO 10416 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 13:40:03.604  INFO 10416 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.9 seconds (JVM running for 8.343)
2023-06-06 13:40:57.355  INFO 10416 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 13:40:57.355  INFO 10416 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 13:40:57.363  INFO 10416 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 8 ms
2023-06-06 13:40:57.430  INFO 10416 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 13:40:57.670  INFO 10416 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 13:40:57.681 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 13:40:57.707 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 13:40:57.769 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 13:40:57.780 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 13:40:57.781 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 13:40:57.793 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 13:40:59.135 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-06 13:40:59.135 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 13:40:59.147 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 13:40:59.148 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-06 13:40:59.148 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-06 13:40:59.156 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-06 13:40:59.158 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-06 13:40:59.158 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 13:40:59.172 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 13:40:59.173 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-06 13:40:59.173 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 13:40:59.182 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 13:40:59.191 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 13:40:59.194 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 13:40:59.207 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-06-06 13:40:59.211 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 13:40:59.211 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 13:40:59.222 DEBUG 10416 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : <==      Total: 2
2023-06-06 13:46:39.779 DEBUG 10416 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 13:46:39.780 DEBUG 10416 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 13:46:39.789 DEBUG 10416 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 13:46:39.925 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:46:39.925 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:46:39.937 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:46:39.946 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:46:39.946 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:46:39.968 DEBUG 10416 --- [XNIO-1 task-3] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:00.341 DEBUG 10416 --- [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-06-06 13:53:00.341 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 13:53:00.353 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 13:53:00.360 DEBUG 10416 --- [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-06-06 13:53:00.361 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 13:53:00.370 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 13:53:01.266 DEBUG 10416 --- [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-06-06 13:53:01.267 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 13:53:01.277 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 13:53:05.765 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 13:53:05.765 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 13:53:05.783 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:53:05.798 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 13:53:05.800 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 13:53:01.342(Timestamp)
2023-06-06 13:53:05.849 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 13:53:05.865 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 13:53:05.868 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 11(Integer), 2(Integer), 1(Integer), 2023-06-06 13:53:01.342(Timestamp), false(Boolean)
2023-06-06 13:53:05.884 DEBUG 10416 --- [XNIO-1 task-4] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 13:53:16.339 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:16.340 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:16.352 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:16.354 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:16.355 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:16.367 DEBUG 10416 --- [XNIO-1 task-6] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:20.123 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:20.124 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:20.133 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:20.136 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:20.137 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:20.149 DEBUG 10416 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:21.088 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:21.088 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:21.098 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:21.103 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:21.103 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:21.112 DEBUG 10416 --- [XNIO-1 task-8] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:22.341 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:22.342 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:22.352 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:22.354 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:22.355 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:22.364 DEBUG 10416 --- [XNIO-1 task-9] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:23.155 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:23.157 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:23.163 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:23.165 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:23.166 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:23.180 DEBUG 10416 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:53:24.686 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:53:24.687 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:53:24.693 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:53:24.695 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:53:24.697 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:53:24.706 DEBUG 10416 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:03.150 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:03.150 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:03.158 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:03.163 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:03.164 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:03.175 DEBUG 10416 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:04.267 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:04.267 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:04.277 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:04.279 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:04.280 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:04.289 DEBUG 10416 --- [XNIO-1 task-13] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:04.881 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:04.882 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:04.889 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:04.892 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:04.893 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:04.902 DEBUG 10416 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:04.987 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:04.988 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:04.996 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:04.998 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:04.998 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:05.007 DEBUG 10416 --- [XNIO-1 task-15] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:05.117 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:05.117 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:05.125 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:05.127 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:05.128 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:05.139 DEBUG 10416 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:05.150 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:05.150 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:05.159 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:05.161 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:05.162 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:05.172 DEBUG 10416 --- [XNIO-1 task-17] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:05.224 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:05.225 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:05.233 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:05.235 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:05.236 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:05.246 DEBUG 10416 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:05.637 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:05.637 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:05.654 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:05.657 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:05.657 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:05.666 DEBUG 10416 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:06.161 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:06.167 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:06.179 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:06.182 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:06.182 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:06.212 DEBUG 10416 --- [XNIO-1 task-20] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:54:29.931 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:54:29.931 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:54:29.954 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:54:29.956 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:54:29.956 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:54:29.968 DEBUG 10416 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:55:15.851 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 13:55:15.853 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 13:55:15.866 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 13:55:15.875 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:55:15.877 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 13:55:15.900 DEBUG 10416 --- [XNIO-1 task-22] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 13:56:37.568 DEBUG 10416 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 13:56:37.568 DEBUG 10416 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 13:56:37.594 DEBUG 10416 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 13:56:41.307 DEBUG 10416 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 13:56:41.308 DEBUG 10416 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 13:56:41.326 DEBUG 10416 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 13:56:41.638 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 13:56:41.638 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 13:56:41.645 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 13:56:41.647 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 13:56:41.648 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 13:56:41.665 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 4
2023-06-06 13:56:41.673 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:41.673 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 13:56:41.681 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:41.706 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:41.706 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 13:56:41.714 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:41.716 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:41.717 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 13:56:41.725 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:41.727 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:41.728 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 13:56:41.737 DEBUG 10416 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:54.749 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 13:56:54.749 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 13:56:54.758 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:54.760 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:54.761 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 13:56:54.772 DEBUG 10416 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:58.671 DEBUG 10416 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 13:56:58.671 DEBUG 10416 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 13:56:58.682 DEBUG 10416 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 13:56:58.969 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 13:56:58.969 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 13:56:58.977 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 13:56:58.979 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 13:56:58.979 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 13:56:58.990 DEBUG 10416 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:02:54.402 DEBUG 10416 --- [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-06-06 14:02:54.403 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:02:54.412 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:02:54.414 DEBUG 10416 --- [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-06-06 14:02:54.414 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:02:54.422 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:02:54.524 DEBUG 10416 --- [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-06-06 14:02:54.524 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:02:54.533 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:03:00.141 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:03:00.143 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:03:00.157 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:04:08.529  WARN 10416 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m178ms443µs499ns).
2023-06-06 14:04:08.533 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:04:08.536 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:02:54.542(Timestamp)
2023-06-06 14:04:08.555 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:04:08.559 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:04:08.560 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 12(Integer), 2(Integer), 1(Integer), 2023-06-06 14:02:54.542(Timestamp), false(Boolean)
2023-06-06 14:04:08.576 DEBUG 10416 --- [XNIO-1 task-29] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:05:06.527 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:05:06.527 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:05:06.536 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:05:06.537 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:05:06.537 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:05:06.546 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 14:05:06.547 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:06.548 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 12(Integer)
2023-06-06 14:05:06.555 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:06.558 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:06.559 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 14:05:06.565 DEBUG 10416 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 14:05:06.566 DEBUG 10416 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 14:05:06.567 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:06.568 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:06.568 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:05:06.574 DEBUG 10416 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 14:05:06.576 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:06.579 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:06.580 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:05:06.587 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:06.587 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:06.587 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:05:06.595 DEBUG 10416 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:11.118 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 14:05:11.118 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 14:05:11.127 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:11.142 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 14:05:11.144 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 12(Integer), 2(Integer), 1(Integer), 2023-06-06 14:02:55.0(Timestamp), true(Boolean), 6(Integer)
2023-06-06 14:05:11.190 DEBUG 10416 --- [XNIO-1 task-33] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 14:05:11.372 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:05:11.372 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:05:11.383 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:05:11.385 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:05:11.385 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:05:11.402 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 4
2023-06-06 14:05:11.405 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:11.405 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 14:05:11.412 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:11.414 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:11.414 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:05:11.427 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:11.428 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:11.429 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:05:11.449 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:11.451 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:11.452 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:05:11.459 DEBUG 10416 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:13.871 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 14:05:13.871 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:05:13.880 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:13.881 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 14:05:13.882 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 11(Integer), 2(Integer), 1(Integer), 2023-06-06 13:53:01.0(Timestamp), true(Boolean), 5(Integer)
2023-06-06 14:05:13.907 DEBUG 10416 --- [XNIO-1 task-35] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 14:05:14.278 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:05:14.278 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:05:14.286 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:05:14.288 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:05:14.289 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:05:14.306 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 3
2023-06-06 14:05:14.307 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:14.309 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:05:14.319 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:14.325 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:14.325 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:05:14.340 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:05:14.345 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:05:14.346 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:05:14.353 DEBUG 10416 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:06:06.311 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:06:06.312 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:06:06.321 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:06:06.323 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:06:06.324 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:06:06.335 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:06:41.151 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:06:41.152 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:06:41.163 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:06:41.171 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:06:41.171 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:06:41.181 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:06:41.183 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:06:41.185 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:06:41.17(Timestamp)
2023-06-06 14:06:41.199 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:06:41.203 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:06:41.204 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 13(Integer), 2(Integer), 1(Integer), 2023-06-06 14:06:41.17(Timestamp), false(Boolean)
2023-06-06 14:06:41.224 DEBUG 10416 --- [XNIO-1 task-37] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:12:30.766  INFO 10416 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-06 14:12:30.798  INFO 10416 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-06 14:12:30.814  INFO 10416 --- [Thread-22] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-06 14:12:42.532  INFO 16200 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 16200 (E:\demo\xzs-mysql\source\xzs\target\classes started by qirong in E:\demo\xzs-mysql\source\xzs)
2023-06-06 14:12:42.536  INFO 16200 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 14:12:42.605  INFO 16200 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 14:12:42.605  INFO 16200 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 14:12:44.748  WARN 16200 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 14:12:44.786  INFO 16200 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 14:12:44.786  INFO 16200 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2181 ms
2023-06-06 14:12:46.348  INFO 16200 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@121455c0, org.springframework.security.web.context.SecurityContextPersistenceFilter@1d44d452, org.springframework.security.web.header.HeaderWriterFilter@79c202c7, org.springframework.web.filter.CorsFilter@2e869595, org.springframework.security.web.authentication.logout.LogoutFilter@347c9285, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@68b00783, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2c1a8792, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@186b5df9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@121ff08, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@ac5e2a9, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4a6e7cd9, org.springframework.security.web.session.SessionManagementFilter@17054816, org.springframework.security.web.access.ExceptionTranslationFilter@59210753, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4b7c150]
2023-06-06 14:12:46.748  INFO 16200 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 14:12:46.897  INFO 16200 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 14:12:46.916  INFO 16200 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 14:12:47.034  INFO 16200 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 14:12:47.039  INFO 16200 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.365 seconds (JVM running for 6.651)
2023-06-06 14:13:20.091  INFO 16200 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 14:13:20.092  INFO 16200 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 14:13:20.105  INFO 16200 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 13 ms
2023-06-06 14:13:20.188  INFO 16200 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 14:13:20.493  INFO 16200 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 14:13:20.507 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:13:20.539 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:13:20.578 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:13:20.588 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:13:20.588 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:13:20.600 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:13:47.349 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:13:47.350 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:13:47.366 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:13:49.964 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:13:49.965 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:13:49.975 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:13:52.037 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:13:52.041 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:13:47.434(Timestamp)
2023-06-06 14:13:52.066 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:13:52.077 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:13:52.080 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 14(Integer), 2(Integer), 1(Integer), 2023-06-06 14:13:47.434(Timestamp), false(Boolean)
2023-06-06 14:13:52.099 DEBUG 16200 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:13:59.179 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:13:59.179 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:13:59.192 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:13:59.198 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:13:59.198 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:13:59.213 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 14:13:59.278 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:13:59.279 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 14(Integer)
2023-06-06 14:13:59.289 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:13:59.308 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:13:59.308 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 14:13:59.318 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:13:59.320 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:13:59.321 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:13:59.331 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:13:59.333 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:13:59.334 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:13:59.343 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:13:59.345 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:13:59.346 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:13:59.355 DEBUG 16200 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:04.418 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 14:14:04.419 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 8(Integer)
2023-06-06 14:14:04.429 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:04.432 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:04.433 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 14(Integer)
2023-06-06 14:14:04.444 DEBUG 16200 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 14:14:04.446 DEBUG 16200 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:04.446 DEBUG 16200 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 14:14:04.456 DEBUG 16200 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 14:14:14.605 DEBUG 16200 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 14:14:14.605 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:14:14.606 DEBUG 16200 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 14:14:14.606 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:14:14.627 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:14:14.629 DEBUG 16200 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 14:14:14.630 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:14:14.631 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:14:14.645 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 14:14:14.647 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:14.648 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 14(Integer)
2023-06-06 14:14:14.659 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:14.663 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:14.663 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 14:14:14.672 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:14.675 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:14.675 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:14:14.683 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:14.686 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:14.686 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:14:14.694 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:14.696 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:14.697 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:14:14.705 DEBUG 16200 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:16.573 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 14:14:16.573 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 8(Integer)
2023-06-06 14:14:16.582 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:16.584 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 14:14:16.586 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 14(Integer), 2(Integer), 1(Integer), 2023-06-06 14:13:47.0(Timestamp), true(Boolean), 8(Integer)
2023-06-06 14:14:16.614 DEBUG 16200 --- [XNIO-1 task-8] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 14:14:16.997 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:14:16.998 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:14:17.008 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:14:17.011 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:14:17.011 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:14:17.028 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 4
2023-06-06 14:14:17.030 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:17.030 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 14:14:17.048 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:17.051 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:17.051 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:14:17.059 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:17.061 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:17.062 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:14:17.071 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:17.075 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:17.075 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:14:17.085 DEBUG 16200 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:18.426 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 14:14:18.426 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 7(Integer)
2023-06-06 14:14:18.435 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:18.437 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 14:14:18.439 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 13(Integer), 2(Integer), 1(Integer), 2023-06-06 14:06:41.0(Timestamp), true(Boolean), 7(Integer)
2023-06-06 14:14:18.476 DEBUG 16200 --- [XNIO-1 task-10] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 14:14:18.852 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 14:14:18.852 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 14:14:18.862 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 14:14:18.864 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 14:14:18.865 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 14:14:18.880 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 3
2023-06-06 14:14:18.881 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:18.882 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 14:14:18.892 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:18.897 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:18.897 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 14:14:18.907 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:14:18.909 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 14:14:18.910 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:14:18.919 DEBUG 16200 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:29:12.494 DEBUG 16200 --- [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-06-06 14:29:12.495 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:29:12.506 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:29:12.507 DEBUG 16200 --- [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-06-06 14:29:12.507 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:29:12.522 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:29:12.617 DEBUG 16200 --- [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-06-06 14:29:12.618 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:29:12.628 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:29:29.036 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:29:29.037 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:29:29.048 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:29:34.729 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:29:34.732 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:29:12.636(Timestamp)
2023-06-06 14:29:34.751 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:29:34.753 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:29:34.754 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 15(Integer), 2(Integer), 1(Integer), 2023-06-06 14:29:12.636(Timestamp), false(Boolean)
2023-06-06 14:29:34.771 DEBUG 16200 --- [XNIO-1 task-12] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:29:52.294 DEBUG 16200 --- [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-06-06 14:29:52.294 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:29:52.304 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:29:52.305 DEBUG 16200 --- [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-06-06 14:29:52.306 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:29:52.315 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:30:23.320  WARN 16200 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=54s281ms431µs300ns).
2023-06-06 14:30:46.347 DEBUG 16200 --- [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-06-06 14:30:46.347 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:30:46.360 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:30:47.230 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:30:47.232 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:30:47.244 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:30:49.904 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:30:49.906 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:30:46.368(Timestamp)
2023-06-06 14:30:49.925 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:30:49.928 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:30:49.928 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 16(Integer), 2(Integer), 1(Integer), 2023-06-06 14:30:46.368(Timestamp), false(Boolean)
2023-06-06 14:30:49.947 DEBUG 16200 --- [XNIO-1 task-14] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:33:18.891 DEBUG 16200 --- [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-06-06 14:33:18.892 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:33:18.903 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:33:18.904 DEBUG 16200 --- [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-06-06 14:33:18.904 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:33:18.926 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:34:02.169 DEBUG 16200 --- [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-06-06 14:34:02.170 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:34:02.182 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:34:03.001 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:34:03.002 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:34:03.015 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:34:04.435 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:34:04.436 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:34:02.192(Timestamp)
2023-06-06 14:34:04.458 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:34:04.460 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:34:04.464 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 17(Integer), 2(Integer), 1(Integer), 2023-06-06 14:34:02.192(Timestamp), false(Boolean)
2023-06-06 14:34:04.483 DEBUG 16200 --- [XNIO-1 task-16] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:55:32.171  INFO 16200 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-06 14:55:32.188  INFO 16200 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-06 14:55:32.194  INFO 16200 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-06 14:55:39.669  INFO 1784 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 1784 (E:\demo\xzs-mysql\source\xzs\target\classes started by qirong in E:\demo\xzs-mysql\source\xzs)
2023-06-06 14:55:39.672  INFO 1784 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 14:55:39.729  INFO 1784 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 14:55:39.729  INFO 1784 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 14:55:41.950  WARN 1784 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 14:55:41.988  INFO 1784 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 14:55:41.988  INFO 1784 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2237 ms
2023-06-06 14:55:43.398  INFO 1784 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@26168ce4, org.springframework.security.web.context.SecurityContextPersistenceFilter@203e6bb6, org.springframework.security.web.header.HeaderWriterFilter@7ef3cc5f, org.springframework.web.filter.CorsFilter@2a2dead4, org.springframework.security.web.authentication.logout.LogoutFilter@551cc71c, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@4c3ee1e0, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@5f4cb6ac, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2bf8bbe2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@10aaf052, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@2fc7214a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3be3bc0f, org.springframework.security.web.session.SessionManagementFilter@533c1e77, org.springframework.security.web.access.ExceptionTranslationFilter@1008305d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6d9a08de]
2023-06-06 14:55:43.863  INFO 1784 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 14:55:44.005  INFO 1784 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 14:55:44.021  INFO 1784 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 14:55:44.114  INFO 1784 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 14:55:44.119  INFO 1784 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.249 seconds (JVM running for 6.577)
2023-06-06 14:56:10.429  INFO 1784 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 14:56:10.429  INFO 1784 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 14:56:10.445  INFO 1784 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 16 ms
2023-06-06 14:56:10.515  INFO 1784 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 14:56:10.923  INFO 1784 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 14:56:10.975 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:56:11.014 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:56:11.078 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:56:11.087 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:56:11.087 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:56:11.109 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:57:01.269  WARN 1784 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=50s232ms594µs600ns).
2023-06-06 14:57:01.281 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 14:57:01.282 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 14:57:01.293 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 14:57:02.126 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 14:57:02.127 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 14:57:02.136 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 14:57:03.445 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 14:57:03.485 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[],"correct":"A"}(String), 2023-06-06 14:57:01.315(Timestamp)
2023-06-06 14:57:03.505 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 14:57:03.513 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 14:57:03.516 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 18(Integer), 2(Integer), 1(Integer), 2023-06-06 14:57:01.315(Timestamp), false(Boolean)
2023-06-06 14:57:03.532 DEBUG 1784 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 14:58:56.681  INFO 1784 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-06 14:58:56.689  INFO 1784 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-06 14:58:56.692  INFO 1784 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-06 14:59:03.542  INFO 25740 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 25740 (E:\demo\xzs-mysql\source\xzs\target\classes started by qirong in E:\demo\xzs-mysql\source\xzs)
2023-06-06 14:59:03.545  INFO 25740 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 14:59:03.600  INFO 25740 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 14:59:03.601  INFO 25740 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 14:59:05.724  WARN 25740 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 14:59:05.761  INFO 25740 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 14:59:05.763  INFO 25740 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2162 ms
2023-06-06 14:59:07.328  INFO 25740 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@56afbf, org.springframework.security.web.context.SecurityContextPersistenceFilter@51df238c, org.springframework.security.web.header.HeaderWriterFilter@36331189, org.springframework.web.filter.CorsFilter@398e54cc, org.springframework.security.web.authentication.logout.LogoutFilter@ec3fee3, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@126b579f, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@30304163, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@447a8d72, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1722bccd, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@3264fc1a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@773c8d91, org.springframework.security.web.session.SessionManagementFilter@619c7d2a, org.springframework.security.web.access.ExceptionTranslationFilter@5f499150, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@38321e31]
2023-06-06 14:59:07.798  INFO 25740 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 14:59:07.939  INFO 25740 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 14:59:07.955  INFO 25740 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 14:59:08.046  INFO 25740 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 14:59:08.051  INFO 25740 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.285 seconds (JVM running for 6.616)
2023-06-06 15:00:27.364  INFO 25740 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 15:00:27.365  INFO 25740 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 15:00:27.378  INFO 25740 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 13 ms
2023-06-06 15:00:27.430  INFO 25740 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 15:00:27.699  INFO 25740 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 15:00:27.710 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:00:27.757 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:00:27.797 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:00:27.807 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:00:27.808 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:00:27.818 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:00:46.206 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:00:46.207 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:00:46.221 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:00:46.902 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:00:46.902 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:00:46.942 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:47.635 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:00:47.675 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 15:00:46.252(Timestamp)
2023-06-06 15:00:47.693 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:00:47.700 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:00:47.702 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 19(Integer), 2(Integer), 1(Integer), 2023-06-06 15:00:46.252(Timestamp), false(Boolean)
2023-06-06 15:00:47.719 DEBUG 25740 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:00:51.704 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:00:51.705 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:00:51.715 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:00:51.717 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:00:51.717 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:00:51.727 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:00:51.866 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:00:51.867 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:00:51.877 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:00:51.883 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:00:51.884 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:00:51.898 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-06-06 15:00:51.962 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:51.963 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:00:51.973 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:51.989 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:51.990 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:00:51.998 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:51.999 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.000 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:00:52.008 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:52.011 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.011 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:00:52.021 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:52.023 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.024 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:00:52.038 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:52.040 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.042 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 15:00:52.137 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:52.141 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.141 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:00:52.388 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:52.390 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:52.391 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:00:52.403 DEBUG 25740 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:56.272 DEBUG 25740 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:00:56.274 DEBUG 25740 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:00:56.286 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:00:56.287 DEBUG 25740 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:00:56.287 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 15:00:56.297 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:00:56.300 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:00:56.301 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:00:56.310 DEBUG 25740 --- [XNIO-1 task-4] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:17.520 DEBUG 25740 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:01:17.521 DEBUG 25740 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:01:17.532 DEBUG 25740 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:01:17.536 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:01:17.536 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:01:17.547 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:01:17.552 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:01:17.552 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:01:17.565 DEBUG 25740 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:01:24.396 DEBUG 25740 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:01:24.397 DEBUG 25740 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:01:24.404 DEBUG 25740 --- [XNIO-1 task-9] 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 from t_exam_paper where id = ? 
2023-06-06 15:01:24.404 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:01:24.409 DEBUG 25740 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:01:24.417 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:24.420 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:24.458 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:01:24.469 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:24.481 DEBUG 25740 --- [XNIO-1 task-9] 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-06-06 15:01:24.481 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 2(Integer)
2023-06-06 15:01:24.491 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 1
2023-06-06 15:01:24.499 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:24.499 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:01:24.509 DEBUG 25740 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:29.056 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 15:01:29.058 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 15:01:29.065 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:01:29.068 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 15:01:29.069 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 15:01:29.079 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 15:01:29.081 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:29.082 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:01:29.091 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:29.093 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:29.093 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:01:29.108 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:29.112 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:29.112 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:01:29.120 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:29.124 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:29.125 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:01:29.136 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:29.141 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:29.141 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:01:29.152 DEBUG 25740 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:36.870 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:01:36.870 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 15:01:36.885 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:36.886 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:36.887 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:01:36.895 DEBUG 25740 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.224 DEBUG 25740 --- [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-06-06 15:01:44.224 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:01:44.235 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:01:44.250 DEBUG 25740 --- [XNIO-1 task-12] 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 from t_exam_paper where id = ? 
2023-06-06 15:01:44.251 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:01:44.261 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.262 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:44.263 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:01:44.278 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.279 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-06-06 15:01:44.280 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"java","questionItems":[{"id":2,"itemOrder":1},{"id":13,"itemOrder":2}]}](String), 2023-06-01 10:22:01.0(Timestamp), 6(Integer)
2023-06-06 15:01:44.306 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:01:44.311 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:01:44.312 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:01:44.321 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.366 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, subject_id = ?, paper_type = ?, grade_level = ?, score = ?, question_count = ?, suggest_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:01:44.366 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: Java(String), 1(Integer), 1(Integer), 1(Integer), 70(Integer), 2(Integer), 5(Integer), 6(Integer), 2(Integer), 2023-06-01 10:22:01.0(Timestamp), false(Boolean), 3(Integer)
2023-06-06 15:01:44.388 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:01:44.427 DEBUG 25740 --- [XNIO-1 task-12] 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 from t_exam_paper where id = ? 
2023-06-06 15:01:44.427 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:01:44.437 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.440 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:44.440 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:01:44.449 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.451 DEBUG 25740 --- [XNIO-1 task-12] 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-06-06 15:01:44.452 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 2(Integer), 13(Integer)
2023-06-06 15:01:44.461 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:01:44.463 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:44.463 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:01:44.471 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:44.473 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:01:44.475 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:01:44.483 DEBUG 25740 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:01:45.522 DEBUG 25740 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:01:45.523 DEBUG 25740 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:01:45.527 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:01:45.527 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:01:45.531 DEBUG 25740 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:01:45.536 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:01:45.538 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:01:45.539 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:01:45.550 DEBUG 25740 --- [XNIO-1 task-14] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:07:22.582 DEBUG 25740 --- [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-06-06 15:07:22.587 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:22.600 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:22.618 DEBUG 25740 --- [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-06-06 15:07:22.618 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:22.628 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:22.636 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:07:22.638 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 登录了学之思开源考试系统(String), 2023-06-06 15:07:22.63(Timestamp)
2023-06-06 15:07:22.660 DEBUG 25740 --- [XNIO-1 task-19] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:07:22.747 DEBUG 25740 --- [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-06-06 15:07:22.749 DEBUG 25740 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:22.759 DEBUG 25740 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:22.764 DEBUG 25740 --- [XNIO-1 task-20] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 15:07:22.765 DEBUG 25740 --- [XNIO-1 task-20] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 15:07:22.778 DEBUG 25740 --- [XNIO-1 task-20] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 15:07:23.057 DEBUG 25740 --- [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-06-06 15:07:23.058 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:23.069 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:23.070 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-06-06 15:07:23.071 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 1(Integer)
2023-06-06 15:07:23.080 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 1
2023-06-06 15:07:23.093 DEBUG 25740 --- [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-06-06 15:07:23.094 DEBUG 25740 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:23.102 DEBUG 25740 --- [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-06-06 15:07:23.103 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:23.103 DEBUG 25740 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:23.105 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-06-06 15:07:23.106 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 15:07:23.113 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:23.114 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByTUid                 : <==      Total: 0
2023-06-06 15:07:23.117 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:23.118 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 4(Integer)
2023-06-06 15:07:23.121 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? ORDER BY id desc limit 5 
2023-06-06 15:07:23.122 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 15:07:23.128 DEBUG 25740 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:23.130 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 2
2023-06-06 15:07:23.132 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? and ? between limit_start_time and limit_end_time ORDER BY id desc limit 5 
2023-06-06 15:07:23.133 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 1(Integer), 2023-06-06 15:07:23.13(Timestamp)
2023-06-06 15:07:23.149 DEBUG 25740 --- [XNIO-1 task-22] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-06-06 15:07:26.435 DEBUG 25740 --- [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 from t_exam_paper where id = ? 
2023-06-06 15:07:26.436 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:07:26.445 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:26.448 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:26.448 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:07:26.457 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:26.458 DEBUG 25740 --- [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-06-06 15:07:26.459 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 2(Integer), 13(Integer)
2023-06-06 15:07:26.468 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:07:26.469 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:26.469 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:07:26.481 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:26.483 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:26.484 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:07:26.492 DEBUG 25740 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:33.784 DEBUG 25740 --- [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-06-06 15:07:33.785 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:33.795 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:33.798 DEBUG 25740 --- [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 from t_exam_paper where id = ? 
2023-06-06 15:07:33.798 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:07:33.808 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:33.809 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:33.809 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:07:33.818 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:33.823 DEBUG 25740 --- [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-06-06 15:07:33.824 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 2(Integer), 13(Integer)
2023-06-06 15:07:33.833 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:07:33.909 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( 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 ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:07:33.910 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : ==> Parameters: 3(Integer), Java(String), 1(Integer), 1(Integer), 0(Integer), 0(Integer), 70(Integer), 0(Integer), 2(Integer), 7(Integer), 1(Integer), 1(Integer), 2023-06-06 15:07:33.798(Timestamp)
2023-06-06 15:07:33.925 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-06-06 15:07:33.928 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:07:33.928 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : ==> Parameters: 是(String), 2023-06-06 15:07:33.905(Timestamp)
2023-06-06 15:07:33.944 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:07:33.948 DEBUG 25740 --- [XNIO-1 task-25] 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-06-06 15:07:33.950 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.insertList                   : ==> Parameters: 2(Integer), 40(Integer), 1(Integer), 2023-06-06 15:07:33.798(Timestamp), 1(Integer), 20(Integer), 3(Integer), 5(Integer), null, 0(Integer), 5(Integer), null, 5(Integer), 1(Integer), 13(Integer), 30(Integer), 1(Integer), 2023-06-06 15:07:33.798(Timestamp), 1(Integer), null, 3(Integer), 1(Integer), B(String), 0(Integer), 5(Integer), false(Boolean), 19(Integer), 2(Integer)
2023-06-06 15:07:33.965 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.E.insertList                   : <==    Updates: 2
2023-06-06 15:07:34.006 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:07:34.008 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 提交试卷:Java 得分:0 耗时:7 秒(String), 2023-06-06 15:07:33.894(Timestamp)
2023-06-06 15:07:34.031 DEBUG 25740 --- [XNIO-1 task-25] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:07:36.806 DEBUG 25740 --- [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-06-06 15:07:36.807 DEBUG 25740 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:36.817 DEBUG 25740 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:36.820 DEBUG 25740 --- [XNIO-1 task-26] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 15:07:36.820 DEBUG 25740 --- [XNIO-1 task-26] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.828 DEBUG 25740 --- [XNIO-1 task-26] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 15:07:36.836 DEBUG 25740 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:07:36.836 DEBUG 25740 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:36.837 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:07:36.837 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:07:36.845 DEBUG 25740 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:36.853 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:07:36.862 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-06-06 15:07:36.863 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.870 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-06-06 15:07:36.873 DEBUG 25740 --- [XNIO-1 task-28] 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-06-06 15:07:36.874 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 15:07:36.883 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.E.studentPage                  : <==      Total: 5
2023-06-06 15:07:36.887 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:07:36.887 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.896 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:36.896 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:07:36.897 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.905 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:36.909 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:07:36.910 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.917 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:36.919 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:07:36.919 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.927 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:36.929 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:07:36.929 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:07:36.937 DEBUG 25740 --- [XNIO-1 task-28] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.384 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:07:42.384 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:07:42.392 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.432 DEBUG 25740 --- [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 from t_exam_paper where id = ? 
2023-06-06 15:07:42.432 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:07:42.443 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.444 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:42.445 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:07:42.455 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.459 DEBUG 25740 --- [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-06-06 15:07:42.459 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 2(Integer), 13(Integer)
2023-06-06 15:07:42.467 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:07:42.470 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:42.470 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:07:42.478 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.479 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:42.481 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:07:42.489 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.492 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:07:42.492 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:07:42.499 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:07:42.501 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectListByPaperAnswerId    : ==>  Preparing: select id, question_id, exam_paper_id, exam_paper_answer_id, question_type, subject_id, customer_score, question_score, question_text_content_id, answer, text_content_id, do_right, create_user, create_time, item_order from t_exam_paper_question_customer_answer where exam_paper_answer_id = ? order by item_order 
2023-06-06 15:07:42.502 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 5(Integer)
2023-06-06 15:07:42.511 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 2
2023-06-06 15:07:42.513 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:07:42.515 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 20(Integer)
2023-06-06 15:07:42.524 DEBUG 25740 --- [XNIO-1 task-29] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:18.828 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:13:18.829 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:13:18.839 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:13:18.844 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:13:18.844 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:13:18.855 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:13:18.856 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:13:18.856 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了学之思开源考试系统(String), 2023-06-06 15:13:18.855(Timestamp)
2023-06-06 15:13:18.887 DEBUG 25740 --- [XNIO-1 task-32] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:13:19.151 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-06 15:13:19.152 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 15:13:19.162 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 15:13:19.163 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-06 15:13:19.164 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-06 15:13:19.184 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-06 15:13:19.185 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-06 15:13:19.187 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 15:13:19.202 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 15:13:19.203 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-06 15:13:19.203 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 15:13:19.213 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 15:13:19.215 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 15:13:19.215 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 15:13:19.228 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.U.selectCountByDate            : <==      Total: 3
2023-06-06 15:13:19.232 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 15:13:19.233 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 15:13:19.242 DEBUG 25740 --- [XNIO-1 task-33] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-06 15:13:28.908 DEBUG 25740 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:13:28.908 DEBUG 25740 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:13:28.916 DEBUG 25740 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:13:29.191 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:13:29.193 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:13:29.202 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:13:29.204 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:13:29.204 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:13:29.214 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-06-06 15:13:29.216 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.216 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:13:29.224 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.227 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.228 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:13:29.236 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.242 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.242 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:13:29.251 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.253 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.253 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:13:29.261 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.263 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.263 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:13:29.271 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.273 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.273 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 15:13:29.281 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.282 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.283 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:13:29.290 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:29.292 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:29.292 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:13:29.299 DEBUG 25740 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:40.698 DEBUG 25740 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:13:40.698 DEBUG 25740 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:13:40.702 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:13:40.702 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:13:40.706 DEBUG 25740 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:13:40.713 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:13:40.714 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:13:40.715 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:13:40.726 DEBUG 25740 --- [XNIO-1 task-37] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:13:43.621 DEBUG 25740 --- [XNIO-1 task-38] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:13:43.621 DEBUG 25740 --- [XNIO-1 task-38] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:13:43.634 DEBUG 25740 --- [XNIO-1 task-38] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:13:43.920 DEBUG 25740 --- [XNIO-1 task-39] 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 from t_exam_paper where id = ? 
2023-06-06 15:13:43.921 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:13:43.935 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:43.935 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:43.936 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:13:43.948 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:43.949 DEBUG 25740 --- [XNIO-1 task-39] 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-06-06 15:13:43.951 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer)
2023-06-06 15:13:43.961 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 1
2023-06-06 15:13:43.962 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:43.962 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:13:43.972 DEBUG 25740 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:47.712 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 15:13:47.713 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 15:13:47.725 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:13:47.729 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 15:13:47.730 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 15:13:47.745 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 15:13:47.748 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:47.748 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:13:47.758 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:47.759 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:47.759 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:13:47.767 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:47.768 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:47.770 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:13:47.781 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:47.782 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:47.782 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:13:47.790 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:47.792 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:47.793 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:13:47.809 DEBUG 25740 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:52.149 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:13:52.149 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 15:13:52.162 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:52.163 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:52.163 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:13:52.176 DEBUG 25740 --- [XNIO-1 task-41] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.387 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:13:55.389 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:13:55.398 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:13:55.410 DEBUG 25740 --- [XNIO-1 task-42] 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 from t_exam_paper where id = ? 
2023-06-06 15:13:55.410 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:13:55.419 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.420 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:55.420 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:13:55.429 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.430 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-06-06 15:13:55.430 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"语文期末","questionItems":[{"id":1,"itemOrder":1},{"id":13,"itemOrder":2}]}](String), 2023-05-29 11:04:05.0(Timestamp), 3(Integer)
2023-06-06 15:13:55.447 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:13:55.447 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:13:55.448 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:13:55.457 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.460 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, subject_id = ?, paper_type = ?, grade_level = ?, score = ?, question_count = ?, suggest_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ?, task_exam_id = ? where id = ? 
2023-06-06 15:13:55.460 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 语文期末(String), 1(Integer), 6(Integer), 1(Integer), 40(Integer), 2(Integer), 5(Integer), 3(Integer), 2(Integer), 2023-05-29 11:04:05.0(Timestamp), false(Boolean), 1(Integer), 2(Integer)
2023-06-06 15:13:55.475 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:13:55.503 DEBUG 25740 --- [XNIO-1 task-42] 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 from t_exam_paper where id = ? 
2023-06-06 15:13:55.504 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:13:55.511 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.512 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:55.512 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-06-06 15:13:55.519 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.521 DEBUG 25740 --- [XNIO-1 task-42] 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-06-06 15:13:55.522 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:13:55.530 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:13:55.532 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:55.532 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:13:55.540 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:55.542 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:13:55.542 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:13:55.551 DEBUG 25740 --- [XNIO-1 task-42] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:13:56.192 DEBUG 25740 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:13:56.192 DEBUG 25740 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:13:56.219 DEBUG 25740 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:13:56.537 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:13:56.538 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:13:56.548 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:13:56.550 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:13:56.551 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:13:56.558 DEBUG 25740 --- [XNIO-1 task-44] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:14:07.775 DEBUG 25740 --- [XNIO-1 task-45] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:07.775 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:07.789 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:07.790 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:07.790 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:07.798 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:07.799 DEBUG 25740 --- [XNIO-1 task-45] 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-06-06 15:14:07.799 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer)
2023-06-06 15:14:07.807 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 1
2023-06-06 15:14:07.807 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:07.807 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:07.816 DEBUG 25740 --- [XNIO-1 task-45] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:21.696 DEBUG 25740 --- [XNIO-1 task-46] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:14:21.696 DEBUG 25740 --- [XNIO-1 task-47] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:21.696 DEBUG 25740 --- [XNIO-1 task-46] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:14:21.696 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:21.703 DEBUG 25740 --- [XNIO-1 task-46] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:14:21.703 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:21.704 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:21.704 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:21.713 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:21.747 DEBUG 25740 --- [XNIO-1 task-47] 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-06-06 15:14:21.748 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer)
2023-06-06 15:14:21.756 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 1
2023-06-06 15:14:21.760 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:21.760 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:21.770 DEBUG 25740 --- [XNIO-1 task-47] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:24.789 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 15:14:24.789 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 15:14:24.800 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:14:24.802 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 15:14:24.802 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 15:14:24.811 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 15:14:24.812 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:24.812 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:24.820 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:24.821 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:24.821 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:14:24.829 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:24.831 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:24.832 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:14:24.840 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:24.841 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:24.841 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:14:24.850 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:24.852 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:24.852 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:14:24.859 DEBUG 25740 --- [XNIO-1 task-48] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:28.320 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 15:14:28.320 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 15:14:28.329 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:14:28.331 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 15:14:28.331 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 15:14:28.349 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 15:14:28.349 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:28.349 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:28.363 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:28.364 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:28.365 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:14:28.372 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:28.373 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:28.375 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:14:28.382 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:28.383 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:28.384 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:14:28.392 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:28.393 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:28.393 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:14:28.406 DEBUG 25740 --- [XNIO-1 task-49] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:35.643 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:14:35.643 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 15:14:35.652 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:35.652 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:35.653 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:35.662 DEBUG 25740 --- [XNIO-1 task-50] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.290 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:14:39.291 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:14:39.302 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:14:39.313 DEBUG 25740 --- [XNIO-1 task-51] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:39.313 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:39.322 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.322 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:39.322 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:39.331 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.332 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-06-06 15:14:39.332 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"语文期中考试","questionItems":[{"id":1,"itemOrder":1},{"id":13,"itemOrder":2}]}](String), 2023-05-29 10:44:13.0(Timestamp), 2(Integer)
2023-06-06 15:14:39.351 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:14:39.352 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:39.352 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:39.361 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.364 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, subject_id = ?, paper_type = ?, grade_level = ?, score = ?, question_count = ?, suggest_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:14:39.365 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 语文期中考试(String), 1(Integer), 1(Integer), 1(Integer), 40(Integer), 2(Integer), 5(Integer), 2(Integer), 2(Integer), 2023-05-29 10:44:13.0(Timestamp), false(Boolean), 1(Integer)
2023-06-06 15:14:39.382 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:14:39.415 DEBUG 25740 --- [XNIO-1 task-51] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:39.415 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:39.426 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.427 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:39.427 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:39.436 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.465 DEBUG 25740 --- [XNIO-1 task-51] 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-06-06 15:14:39.466 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:14:39.475 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:14:39.475 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:39.475 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:39.484 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:39.485 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:39.485 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:39.495 DEBUG 25740 --- [XNIO-1 task-51] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:40.126 DEBUG 25740 --- [XNIO-1 task-52] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:14:40.126 DEBUG 25740 --- [XNIO-1 task-52] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:14:40.137 DEBUG 25740 --- [XNIO-1 task-52] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:14:40.421 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:14:40.421 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:14:40.460 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:14:40.461 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:14:40.462 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:14:40.487 DEBUG 25740 --- [XNIO-1 task-53] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:14:44.134 DEBUG 25740 --- [XNIO-1 task-54] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:44.134 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:44.146 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:44.147 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:44.147 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:44.158 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:44.158 DEBUG 25740 --- [XNIO-1 task-54] 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-06-06 15:14:44.159 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:14:44.170 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:14:44.171 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:44.171 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:44.184 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:44.185 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:44.186 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:44.194 DEBUG 25740 --- [XNIO-1 task-54] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:49.963 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:14:49.964 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:14:49.976 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:14:49.977 DEBUG 25740 --- [XNIO-1 task-55] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:49.977 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:49.988 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:49.988 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:49.989 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:49.998 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:49.999 DEBUG 25740 --- [XNIO-1 task-55] 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-06-06 15:14:49.999 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:14:50.010 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:14:50.019 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( 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 ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:14:50.020 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.insertSelective              : ==> Parameters: 1(Integer), 语文期中考试(String), 1(Integer), 1(Integer), 30(Integer), 30(Integer), 40(Integer), 1(Integer), 2(Integer), 5(Integer), 2(Integer), 1(Integer), 2023-06-06 15:14:49.977(Timestamp)
2023-06-06 15:14:50.036 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-06-06 15:14:50.039 DEBUG 25740 --- [XNIO-1 task-55] 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-06-06 15:14:50.040 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.insertList                   : ==> Parameters: 1(Integer), 10(Integer), 1(Integer), 2023-06-06 15:14:49.977(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), A(String), 0(Integer), 6(Integer), false(Boolean), 1(Integer), 1(Integer), 13(Integer), 30(Integer), 1(Integer), 2023-06-06 15:14:49.977(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), A(String), 30(Integer), 6(Integer), true(Boolean), 19(Integer), 2(Integer)
2023-06-06 15:14:50.055 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.E.insertList                   : <==    Updates: 2
2023-06-06 15:14:50.122 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:14:50.122 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 提交试卷:语文期中考试 得分:3 耗时:5 秒(String), 2023-06-06 15:14:50.01(Timestamp)
2023-06-06 15:14:50.162 DEBUG 25740 --- [XNIO-1 task-55] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:14:52.279 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:14:52.280 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:14:52.288 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:14:52.289 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 15:14:52.289 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.297 DEBUG 25740 --- [XNIO-1 task-56] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 15:14:52.568 DEBUG 25740 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:14:52.569 DEBUG 25740 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:14:52.580 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:14:52.580 DEBUG 25740 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:14:52.580 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:14:52.591 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:14:52.593 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-06-06 15:14:52.594 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.602 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-06-06 15:14:52.603 DEBUG 25740 --- [XNIO-1 task-58] 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-06-06 15:14:52.604 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 15:14:52.613 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.E.studentPage                  : <==      Total: 6
2023-06-06 15:14:52.614 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.615 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.627 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:52.628 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.629 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.637 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:52.638 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.638 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.649 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:52.650 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.650 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.661 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:52.703 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.703 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.714 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:52.715 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:14:52.715 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:52.726 DEBUG 25740 --- [XNIO-1 task-58] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:55.963 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:14:55.964 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:14:55.972 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:55.973 DEBUG 25740 --- [XNIO-1 task-59] 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 from t_exam_paper where id = ? 
2023-06-06 15:14:55.973 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:55.982 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:55.982 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:55.982 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:14:55.990 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:55.993 DEBUG 25740 --- [XNIO-1 task-59] 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-06-06 15:14:55.993 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:14:56.001 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:14:56.002 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:56.002 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:14:56.010 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:56.011 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:14:56.011 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:14:56.018 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:56.019 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:14:56.020 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6(Integer)
2023-06-06 15:14:56.029 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:14:56.030 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectListByPaperAnswerId    : ==>  Preparing: select id, question_id, exam_paper_id, exam_paper_answer_id, question_type, subject_id, customer_score, question_score, question_text_content_id, answer, text_content_id, do_right, create_user, create_time, item_order from t_exam_paper_question_customer_answer where exam_paper_answer_id = ? order by item_order 
2023-06-06 15:14:56.030 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 6(Integer)
2023-06-06 15:14:56.038 DEBUG 25740 --- [XNIO-1 task-59] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 2
2023-06-06 15:31:11.801 DEBUG 25740 --- [XNIO-1 task-63] 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 from t_exam_paper where id = ? 
2023-06-06 15:31:11.803 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:31:11.819 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:31:11.820 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:31:11.820 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:31:11.827 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:31:11.829 DEBUG 25740 --- [XNIO-1 task-63] 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-06-06 15:31:11.829 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:31:11.839 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:31:11.840 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:31:11.840 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:31:11.847 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:31:11.850 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:31:11.850 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:31:11.858 DEBUG 25740 --- [XNIO-1 task-63] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:31:39.094 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.095 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.142 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.151 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.152 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.166 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.168 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:31:39.169 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 登录了学之思开源考试系统(String), 2023-06-06 15:31:39.166(Timestamp)
2023-06-06 15:31:39.198 DEBUG 25740 --- [XNIO-1 task-64] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:31:39.583 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.584 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.592 DEBUG 25740 --- [XNIO-1 task-66] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.592 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.592 DEBUG 25740 --- [XNIO-1 task-66] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.592 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.595 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:31:39.596 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:31:39.596 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.597 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 15:31:39.597 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 15:31:39.601 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.601 DEBUG 25740 --- [XNIO-1 task-66] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.602 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? ORDER BY id desc limit 5 
2023-06-06 15:31:39.603 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 15:31:39.605 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:31:39.607 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-06-06 15:31:39.607 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 1(Integer)
2023-06-06 15:31:39.613 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 2
2023-06-06 15:31:39.613 DEBUG 25740 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 15:31:39.615 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? and ? between limit_start_time and limit_end_time ORDER BY id desc limit 5 
2023-06-06 15:31:39.615 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 1
2023-06-06 15:31:39.616 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 1(Integer), 2023-06-06 15:31:39.614(Timestamp)
2023-06-06 15:31:39.617 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-06-06 15:31:39.617 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 15:31:39.625 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByTUid                 : <==      Total: 0
2023-06-06 15:31:39.625 DEBUG 25740 --- [XNIO-1 task-68] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-06-06 15:31:39.626 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:31:39.626 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 4(Integer)
2023-06-06 15:31:39.632 DEBUG 25740 --- [XNIO-1 task-67] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.214 DEBUG 25740 --- [XNIO-1 task-69] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:32:26.214 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:26.215 DEBUG 25740 --- [XNIO-1 task-69] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:32:26.215 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:26.290 DEBUG 25740 --- [XNIO-1 task-69] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:32:26.290 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:26.292 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:26.293 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:26.305 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-06-06 15:32:26.339 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.340 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:26.363 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.365 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.365 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:32:26.384 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.385 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.386 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:32:26.403 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.404 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.404 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:32:26.413 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.414 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.414 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:32:26.423 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.425 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.425 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 15:32:26.437 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.438 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.439 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:26.451 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:26.452 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:26.452 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:26.464 DEBUG 25740 --- [XNIO-1 task-70] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.137 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:34.138 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 4(Integer)
2023-06-06 15:32:34.147 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.149 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:34.151 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 70(Integer), 1(Integer), 5(Integer), B(String), 10(Integer), 2(Integer), 1(Integer), 2023-06-05 09:02:46.0(Timestamp), true(Boolean), 4(Integer)
2023-06-06 15:32:34.180 DEBUG 25740 --- [XNIO-1 task-71] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:34.392 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:34.392 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:34.405 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:34.409 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:34.409 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:34.418 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 7
2023-06-06 15:32:34.418 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.420 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:34.427 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.428 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.430 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:32:34.437 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.438 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.438 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:32:34.446 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.447 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.448 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:32:34.461 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.462 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.462 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 15(Integer)
2023-06-06 15:32:34.470 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.471 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.471 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:34.480 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:34.513 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:34.513 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:34.521 DEBUG 25740 --- [XNIO-1 task-72] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.383 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:36.384 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 9(Integer)
2023-06-06 15:32:36.393 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.394 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:36.395 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 15(Integer), 2(Integer), 1(Integer), 2023-06-06 14:29:13.0(Timestamp), true(Boolean), 9(Integer)
2023-06-06 15:32:36.416 DEBUG 25740 --- [XNIO-1 task-73] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:36.802 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:36.802 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:36.815 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:36.819 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:36.819 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:36.827 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 6
2023-06-06 15:32:36.829 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.829 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:36.838 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.839 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.839 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:32:36.846 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.848 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.848 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:32:36.856 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.857 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.858 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 16(Integer)
2023-06-06 15:32:36.866 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.867 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.867 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:36.876 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:36.877 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:36.877 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:36.886 DEBUG 25740 --- [XNIO-1 task-74] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:38.595 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:38.595 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 10(Integer)
2023-06-06 15:32:38.603 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:38.604 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:38.605 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 16(Integer), 2(Integer), 1(Integer), 2023-06-06 14:30:46.0(Timestamp), true(Boolean), 10(Integer)
2023-06-06 15:32:38.635 DEBUG 25740 --- [XNIO-1 task-75] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:39.022 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:39.022 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:39.035 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:39.037 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:39.037 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:39.048 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 15:32:39.049 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:39.049 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:39.057 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:39.059 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:39.059 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:32:39.066 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:39.067 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:39.067 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 17(Integer)
2023-06-06 15:32:39.078 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:39.080 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:39.081 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:39.091 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:39.092 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:39.093 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:39.106 DEBUG 25740 --- [XNIO-1 task-76] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:40.379 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:40.380 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 11(Integer)
2023-06-06 15:32:40.396 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:40.397 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:40.398 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 17(Integer), 2(Integer), 1(Integer), 2023-06-06 14:34:02.0(Timestamp), true(Boolean), 11(Integer)
2023-06-06 15:32:40.438 DEBUG 25740 --- [XNIO-1 task-77] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:40.787 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:40.787 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:40.812 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:40.814 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:40.814 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:40.823 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 4
2023-06-06 15:32:40.824 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:40.824 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:40.832 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:40.832 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:40.832 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 18(Integer)
2023-06-06 15:32:40.840 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:40.841 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:40.841 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:40.850 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:40.852 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:40.853 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:40.859 DEBUG 25740 --- [XNIO-1 task-78] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:42.389 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:42.389 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 12(Integer)
2023-06-06 15:32:42.397 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:42.399 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:42.399 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 18(Integer), 2(Integer), 1(Integer), 2023-06-06 14:57:01.0(Timestamp), true(Boolean), 12(Integer)
2023-06-06 15:32:42.440 DEBUG 25740 --- [XNIO-1 task-79] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:42.780 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:42.780 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:42.794 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:42.795 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:42.796 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:42.805 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 3
2023-06-06 15:32:42.806 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:42.806 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:32:42.813 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:42.814 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:42.814 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:42.822 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:42.823 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:42.824 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:42.835 DEBUG 25740 --- [XNIO-1 task-80] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:44.390 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:32:44.391 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 13(Integer)
2023-06-06 15:32:44.400 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:44.401 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, subject_id = ?, score = ?, grade_level = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:32:44.401 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 19(Integer), 2(Integer), 1(Integer), 2023-06-06 15:00:46.0(Timestamp), true(Boolean), 13(Integer)
2023-06-06 15:32:44.439 DEBUG 25740 --- [XNIO-1 task-81] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:32:44.768 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:32:44.769 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:32:44.792 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:32:44.794 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:32:44.794 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:32:44.802 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 2
2023-06-06 15:32:44.803 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:44.805 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:32:44.812 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:44.813 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:32:44.813 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:32:44.821 DEBUG 25740 --- [XNIO-1 task-82] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:32:48.975 DEBUG 25740 --- [XNIO-1 task-83] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:32:48.975 DEBUG 25740 --- [XNIO-1 task-83] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:32:48.983 DEBUG 25740 --- [XNIO-1 task-83] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:33:35.599 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:33:35.601 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:33:35.611 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:33:41.893 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:33:41.895 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:33:41.906 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:33:42.453 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:33:42.454 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"阿里","analyze":"<p>阿里</p>","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":""}(String), 2023-06-06 15:33:35.621(Timestamp)
2023-06-06 15:33:42.473 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:33:42.480 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:33:42.481 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 2(Integer), 1(Integer), 40(Integer), 1(Integer), 3(Integer), A,B(String), 21(Integer), 2(Integer), 1(Integer), 2023-06-06 15:33:35.621(Timestamp), false(Boolean)
2023-06-06 15:33:42.506 DEBUG 25740 --- [XNIO-1 task-85] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:33:45.763 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:33:45.763 DEBUG 25740 --- [XNIO-1 task-86] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:33:45.763 DEBUG 25740 --- [XNIO-1 task-86] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:33:45.763 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:33:45.771 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:33:45.771 DEBUG 25740 --- [XNIO-1 task-86] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:33:45.772 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:33:45.772 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:33:45.792 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 3
2023-06-06 15:33:45.793 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:33:45.793 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:33:45.804 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:33:45.805 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:33:45.805 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:33:45.814 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:33:45.815 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:33:45.815 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:33:45.825 DEBUG 25740 --- [XNIO-1 task-87] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:12.422 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:36:12.422 DEBUG 25740 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:36:12.423 DEBUG 25740 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:36:12.423 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 14(Integer)
2023-06-06 15:36:12.431 DEBUG 25740 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:36:12.431 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:12.432 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:12.432 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:12.441 DEBUG 25740 --- [XNIO-1 task-89] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:25.389 DEBUG 25740 --- [XNIO-1 task-90] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:36:25.389 DEBUG 25740 --- [XNIO-1 task-90] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:36:25.391 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:36:25.391 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:36:25.397 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:36:25.397 DEBUG 25740 --- [XNIO-1 task-90] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:36:25.398 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:36:25.398 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:36:25.407 DEBUG 25740 --- [XNIO-1 task-91] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:36:27.911 DEBUG 25740 --- [XNIO-1 task-92] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:36:27.911 DEBUG 25740 --- [XNIO-1 task-92] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:36:27.921 DEBUG 25740 --- [XNIO-1 task-92] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:36:28.181 DEBUG 25740 --- [XNIO-1 task-93] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:28.181 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:28.193 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:28.195 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:28.195 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:28.203 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:28.204 DEBUG 25740 --- [XNIO-1 task-93] 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-06-06 15:36:28.205 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer)
2023-06-06 15:36:28.212 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 2
2023-06-06 15:36:28.215 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:28.215 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:28.226 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:28.227 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:28.228 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:36:28.250 DEBUG 25740 --- [XNIO-1 task-93] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:30.560 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 15:36:30.560 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 15:36:30.568 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:36:30.570 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 15:36:30.570 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 15:36:30.585 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 3
2023-06-06 15:36:30.586 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:30.623 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:30.632 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:30.633 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:30.633 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:36:30.647 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:30.648 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:30.648 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:30.657 DEBUG 25740 --- [XNIO-1 task-94] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:35.433 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 15:36:35.434 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 14(Integer)
2023-06-06 15:36:35.441 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:35.443 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:35.443 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:35.456 DEBUG 25740 --- [XNIO-1 task-95] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:37.999 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:36:38.000 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:36:38.009 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:36:38.021 DEBUG 25740 --- [XNIO-1 task-96] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:38.021 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:38.030 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.031 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:38.032 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:38.040 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.042 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-06-06 15:36:38.043 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"语文期中考试","questionItems":[{"id":1,"itemOrder":1},{"id":13,"itemOrder":2},{"id":14,"itemOrder":3}]}](String), 2023-05-29 10:44:13.0(Timestamp), 2(Integer)
2023-06-06 15:36:38.059 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:36:38.060 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:38.060 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:38.068 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.070 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, subject_id = ?, paper_type = ?, grade_level = ?, score = ?, question_count = ?, suggest_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 15:36:38.070 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 语文期中考试(String), 1(Integer), 1(Integer), 1(Integer), 80(Integer), 3(Integer), 5(Integer), 2(Integer), 2(Integer), 2023-05-29 10:44:13.0(Timestamp), false(Boolean), 1(Integer)
2023-06-06 15:36:38.086 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 15:36:38.121 DEBUG 25740 --- [XNIO-1 task-96] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:38.121 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:38.130 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.132 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:38.133 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:38.149 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.152 DEBUG 25740 --- [XNIO-1 task-96] 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-06-06 15:36:38.152 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer)
2023-06-06 15:36:38.160 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-06-06 15:36:38.161 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:38.162 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:38.169 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.170 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:38.170 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:36:38.177 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:38.180 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:38.180 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:38.187 DEBUG 25740 --- [XNIO-1 task-96] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:39.138 DEBUG 25740 --- [XNIO-1 task-97] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:36:39.138 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:36:39.138 DEBUG 25740 --- [XNIO-1 task-97] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:36:39.138 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:36:39.147 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:36:39.147 DEBUG 25740 --- [XNIO-1 task-97] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:36:39.148 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:36:39.148 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:36:39.157 DEBUG 25740 --- [XNIO-1 task-98] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:36:43.882 DEBUG 25740 --- [XNIO-1 task-99] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:43.882 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:43.891 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:43.891 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:43.891 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:43.899 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:43.900 DEBUG 25740 --- [XNIO-1 task-99] 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-06-06 15:36:43.900 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer)
2023-06-06 15:36:43.908 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-06-06 15:36:43.908 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:43.909 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:43.917 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:43.918 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:43.918 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:36:43.927 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:43.928 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:43.928 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:43.935 DEBUG 25740 --- [XNIO-1 task-99] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:49.629 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:36:49.629 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:36:49.638 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:36:49.640 DEBUG 25740 --- [XNIO-1 task-100] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:49.640 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:49.649 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:49.649 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:49.650 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:49.657 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:49.659 DEBUG 25740 --- [XNIO-1 task-100] 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-06-06 15:36:49.659 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer)
2023-06-06 15:36:49.667 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-06-06 15:36:49.679 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( 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 ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:36:49.680 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.insertSelective              : ==> Parameters: 1(Integer), 语文期中考试(String), 1(Integer), 1(Integer), 30(Integer), 30(Integer), 80(Integer), 1(Integer), 3(Integer), 5(Integer), 2(Integer), 1(Integer), 2023-06-06 15:36:49.638(Timestamp)
2023-06-06 15:36:49.697 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-06-06 15:36:49.712 DEBUG 25740 --- [XNIO-1 task-100] 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-06-06 15:36:49.714 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.insertList                   : ==> Parameters: 1(Integer), 10(Integer), 1(Integer), 2023-06-06 15:36:49.638(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), A(String), 0(Integer), 7(Integer), false(Boolean), 1(Integer), 1(Integer), 13(Integer), 30(Integer), 1(Integer), 2023-06-06 15:36:49.638(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), A(String), 30(Integer), 7(Integer), true(Boolean), 19(Integer), 2(Integer), 14(Integer), 40(Integer), 1(Integer), 2023-06-06 15:36:49.638(Timestamp), 1(Integer), null, 1(Integer), 2(Integer), A(String), 0(Integer), 7(Integer), false(Boolean), 21(Integer), 3(Integer)
2023-06-06 15:36:49.733 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.E.insertList                   : <==    Updates: 3
2023-06-06 15:36:49.763 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 15:36:49.764 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 提交试卷:语文期中考试 得分:3 耗时:5 秒(String), 2023-06-06 15:36:49.668(Timestamp)
2023-06-06 15:36:49.787 DEBUG 25740 --- [XNIO-1 task-100] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 15:36:51.447 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:36:51.447 DEBUG 25740 --- [XNIO-1 task-101] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:36:51.447 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:36:51.447 DEBUG 25740 --- [XNIO-1 task-101] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:36:51.456 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:36:51.456 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:36:51.457 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 15:36:51.457 DEBUG 25740 --- [XNIO-1 task-101] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:36:51.457 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 15:36:51.457 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.466 DEBUG 25740 --- [XNIO-1 task-102] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 15:36:51.466 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:36:51.468 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-06-06 15:36:51.468 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.477 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-06-06 15:36:51.480 DEBUG 25740 --- [XNIO-1 task-103] 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-06-06 15:36:51.481 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 15:36:51.496 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.E.studentPage                  : <==      Total: 7
2023-06-06 15:36:51.496 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.496 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.506 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.507 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.507 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.519 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.520 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.521 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.529 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.529 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.530 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.538 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.542 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.542 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.551 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.552 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.552 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.559 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:51.560 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:36:51.560 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:51.568 DEBUG 25740 --- [XNIO-1 task-103] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.369 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:36:54.370 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 7(Integer)
2023-06-06 15:36:54.378 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.378 DEBUG 25740 --- [XNIO-1 task-104] 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 from t_exam_paper where id = ? 
2023-06-06 15:36:54.379 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:54.387 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.387 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:54.388 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 15:36:54.395 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.396 DEBUG 25740 --- [XNIO-1 task-104] 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-06-06 15:36:54.396 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer)
2023-06-06 15:36:54.405 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-06-06 15:36:54.405 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:54.405 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:36:54.413 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.414 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:54.414 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 15:36:54.421 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.423 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:36:54.423 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:36:54.430 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.431 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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-06-06 15:36:54.431 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 7(Integer)
2023-06-06 15:36:54.439 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:36:54.440 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectListByPaperAnswerId    : ==>  Preparing: select id, question_id, exam_paper_id, exam_paper_answer_id, question_type, subject_id, customer_score, question_score, question_text_content_id, answer, text_content_id, do_right, create_user, create_time, item_order from t_exam_paper_question_customer_answer where exam_paper_answer_id = ? order by item_order 
2023-06-06 15:36:54.440 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 7(Integer)
2023-06-06 15:36:54.449 DEBUG 25740 --- [XNIO-1 task-104] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 3
2023-06-06 15:40:02.898 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:40:02.898 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:40:02.911 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:40:02.939 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:40:02.939 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:40:02.951 DEBUG 25740 --- [XNIO-1 task-105] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:40:43.161 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:40:43.161 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:40:43.179 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:40:43.183 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:40:43.183 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:40:43.205 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:40:46.654 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:40:46.654 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:40:46.661 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:40:47.406 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:40:47.408 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:40:47.417 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:40:48.015 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:40:48.016 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 15:40:46.67(Timestamp)
2023-06-06 15:40:48.036 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:40:48.037 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:40:48.038 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 22(Integer), 2(Integer), 1(Integer), 2023-06-06 15:40:46.67(Timestamp), false(Boolean)
2023-06-06 15:40:48.062 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:40:49.998 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:40:49.998 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:40:50.009 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:40:50.597 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:40:50.598 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A,B"}(String), 2023-06-06 15:40:49.454(Timestamp)
2023-06-06 15:40:50.622 DEBUG 25740 --- [XNIO-1 task-106] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:40:50.749 ERROR 25740 --- [XNIO-1 task-106] c.m.x.c.s.exception.ExceptionHandle      : null
 
java.lang.NullPointerException: null
    at com.mindskip.xzs.utility.ExamUtil.contentToString(ExamUtil.java:77)
    at com.mindskip.xzs.domain.Question.setCorrectFromVM(Question.java:168)
    at com.mindskip.xzs.service.impl.QuestionServiceImpl.insertFullQuestion(QuestionServiceImpl.java:74)
    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.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
    at com.sun.proxy.$Proxy80.insertFullQuestion(Unknown Source)
    at com.mindskip.xzs.controller.admin.QuestionController.importUser(QuestionController.java:138)
    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:150)
    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)
 
2023-06-06 15:41:08.618 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:41:08.618 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:41:08.627 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:41:08.629 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:41:08.629 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:41:08.639 DEBUG 25740 --- [XNIO-1 task-108] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:41:55.034 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:41:55.034 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:41:55.045 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:41:55.046 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:41:55.046 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:41:55.055 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:42:20.968 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:42:20.968 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:42:20.978 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:42:20.988 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:42:20.988 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:42:20.997 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:42:21.035 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:42:21.036 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 15:42:20.988(Timestamp)
2023-06-06 15:42:21.052 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:42:21.052 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:42:21.053 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 24(Integer), 2(Integer), 1(Integer), 2023-06-06 15:42:20.988(Timestamp), false(Boolean)
2023-06-06 15:42:21.070 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:42:21.117 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:42:21.117 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:42:21.126 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:42:21.127 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:42:21.128 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A,B"}(String), 2023-06-06 15:42:21.117(Timestamp)
2023-06-06 15:42:21.143 DEBUG 25740 --- [XNIO-1 task-109] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:42:21.170 ERROR 25740 --- [XNIO-1 task-109] c.m.x.c.s.exception.ExceptionHandle      : null
 
java.lang.NullPointerException: null
    at com.mindskip.xzs.utility.ExamUtil.contentToString(ExamUtil.java:77)
    at com.mindskip.xzs.domain.Question.setCorrectFromVM(Question.java:168)
    at com.mindskip.xzs.service.impl.QuestionServiceImpl.insertFullQuestion(QuestionServiceImpl.java:74)
    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.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
    at com.sun.proxy.$Proxy80.insertFullQuestion(Unknown Source)
    at com.mindskip.xzs.controller.admin.QuestionController.importUser(QuestionController.java:138)
    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:150)
    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)
 
2023-06-06 15:42:57.229 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:42:57.230 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:42:57.239 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:42:57.240 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:42:57.240 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:42:57.248 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:42:57.289 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:42:57.289 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:42:57.297 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:42:57.304 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:42:57.304 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:42:57.312 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:42:57.313 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:42:57.313 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 15:42:57.304(Timestamp)
2023-06-06 15:42:57.330 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:43:04.518 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:43:04.518 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 26(Integer), 2(Integer), 1(Integer), 2023-06-06 15:42:57.304(Timestamp), false(Boolean)
2023-06-06 15:43:04.540 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:43:04.586 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:43:04.587 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:43:04.595 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:43:04.597 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:43:04.598 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A,B"}(String), 2023-06-06 15:43:04.586(Timestamp)
2023-06-06 15:43:04.619 DEBUG 25740 --- [XNIO-1 task-111] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:43:45.366 ERROR 25740 --- [XNIO-1 task-111] c.m.x.c.s.exception.ExceptionHandle      : null
 
java.lang.NullPointerException: null
    at com.mindskip.xzs.utility.ExamUtil.contentToString(ExamUtil.java:77)
    at com.mindskip.xzs.domain.Question.setCorrectFromVM(Question.java:168)
    at com.mindskip.xzs.service.impl.QuestionServiceImpl.insertFullQuestion(QuestionServiceImpl.java:74)
    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.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
    at com.sun.proxy.$Proxy80.insertFullQuestion(Unknown Source)
    at com.mindskip.xzs.controller.admin.QuestionController.importUser(QuestionController.java:138)
    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:150)
    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)
 
2023-06-06 15:44:08.033 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:44:08.033 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:44:08.041 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:44:08.042 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:44:08.043 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:44:08.051 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:44:08.088 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:44:08.088 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:44:08.096 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:44:08.104 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:44:08.104 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:44:08.112 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:44:08.112 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:44:08.113 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 15:44:08.104(Timestamp)
2023-06-06 15:44:08.130 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:44:19.929 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:44:19.930 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 28(Integer), 2(Integer), 1(Integer), 2023-06-06 15:44:08.104(Timestamp), false(Boolean)
2023-06-06 15:44:19.946 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 15:44:19.991 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:44:19.991 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:44:19.999 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:44:20.000 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:44:20.000 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A,B"}(String), 2023-06-06 15:44:19.99(Timestamp)
2023-06-06 15:44:20.018 DEBUG 25740 --- [XNIO-1 task-114] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:44:50.573 ERROR 25740 --- [XNIO-1 task-114] c.m.x.c.s.exception.ExceptionHandle      : null
 
java.lang.NullPointerException: null
    at com.mindskip.xzs.utility.ExamUtil.contentToString(ExamUtil.java:77)
    at com.mindskip.xzs.domain.Question.setCorrectFromVM(Question.java:168)
    at com.mindskip.xzs.service.impl.QuestionServiceImpl.insertFullQuestion(QuestionServiceImpl.java:74)
    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.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:198)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:295)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:98)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
    at com.sun.proxy.$Proxy80.insertFullQuestion(Unknown Source)
    at com.mindskip.xzs.controller.admin.QuestionController.importUser(QuestionController.java:138)
    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:150)
    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)
 
2023-06-06 15:46:31.755 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 15:46:31.755 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 15:46:31.762 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 15:46:31.763 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:46:31.764 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 15:46:31.772 DEBUG 25740 --- [XNIO-1 task-117] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 15:46:39.565 DEBUG 25740 --- [XNIO-1 task-118] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:46:39.567 DEBUG 25740 --- [XNIO-1 task-118] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:46:39.575 DEBUG 25740 --- [XNIO-1 task-118] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:46:43.863 DEBUG 25740 --- [XNIO-1 task-119] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:46:43.863 DEBUG 25740 --- [XNIO-1 task-119] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:46:43.878 DEBUG 25740 --- [XNIO-1 task-119] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:46:44.178 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 15:46:44.178 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 15:46:44.188 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 15:46:44.189 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 15:46:44.189 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 15:46:44.202 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 7
2023-06-06 15:46:44.202 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.203 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 15:46:44.211 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.212 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.212 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 15:46:44.222 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.223 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.223 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 15:46:44.232 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.233 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.233 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 15:46:44.245 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.245 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.247 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 15:46:44.257 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.258 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.258 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 15:46:44.266 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:46:44.268 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 15:46:44.268 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:46:44.278 DEBUG 25740 --- [XNIO-1 task-120] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:48:41.016 DEBUG 25740 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 15:48:41.016 DEBUG 25740 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 15:48:41.026 DEBUG 25740 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 15:49:41.925 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 15:49:41.925 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 15:49:41.934 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 15:49:41.942 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 15:49:41.942 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 15:49:41.954 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 15:49:41.955 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 15:49:41.956 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"oppo","analyze":"oppo","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":""}(String), 2023-06-06 15:49:41.942(Timestamp)
2023-06-06 15:49:41.979 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 15:50:15.005 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 15:50:15.007 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 2(Integer), 1(Integer), 40(Integer), 1(Integer), 3(Integer), A,B(String), 30(Integer), 2(Integer), 1(Integer), 2023-06-06 15:49:41.942(Timestamp), false(Boolean)
2023-06-06 15:50:15.014  WARN 25740 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=54s393ms81µs100ns).
2023-06-06 15:50:15.025 DEBUG 25740 --- [XNIO-1 task-123] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:14:15.323 DEBUG 25740 --- [XNIO-1 task-134] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:14:15.324 DEBUG 25740 --- [XNIO-1 task-134] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:14:15.332 DEBUG 25740 --- [XNIO-1 task-134] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:14:15.335 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:14:15.335 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:14:15.344 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:14:15.345 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:14:15.345 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:14:15.355 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-06-06 16:14:15.357 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.357 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:14:15.365 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.366 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.367 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:14:15.374 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.375 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.375 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:14:15.384 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.385 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.385 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:14:15.393 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.394 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.394 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:14:15.402 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.403 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.403 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:14:15.412 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.413 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.413 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 16:14:15.420 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:15.422 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:15.423 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:14:15.430 DEBUG 25740 --- [XNIO-1 task-133] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.615 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:14:23.615 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:14:23.623 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:14:23.624 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:14:23.625 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:14:23.635 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-06-06 16:14:23.636 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.636 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:14:23.644 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.645 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.645 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:14:23.653 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.654 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.654 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:14:23.661 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.662 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.663 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:14:23.670 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.671 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.671 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:14:23.678 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.680 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.681 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:14:23.688 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.689 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.689 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 16:14:23.697 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:23.699 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:14:23.699 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:14:23.707 DEBUG 25740 --- [XNIO-1 task-135] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:14:39.963  INFO 25740 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-06 16:14:39.990  INFO 25740 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-06 16:14:40.006  INFO 25740 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-06 16:14:48.548  INFO 2964 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 2964 (E:\demo\xzs-mysql\source\xzs\target\classes started by qirong in E:\demo\xzs-mysql\source\xzs)
2023-06-06 16:14:48.553  INFO 2964 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 16:14:48.623  INFO 2964 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 16:14:48.623  INFO 2964 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 16:14:50.814  WARN 2964 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 16:14:50.859  INFO 2964 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 16:14:50.859  INFO 2964 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2236 ms
2023-06-06 16:14:52.399  INFO 2964 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3862b478, org.springframework.security.web.context.SecurityContextPersistenceFilter@a95df7d, org.springframework.security.web.header.HeaderWriterFilter@72ddaff, org.springframework.web.filter.CorsFilter@13151040, org.springframework.security.web.authentication.logout.LogoutFilter@58cf47d4, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@7aca54df, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6fb39699, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@72a5506c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1c59537e, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@438cf880, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6826836a, org.springframework.security.web.session.SessionManagementFilter@21d0ef9e, org.springframework.security.web.access.ExceptionTranslationFilter@7a6ccb8e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@67bbd5e8]
2023-06-06 16:14:52.795  INFO 2964 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 16:14:52.951  INFO 2964 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 16:14:52.970  INFO 2964 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 16:14:53.077  INFO 2964 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 16:14:53.082  INFO 2964 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.434 seconds (JVM running for 6.55)
2023-06-06 16:15:36.185  INFO 2964 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 16:15:36.187  INFO 2964 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 16:15:36.199  INFO 2964 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 12 ms
2023-06-06 16:15:36.248  INFO 2964 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 16:15:36.513  INFO 2964 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 16:15:36.523 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:15:36.553 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:15:36.589 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:15:36.598 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:15:36.598 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:15:36.608 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:15:37.671 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:15:37.672 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:15:37.682 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:15:37.706 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:15:37.706 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:15:37.715 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:37.821 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:15:37.825 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 16:15:37.701(Timestamp)
2023-06-06 16:15:37.844 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:15:40.706 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:15:40.708 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 31(Integer), 2(Integer), 1(Integer), 2023-06-06 16:15:37.701(Timestamp), false(Boolean)
2023-06-06 16:15:40.725 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:15:40.764 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:15:40.764 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:15:40.773 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:40.774 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:15:40.775 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":null}(String), 2023-06-06 16:15:40.764(Timestamp)
2023-06-06 16:15:40.789 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:15:41.705 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:15:41.707 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 2(Integer), 1(Integer), 40(Integer), 1(Integer), 4(Integer), A,B(String), 32(Integer), 2(Integer), 1(Integer), 2023-06-06 16:15:40.764(Timestamp), false(Boolean)
2023-06-06 16:15:41.720 DEBUG 2964 --- [XNIO-1 task-1] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:15:50.256 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:15:50.256 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:15:50.267 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:15:50.272 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:15:50.272 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:15:50.287 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 16:15:50.338 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.339 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:15:50.347 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.364 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.364 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 16:15:50.376 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.378 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.379 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:15:50.388 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.390 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.391 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:15:50.407 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.413 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.413 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:15:50.422 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.426 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.426 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:15:50.436 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.437 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.437 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:15:50.450 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.453 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.453 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:15:50.468 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.470 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.471 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 16:15:50.483 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:50.487 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:50.488 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:15:50.496 DEBUG 2964 --- [XNIO-1 task-3] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:56.573 DEBUG 2964 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:15:56.573 DEBUG 2964 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:15:56.582 DEBUG 2964 --- [XNIO-1 task-4] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:15:56.891 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 16:15:56.891 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:15:56.903 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:15:56.904 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:15:56.905 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:15:56.915 DEBUG 2964 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.546 DEBUG 2964 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:18:22.547 DEBUG 2964 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:18:22.555 DEBUG 2964 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:18:22.575 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:18:22.576 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:18:22.590 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:18:22.592 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:18:22.592 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:18:22.605 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 16:18:22.607 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.607 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:18:22.617 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.618 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.619 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 16:18:22.625 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.626 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.627 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:18:22.636 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.636 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.637 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:18:22.645 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.647 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.647 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:18:22.657 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.660 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.661 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:18:22.668 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.669 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.669 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:18:22.676 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.678 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.678 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:18:22.686 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.687 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.687 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 16:18:22.696 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:22.696 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:18:22.696 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:18:22.704 DEBUG 2964 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:18:28.246 DEBUG 2964 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:18:28.246 DEBUG 2964 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:18:28.253 DEBUG 2964 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:19:40.009 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:19:40.010 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:19:40.017 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:19:40.024 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:19:40.025 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:19:40.041 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:19:40.042 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:19:40.042 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"判断","analyze":"判断提","questionItemObjects":[{"prefix":"A","content":"是","score":null,"itemUuid":null},{"prefix":"B","content":"否","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 16:19:40.024(Timestamp)
2023-06-06 16:19:40.058 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:19:54.992 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:19:54.993 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 3(Integer), 1(Integer), 20(Integer), 1(Integer), 2(Integer), A(String), 33(Integer), 2(Integer), 1(Integer), 2023-06-06 16:19:40.024(Timestamp), false(Boolean)
2023-06-06 16:19:55.008 DEBUG 2964 --- [XNIO-1 task-10] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:20:43.483 DEBUG 2964 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:20:43.484 DEBUG 2964 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:20:43.486 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:20:43.486 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:20:43.491 DEBUG 2964 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:20:43.494 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:20:43.496 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:20:43.496 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:20:43.505 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 16:20:43.506 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.506 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 16:20:43.517 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.518 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.518 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:20:43.525 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.527 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.527 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 16:20:43.535 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.537 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.537 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:20:43.545 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.547 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.547 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:20:43.566 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.568 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.569 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:20:43.577 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.578 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.578 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:20:43.586 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.588 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.588 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:20:43.596 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.597 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.597 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:20:43.605 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:20:43.607 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:20:43.607 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 5(Integer)
2023-06-06 16:20:43.615 DEBUG 2964 --- [XNIO-1 task-12] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:39.159 DEBUG 2964 --- [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-06-06 16:21:39.159 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:21:39.167 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:21:39.167 DEBUG 2964 --- [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-06-06 16:21:39.168 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:21:39.188 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:21:39.236 DEBUG 2964 --- [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-06-06 16:21:39.236 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:21:39.245 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:21:39.251 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:21:39.252 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:21:39.259 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:39.260 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:21:39.262 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"你好","analyze":"你也好","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 16:21:39.251(Timestamp)
2023-06-06 16:21:39.275 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:21:41.358 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:21:41.359 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 1(Integer), 1(Integer), 30(Integer), 1(Integer), 3(Integer), A(String), 34(Integer), 2(Integer), 1(Integer), 2023-06-06 16:21:39.251(Timestamp), false(Boolean)
2023-06-06 16:21:41.380 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:21:41.417 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:21:41.417 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:21:41.425 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:41.427 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:21:41.428 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"who","analyze":"where","questionItemObjects":[{"prefix":"A","content":"a","score":null,"itemUuid":null},{"prefix":"B","content":"b","score":null,"itemUuid":null},{"prefix":"C","content":"c","score":null,"itemUuid":null},{"prefix":"D","content":"d","score":null,"itemUuid":null}],"correct":null}(String), 2023-06-06 16:21:41.416(Timestamp)
2023-06-06 16:21:41.454 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:21:42.031 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:21:42.033 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 2(Integer), 1(Integer), 40(Integer), 1(Integer), 4(Integer), A,B(String), 35(Integer), 2(Integer), 1(Integer), 2023-06-06 16:21:41.416(Timestamp), false(Boolean)
2023-06-06 16:21:42.074 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:21:42.112 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:21:42.112 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:21:42.120 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:42.122 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-06-06 16:21:42.122 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : ==> Parameters: {"titleContent":"vivo","analyze":"vivo","questionItemObjects":[{"prefix":"A","content":"是","score":null,"itemUuid":null},{"prefix":"B","content":"否","score":null,"itemUuid":null},{"prefix":"C","content":"yes","score":null,"itemUuid":null},{"prefix":"D","content":"no","score":null,"itemUuid":null}],"correct":"A"}(String), 2023-06-06 16:21:42.112(Timestamp)
2023-06-06 16:21:42.138 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-06-06 16:21:42.715 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==>  Preparing: insert into t_question ( question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:21:42.748 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : ==> Parameters: 3(Integer), 1(Integer), 20(Integer), 1(Integer), 2(Integer), A(String), 36(Integer), 2(Integer), 1(Integer), 2023-06-06 16:21:42.112(Timestamp), false(Boolean)
2023-06-06 16:21:42.762 DEBUG 2964 --- [XNIO-1 task-13] r.c.m.x.r.Q.insertSelective              : <==    Updates: 1
2023-06-06 16:21:49.942 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:21:49.942 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:21:49.950 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:21:49.951 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:21:49.951 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:21:49.959 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 16:21:49.960 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:49.960 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:21:49.968 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:49.969 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:49.969 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-06 16:21:49.976 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:49.977 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:49.977 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-06 16:21:49.985 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:49.986 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:49.986 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 16:21:49.993 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:49.994 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:49.994 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:21:50.002 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:50.003 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:50.004 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 16:21:50.012 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:50.014 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:50.014 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:21:50.021 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:50.022 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:50.023 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:21:50.030 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:50.031 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:50.031 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:21:50.038 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:50.040 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:50.040 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:21:50.047 DEBUG 2964 --- [XNIO-1 task-15] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:57.770 DEBUG 2964 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:21:57.770 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 16:21:57.771 DEBUG 2964 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:21:57.771 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 25(Integer)
2023-06-06 16:21:57.780 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:21:57.780 DEBUG 2964 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:21:57.780 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:21:57.781 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:21:57.789 DEBUG 2964 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:11.355 DEBUG 2964 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:22:11.355 DEBUG 2964 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:22:11.369 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 16:22:11.369 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 16:22:11.369 DEBUG 2964 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:22:11.378 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 16:22:11.380 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:22:11.381 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 16:22:11.389 DEBUG 2964 --- [XNIO-1 task-19] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 16:22:14.381 DEBUG 2964 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:22:14.381 DEBUG 2964 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:22:14.388 DEBUG 2964 --- [XNIO-1 task-21] 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 from t_exam_paper where id = ? 
2023-06-06 16:22:14.388 DEBUG 2964 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:22:14.389 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:14.398 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:14.400 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:14.400 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 16:22:14.410 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:14.418 DEBUG 2964 --- [XNIO-1 task-21] 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-06-06 16:22:14.418 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer)
2023-06-06 16:22:14.427 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-06-06 16:22:14.431 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:14.431 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:14.439 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:14.440 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:14.441 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 16:22:14.449 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:14.452 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:14.452 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:22:14.460 DEBUG 2964 --- [XNIO-1 task-21] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:16.071 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 AND subject_id = ? 
2023-06-06 16:22:16.071 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 16:22:16.086 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:22:16.087 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 AND subject_id = ? order by id desc LIMIT ? 
2023-06-06 16:22:16.087 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 1(Integer), 5(Integer)
2023-06-06 16:22:16.096 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-06-06 16:22:16.097 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:16.097 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:22:16.104 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:16.105 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:16.105 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-06 16:22:16.117 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:16.118 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:16.118 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-06 16:22:16.127 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:16.128 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:16.128 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 16:22:16.137 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:16.139 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:16.139 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:22:16.155 DEBUG 2964 --- [XNIO-1 task-22] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:21.800 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 16:22:21.801 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 25(Integer)
2023-06-06 16:22:21.811 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:21.811 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:21.812 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:22:21.821 DEBUG 2964 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.664 DEBUG 2964 --- [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-06-06 16:22:24.664 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:22:24.675 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:24.725 DEBUG 2964 --- [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 from t_exam_paper where id = ? 
2023-06-06 16:22:24.727 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:24.736 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.736 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.736 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 16:22:24.743 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.744 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-06-06 16:22:24.744 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"语文期中考试","questionItems":[{"id":1,"itemOrder":1},{"id":13,"itemOrder":2},{"id":14,"itemOrder":3},{"id":25,"itemOrder":4}]}](String), 2023-05-29 10:44:13.0(Timestamp), 2(Integer)
2023-06-06 16:22:24.757 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 16:22:24.760 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.S.selectByPrimaryKey           : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id = ? 
2023-06-06 16:22:24.760 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.S.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:24.767 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.S.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.775 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, subject_id = ?, paper_type = ?, grade_level = ?, score = ?, question_count = ?, suggest_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-06-06 16:22:24.776 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 语文期中考试(String), 1(Integer), 1(Integer), 1(Integer), 100(Integer), 4(Integer), 5(Integer), 2(Integer), 2(Integer), 2023-05-29 10:44:13.0(Timestamp), false(Boolean), 1(Integer)
2023-06-06 16:22:24.792 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-06-06 16:22:24.820 DEBUG 2964 --- [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 from t_exam_paper where id = ? 
2023-06-06 16:22:24.820 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:24.831 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.832 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.833 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 16:22:24.841 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.842 DEBUG 2964 --- [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-06-06 16:22:24.842 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer), 25(Integer)
2023-06-06 16:22:24.853 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 4
2023-06-06 16:22:24.855 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.855 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:24.863 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.864 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.864 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 16:22:24.871 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.872 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.873 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:22:24.879 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:24.880 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:24.880 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:22:24.888 DEBUG 2964 --- [XNIO-1 task-24] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:25.486 DEBUG 2964 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:22:25.486 DEBUG 2964 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:22:25.499 DEBUG 2964 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:22:25.808 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-06 16:22:25.808 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-06 16:22:25.825 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-06 16:22:25.827 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:22:25.827 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 16:22:25.836 DEBUG 2964 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-06 16:22:33.408 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:33.408 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:22:33.417 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:33.418 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:33.418 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 16:22:33.427 DEBUG 2964 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.678 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:40.678 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:40.686 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.691 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:40.691 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:40.702 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.704 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 16:22:40.705 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 登录了学之思开源考试系统(String), 2023-06-06 16:22:40.702(Timestamp)
2023-06-06 16:22:40.725 DEBUG 2964 --- [XNIO-1 task-28] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 16:22:40.775 DEBUG 2964 --- [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-06-06 16:22:40.775 DEBUG 2964 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:40.781 DEBUG 2964 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:40.782 DEBUG 2964 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:40.782 DEBUG 2964 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.783 DEBUG 2964 --- [XNIO-1 task-29] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-06-06 16:22:40.783 DEBUG 2964 --- [XNIO-1 task-29] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1(Integer)
2023-06-06 16:22:40.784 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:40.785 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:40.791 DEBUG 2964 --- [XNIO-1 task-29] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-06-06 16:22:40.791 DEBUG 2964 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.795 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:40.799 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? ORDER BY id desc limit 5 
2023-06-06 16:22:40.799 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 16:22:40.816 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 2
2023-06-06 16:22:40.816 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: SELECT id,name,limit_start_time,limit_end_time FROM t_exam_paper WHERE deleted=0 and paper_type= ? and grade_level=? and ? between limit_start_time and limit_end_time ORDER BY id desc limit 5 
2023-06-06 16:22:40.817 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 1(Integer), 2023-06-06 16:22:40.816(Timestamp)
2023-06-06 16:22:40.825 DEBUG 2964 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-06-06 16:22:41.085 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:22:41.085 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:22:41.099 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:22:41.100 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-06-06 16:22:41.101 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 1(Integer)
2023-06-06 16:22:41.113 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 1
2023-06-06 16:22:41.115 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-06-06 16:22:41.115 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1(Integer), 1(Integer)
2023-06-06 16:22:41.123 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByTUid                 : <==      Total: 0
2023-06-06 16:22:41.124 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:41.124 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 4(Integer)
2023-06-06 16:22:41.134 DEBUG 2964 --- [XNIO-1 task-32] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.279 DEBUG 2964 --- [XNIO-1 task-33] 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 from t_exam_paper where id = ? 
2023-06-06 16:22:43.279 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:43.287 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.288 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:43.288 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 16:22:43.296 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.298 DEBUG 2964 --- [XNIO-1 task-33] 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-06-06 16:22:43.298 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer), 25(Integer)
2023-06-06 16:22:43.306 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 4
2023-06-06 16:22:43.307 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:43.307 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:22:43.319 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.321 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:43.321 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 19(Integer)
2023-06-06 16:22:43.338 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.339 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:43.339 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 21(Integer)
2023-06-06 16:22:43.346 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:22:43.347 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:22:43.347 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:22:43.356 DEBUG 2964 --- [XNIO-1 task-33] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.242 DEBUG 2964 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 16:23:01.243 DEBUG 2964 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 16:23:01.244 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 16:23:01.244 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 16:23:01.251 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 16:23:01.252 DEBUG 2964 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 16:23:01.252 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 16:23:01.253 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 16:23:01.260 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 16:23:01.260 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.261 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 16:23:01.267 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.268 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.268 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-06 16:23:01.274 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.275 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.275 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-06 16:23:01.282 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.282 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.282 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 16:23:01.290 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.290 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.290 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 16:23:01.297 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.297 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.297 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 16:23:01.306 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.306 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.307 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 16:23:01.315 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.316 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.316 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 16:23:01.323 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.324 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.324 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 16:23:01.330 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:01.331 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:01.332 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 16:23:01.339 DEBUG 2964 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:04.468 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 16:23:04.468 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 22(Integer)
2023-06-06 16:23:04.476 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:23:04.477 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:23:04.477 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 16:23:04.485 DEBUG 2964 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:27:45.365 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 16:27:45.365 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-06-06 16:27:45.376 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 16:27:45.376 DEBUG 2964 --- [XNIO-1 task-37] 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 from t_exam_paper where id = ? 
2023-06-06 16:27:45.376 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 1(Integer)
2023-06-06 16:27:45.385 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:27:45.385 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 16:27:45.385 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 2(Integer)
2023-06-06 16:27:45.392 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 16:27:45.394 DEBUG 2964 --- [XNIO-1 task-37] 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-06-06 16:27:45.394 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 1(Integer), 13(Integer), 14(Integer), 25(Integer)
2023-06-06 16:27:45.404 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 4
2023-06-06 16:27:45.476 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( 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 ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-06-06 16:27:45.477 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.insertSelective              : ==> Parameters: 1(Integer), 语文期中考试(String), 1(Integer), 1(Integer), 20(Integer), 20(Integer), 100(Integer), 1(Integer), 4(Integer), 300(Integer), 2(Integer), 1(Integer), 2023-06-06 16:27:45.376(Timestamp)
2023-06-06 16:27:45.493 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-06-06 16:27:45.498 DEBUG 2964 --- [XNIO-1 task-37] 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-06-06 16:27:45.500 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.insertList                   : ==> Parameters: 1(Integer), 10(Integer), 1(Integer), 2023-06-06 16:27:45.376(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), null, 0(Integer), 8(Integer), false(Boolean), 1(Integer), 1(Integer), 13(Integer), 30(Integer), 1(Integer), 2023-06-06 16:27:45.376(Timestamp), 1(Integer), null, 1(Integer), 1(Integer), null, 0(Integer), 8(Integer), false(Boolean), 19(Integer), 2(Integer), 14(Integer), 40(Integer), 1(Integer), 2023-06-06 16:27:45.376(Timestamp), 1(Integer), null, 1(Integer), 2(Integer), (String), 0(Integer), 8(Integer), false(Boolean), 21(Integer), 3(Integer), 25(Integer), 20(Integer), 1(Integer), 2023-06-06 16:27:45.376(Timestamp), 1(Integer), null, 1(Integer), 3(Integer), A(String), 20(Integer), 8(Integer), true(Boolean), 36(Integer), 4(Integer)
2023-06-06 16:27:45.516 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.E.insertList                   : <==    Updates: 4
2023-06-06 16:27:45.562 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 16:27:45.563 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1(Integer), student(String), 学生(String), student 提交试卷:语文期中考试 得分:2 耗时:5分 0秒(String), 2023-06-06 16:27:45.459(Timestamp)
2023-06-06 16:27:45.583 DEBUG 2964 --- [XNIO-1 task-37] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 16:52:04.654  INFO 24412 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 24412 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-06 16:52:04.657  INFO 24412 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-06 16:52:04.719  INFO 24412 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-06 16:52:04.719  INFO 24412 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-06 16:52:06.981  WARN 24412 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-06 16:52:07.009  INFO 24412 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-06 16:52:07.009  INFO 24412 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2290 ms
2023-06-06 16:52:08.150  INFO 24412 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2142be92, org.springframework.security.web.context.SecurityContextPersistenceFilter@573854df, org.springframework.security.web.header.HeaderWriterFilter@7da6d336, org.springframework.web.filter.CorsFilter@67c7cc3a, org.springframework.security.web.authentication.logout.LogoutFilter@85b107, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@1c484ab4, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@5e8af3c5, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@798a0467, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@579d2071, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@4f9efaa, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@31dfdccc, org.springframework.security.web.session.SessionManagementFilter@e91db41, org.springframework.security.web.access.ExceptionTranslationFilter@27808e58, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@2682f60e]
2023-06-06 16:52:08.460  INFO 24412 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-06 16:52:08.517  INFO 24412 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-06 16:52:08.527  INFO 24412 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-06 16:52:08.595  INFO 24412 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-06 16:52:08.600  INFO 24412 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 4.652 seconds (JVM running for 5.916)
2023-06-06 17:02:29.285  INFO 24412 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-06 17:02:29.299  INFO 24412 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-06 17:02:29.363  INFO 24412 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 64 ms
2023-06-06 17:02:29.484  INFO 24412 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-06 17:02:29.767  INFO 24412 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-06 17:02:29.777 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 17:02:29.810 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 17:02:29.852 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 17:02:29.867 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 17:02:29.868 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 17:02:29.880 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 17:02:30.522 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-06 17:02:30.523 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:02:30.531 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:02:30.533 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-06 17:02:30.533 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-06 17:02:30.541 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-06 17:02:30.543 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-06 17:02:30.544 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:02:30.553 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:02:30.554 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-06 17:02:30.554 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:02:30.562 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:02:30.570 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 17:02:30.574 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 17:02:30.586 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.U.selectCountByDate            : <==      Total: 3
2023-06-06 17:02:30.588 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 17:02:30.589 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 17:02:30.605 DEBUG 24412 --- [XNIO-1 task-1] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-06 17:04:15.593 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-06 17:04:15.593 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-06 17:04:15.602 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-06 17:04:15.607 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 17:04:15.607 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 17:04:15.616 DEBUG 24412 --- [XNIO-1 task-2] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-06 17:22:28.389 DEBUG 24412 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 17:22:28.391 DEBUG 24412 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 17:22:28.401 DEBUG 24412 --- [XNIO-1 task-6] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 17:22:28.405 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-06 17:22:28.405 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-06 17:22:28.423 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-06 17:22:28.425 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 17:22:28.425 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-06 17:22:28.443 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-06 17:22:28.452 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.452 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 17:22:28.461 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.480 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.480 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-06 17:22:28.493 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.495 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.496 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-06 17:22:28.506 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.508 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.509 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-06 17:22:28.516 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.518 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.518 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-06 17:22:28.526 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.531 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.531 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-06 17:22:28.538 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.540 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.540 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-06 17:22:28.549 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.551 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.551 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-06 17:22:28.562 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.563 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.563 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-06 17:22:28.571 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:28.572 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:28.573 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-06 17:22:28.581 DEBUG 24412 --- [XNIO-1 task-5] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:35.416 DEBUG 24412 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-06 17:22:35.416 DEBUG 24412 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-06 17:22:35.428 DEBUG 24412 --- [XNIO-1 task-7] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-06 17:22:35.435 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  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 = ? 
2023-06-06 17:22:35.435 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 25(Integer)
2023-06-06 17:22:35.448 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:22:35.449 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-06 17:22:35.449 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-06 17:22:35.459 DEBUG 24412 --- [XNIO-1 task-8] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-06 17:28:13.654 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 17:28:13.654 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 17:28:13.665 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 17:28:13.673 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 17:28:13.675 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登出了学之思开源考试系统(String), 2023-06-06 17:28:13.666(Timestamp)
2023-06-06 17:28:13.706 DEBUG 24412 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 17:28:33.890 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 17:28:33.891 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 17:28:33.909 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 17:28:33.919 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-06 17:28:33.919 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-06 17:28:33.928 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-06 17:28:33.929 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-06 17:28:33.930 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了学之思开源考试系统(String), 2023-06-06 17:28:33.928(Timestamp)
2023-06-06 17:28:33.952 DEBUG 24412 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-06 17:28:34.364 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-06 17:28:34.364 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:28:34.376 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:28:34.376 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-06 17:28:34.377 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-06 17:28:34.388 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-06 17:28:34.389 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-06 17:28:34.389 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:28:34.404 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:28:34.405 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-06 17:28:34.405 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-06 17:28:34.414 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-06 17:28:34.416 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 17:28:34.417 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 17:28:34.426 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.U.selectCountByDate            : <==      Total: 3
2023-06-06 17:28:34.429 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-06 17:28:34.429 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-06 17:28:34.441 DEBUG 24412 --- [XNIO-1 task-11] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-06 17:28:40.165 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-06 17:28:40.165 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 17:28:40.173 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-06 17:28:40.174 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-06 17:28:40.176 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 17:28:40.185 DEBUG 24412 --- [XNIO-1 task-12] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-06 17:28:48.597 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-06 17:28:48.597 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 17:28:48.606 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-06 17:28:48.608 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-06 17:28:48.608 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 17:28:48.621 DEBUG 24412 --- [XNIO-1 task-13] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-06 17:29:27.890 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-06 17:29:27.890 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-06 17:29:27.900 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-06 17:29:27.901 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-06 17:29:27.901 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-06 17:29:27.909 DEBUG 24412 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-06 17:50:29.876 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-06 17:50:29.878 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-06-06 17:50:29.887 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-06 17:50:29.888 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-06 17:50:29.888 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-06-06 17:50:29.897 DEBUG 24412 --- [XNIO-1 task-15] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-06 18:04:20.493  INFO 24412 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-06 18:04:20.512  INFO 24412 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-06 18:04:20.517  INFO 24412 --- [Thread-18] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'