qirong
2023-06-07 0318ec74ffdab6e1a80326ecbd209489b5967a06
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
2023-06-07 08:58:10.249  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 15556 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 08:58:10.252  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 08:58:10.319  INFO 15556 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 08:58:10.319  INFO 15556 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 08:58:13.966  WARN 15556 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 08:58:13.997  INFO 15556 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 08:58:13.998  INFO 15556 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3679 ms
2023-06-07 08:58:15.287  INFO 15556 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7bd9c796, org.springframework.security.web.context.SecurityContextPersistenceFilter@120c4073, org.springframework.security.web.header.HeaderWriterFilter@211f918d, org.springframework.web.filter.CorsFilter@9ae5e87, org.springframework.security.web.authentication.logout.LogoutFilter@1da2c406, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@bdee800, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@161b8445, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2095fcec, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@16c78fa1, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@70fed14c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1de586bb, org.springframework.security.web.session.SessionManagementFilter@44a9086e, org.springframework.security.web.access.ExceptionTranslationFilter@75f1e444, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@594ace7b]
2023-06-07 08:58:15.963  INFO 15556 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 08:58:16.063  INFO 15556 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 08:58:16.074  INFO 15556 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 08:58:16.150  INFO 15556 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 08:58:16.154  INFO 15556 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.633 seconds (JVM running for 8.479)
2023-06-07 08:58:45.649  INFO 15556 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-07 08:58:45.649  INFO 15556 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-07 08:58:45.661  INFO 15556 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 12 ms
2023-06-07 09:00:22.469  INFO 15556 --- [XNIO-1 task-11] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-07 09:00:22.716  INFO 15556 --- [XNIO-1 task-11] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-07 09:00:22.727 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:00:22.753 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:00:22.779 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:00:23.377 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:00:23.377 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:00:23.386 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:00:23.401 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:00:23.404 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了学之思开源考试系统(String), 2023-06-07 09:00:23.386(Timestamp)
2023-06-07 09:00:23.428 DEBUG 15556 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:00:23.534 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:00:23.534 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.544 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.545 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:00:23.546 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:00:23.552 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:00:23.554 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:00:23.554 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.561 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.562 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:00:23.562 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:00:23.571 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:00:23.582 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:00:23.583 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:00:23.595 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:00:23.598 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:00:23.598 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:00:23.610 DEBUG 15556 --- [XNIO-1 task-12] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:00:46.137 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:00:46.137 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:00:46.149 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:00:46.153 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:00:46.153 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:00:46.161 DEBUG 15556 --- [XNIO-1 task-13] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:01:26.211 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:01:26.211 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:01:26.217 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:01:26.218 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:01:26.218 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:01:26.225 DEBUG 15556 --- [XNIO-1 task-14] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:11:17.601 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:11:17.615 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.629 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.637 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:11:17.638 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:11:17.648 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:11:17.651 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:11:17.652 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.663 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.671 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:11:17.674 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:11:17.690 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:11:17.707 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:11:17.710 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:11:17.730 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:11:17.741 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:11:17.742 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:11:17.750 DEBUG 15556 --- [XNIO-1 task-19] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:12:15.425 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:12:15.425 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.436 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.445 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:12:15.445 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:12:15.452 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:12:15.454 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:12:15.454 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.462 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.463 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:12:15.463 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:12:15.471 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:12:15.473 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:12:15.474 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:12:15.488 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:12:15.491 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:12:15.493 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:12:15.500 DEBUG 15556 --- [XNIO-1 task-20] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-06-07 09:12:19.165 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:12:19.165 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:12:19.173 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:12:19.177 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:12:19.178 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:12:19.187 DEBUG 15556 --- [XNIO-1 task-21] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:13:47.395 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:13:47.396 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:13:47.403 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:13:47.405 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:13:47.405 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:13:47.413 DEBUG 15556 --- [XNIO-1 task-22] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:14:51.129 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:14:51.129 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:14:51.136 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:14:51.138 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:14:51.138 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:14:51.146 DEBUG 15556 --- [XNIO-1 task-23] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:14:57.018 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:14:57.018 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:14:57.035 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:14:57.039 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:14:57.039 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:14:57.050 DEBUG 15556 --- [XNIO-1 task-24] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:15:48.711 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 09:15:48.711 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 09:15:48.723 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 09:15:48.724 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:15:48.725 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:15:48.736 DEBUG 15556 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-06-07 09:17:39.995 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-06-07 09:17:39.995 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:40.013 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:40.017 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : ==>  Preparing: SELECT id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name FROM t_task_exam WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:40.018 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:40.026 DEBUG 15556 --- [XNIO-1 task-26] r.c.m.x.repository.TaskExamMapper.page   : <==      Total: 1
2023-06-07 09:17:45.068 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:45.068 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:45.077 DEBUG 15556 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:47.633 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:17:47.641 DEBUG 15556 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:47.641 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:17:47.644 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:47.644 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:17:47.655 DEBUG 15556 --- [XNIO-1 task-29] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-07 09:17:53.378 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:53.380 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:53.388 DEBUG 15556 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:53.654 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:17:53.656 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:53.662 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:53.664 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:53.664 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:53.721 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-07 09:17:53.752 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.753 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-07 09:17:53.761 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.799 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.800 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-07 09:17:53.807 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.808 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.808 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-07 09:17:53.816 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.819 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.819 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-07 09:17:53.826 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.827 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.827 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-07 09:17:53.836 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.839 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.839 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-07 09:17:53.846 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.849 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.849 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-07 09:17:53.856 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.858 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.858 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-07 09:17:53.865 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.866 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.866 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-07 09:17:53.887 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:53.889 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:53.889 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-07 09:17:53.909 DEBUG 15556 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:54.952 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:54.953 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:54.954 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:17:54.954 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:17:54.961 DEBUG 15556 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:54.964 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:17:54.965 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id FROM t_exam_paper WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:54.965 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 10(Integer)
2023-06-07 09:17:54.976 DEBUG 15556 --- [XNIO-1 task-33] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 3
2023-06-07 09:17:56.964 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:17:56.964 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:17:56.973 DEBUG 15556 --- [XNIO-1 task-34] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 1
2023-06-07 09:17:57.264 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:17:57.265 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:17:57.271 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:17:57.272 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question WHERE deleted = 0 order by id desc LIMIT ? 
2023-06-07 09:17:57.272 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-06-07 09:17:57.295 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 10
2023-06-07 09:17:57.296 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.296 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 36(Integer)
2023-06-07 09:17:57.306 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.307 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.308 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 35(Integer)
2023-06-07 09:17:57.314 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.315 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.315 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 34(Integer)
2023-06-07 09:17:57.322 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.323 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.324 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 33(Integer)
2023-06-07 09:17:57.331 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.333 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.333 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 32(Integer)
2023-06-07 09:17:57.340 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.345 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.345 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 31(Integer)
2023-06-07 09:17:57.355 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.357 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.357 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 30(Integer)
2023-06-07 09:17:57.365 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.366 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.366 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 28(Integer)
2023-06-07 09:17:57.373 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.375 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.375 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 26(Integer)
2023-06-07 09:17:57.385 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:17:57.387 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-06-07 09:17:57.387 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 24(Integer)
2023-06-07 09:17:57.404 DEBUG 15556 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-06-07 09:19:30.913 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:19:30.914 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:19:30.917 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_question WHERE deleted = 0 
2023-06-07 09:19:30.917 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-06-07 09:19:30.921 DEBUG 15556 --- [XNIO-1 task-36] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 0
2023-06-07 09:19:30.926 DEBUG 15556 --- [XNIO-1 task-37] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM t_exam_paper WHERE deleted = 0 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-06-07 09:19:33.656 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 
2023-06-07 09:19:33.664 DEBUG 15556 --- [XNIO-1 task-39] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 0
2023-06-07 09:19:33.665 DEBUG 15556 --- [XNIO-1 task-38] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-06-07 09:19:37.310 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:19:37.310 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-06-07 09:19:37.319 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:19:37.321 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:19:37.321 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-06-07 09:19:37.332 DEBUG 15556 --- [XNIO-1 task-40] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:19:39.896 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:19:39.896 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:19:39.904 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:19:39.904 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:19:39.906 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:19:39.913 DEBUG 15556 --- [XNIO-1 task-41] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:35.467 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:22:35.468 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:22:35.479 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:22:35.481 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:22:35.482 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:22:35.489 DEBUG 15556 --- [XNIO-1 task-42] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:40.704 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-06-07 09:22:40.704 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-06-07 09:22:40.711 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-06-07 09:22:40.713 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : ==>  Preparing: SELECT id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id FROM t_user WHERE deleted = 0 AND role = ? order by id desc LIMIT ? 
2023-06-07 09:22:40.713 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-06-07 09:22:40.734 DEBUG 15556 --- [XNIO-1 task-43] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 1
2023-06-07 09:22:45.813 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:22:45.813 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:22:45.820 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:22:45.828 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:22:45.829 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:22:45.829 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.836 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.837 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:22:45.837 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:22:45.844 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:22:45.845 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:22:45.856 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:22:45.864 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:22:45.865 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:22:45.867 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:22:45.875 DEBUG 15556 --- [XNIO-1 task-44] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 09:22:49.065 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:22:49.065 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:22:49.075 DEBUG 15556 --- [XNIO-1 task-45] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:23:02.016 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:23:02.016 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:23:02.028 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 09:23:02.030 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-06-07 09:23:02.030 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-06-07 09:23:02.040 DEBUG 15556 --- [XNIO-1 task-46] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-06-07 09:24:07.737  INFO 15556 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-07 09:24:07.759  INFO 15556 --- [Thread-22] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-07 09:24:07.770  INFO 15556 --- [Thread-22] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-07 09:24:20.366  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 5652 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 09:24:20.369  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 09:24:20.443  INFO 5652 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 09:24:20.443  INFO 5652 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 09:24:23.198  WARN 5652 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 09:24:23.231  INFO 5652 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 09:24:23.231  INFO 5652 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2788 ms
2023-06-07 09:24:24.404  INFO 5652 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5b1b3c82, org.springframework.security.web.context.SecurityContextPersistenceFilter@400142e, org.springframework.security.web.header.HeaderWriterFilter@16a8e1d8, org.springframework.web.filter.CorsFilter@37da98e1, org.springframework.security.web.authentication.logout.LogoutFilter@461178b6, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@9d0000e, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6207af5c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@292bfb8c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@c0ac366, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@13ea3e73, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3d153672, org.springframework.security.web.session.SessionManagementFilter@2c42a2d4, org.springframework.security.web.access.ExceptionTranslationFilter@3a7a1103, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3e016a11]
2023-06-07 09:24:24.687  INFO 5652 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 09:24:24.772  INFO 5652 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 09:24:24.786  INFO 5652 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 09:24:24.860  INFO 5652 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 09:24:24.863  INFO 5652 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.24 seconds (JVM running for 6.547)
2023-06-07 09:25:06.006  INFO 5652 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-06-07 09:25:06.006  INFO 5652 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-06-07 09:25:06.027  INFO 5652 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 21 ms
2023-06-07 09:25:06.078  INFO 5652 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-06-07 09:25:06.291  INFO 5652 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-06-07 09:25:06.299 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:06.322 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:06.349 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:06.367 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:25:06.369 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登出了学之思开源考试系统(String), 2023-06-07 09:25:06.353(Timestamp)
2023-06-07 09:25:06.391 DEBUG 5652 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:25:13.501 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:13.502 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:13.511 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:13.850 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 09:25:13.850 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 09:25:13.859 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 09:25:13.861 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 09:25:13.863 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-06-07 09:25:13.86(Timestamp)
2023-06-07 09:25:13.896 DEBUG 5652 --- [XNIO-1 task-2] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 09:25:14.010 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 09:25:14.011 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.021 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.023 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 09:25:14.023 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 09:25:14.036 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 09:25:14.037 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 09:25:14.037 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.045 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.047 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 09:25:14.047 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 09:25:14.055 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 09:25:14.061 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:25:14.063 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:25:14.072 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.U.selectCountByDate            : <==      Total: 4
2023-06-07 09:25:14.075 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 09:25:14.076 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 09:25:14.085 DEBUG 5652 --- [XNIO-1 task-3] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 09:25:17.267 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:25:17.267 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:25:17.276 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 09:25:17.279 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-06-07 09:25:17.279 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-06-07 09:25:17.292 DEBUG 5652 --- [XNIO-1 task-4] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-06-07 09:31:46.098 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-06-07 09:31:46.098 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-06-07 09:31:46.145 DEBUG 5652 --- [XNIO-1 task-5] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-06-07 10:55:50.441 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 10:55:50.449 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 10:55:50.472 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 10:55:50.487 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-06-07 10:55:50.488 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-06-07 10:55:50.502 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-06-07 10:55:50.510 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-06-07 10:55:50.513 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-06-07 10:55:50.504(Timestamp)
2023-06-07 10:55:50.535 DEBUG 5652 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-06-07 10:55:50.639 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-06-07 10:55:50.640 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.651 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.652 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-06-07 10:55:50.653 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-06-07 10:55:50.673 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-06-07 10:55:50.678 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-06-07 10:55:50.679 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.691 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.695 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-06-07 10:55:50.695 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-06-07 10:55:50.707 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-06-07 10:55:50.713 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 10:55:50.723 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 10:55:50.732 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : <==      Total: 1
2023-06-07 10:55:50.737 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-06-07 10:55:50.738 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-06-01 00:00:00.0(Timestamp), 2023-06-30 23:59:59.0(Timestamp)
2023-06-07 10:55:50.747 DEBUG 5652 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : <==      Total: 0
2023-06-07 10:56:03.783 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-06-07 10:56:03.784 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-06-07 10:56:03.791 DEBUG 5652 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-06-07 11:04:20.707  INFO 5652 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-06-07 11:04:20.742  INFO 5652 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-06-07 11:04:20.753  INFO 5652 --- [Thread-18] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-06-07 11:06:15.673  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 5104 (E:\ycll\qyksxt\xzs\target\classes started by qirong in E:\ycll\qyksxt\xzs)
2023-06-07 11:06:15.676  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-06-07 11:06:15.736  INFO 5104 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 11:06:15.736  INFO 5104 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 11:06:18.468  WARN 5104 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 11:06:18.504  INFO 5104 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 11:06:18.504  INFO 5104 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2768 ms
2023-06-07 11:06:19.827  INFO 5104 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4a3a323a, org.springframework.security.web.context.SecurityContextPersistenceFilter@7add2362, org.springframework.security.web.header.HeaderWriterFilter@27e75f5b, org.springframework.web.filter.CorsFilter@5a35d19b, org.springframework.security.web.authentication.logout.LogoutFilter@484fd8e, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@6945f363, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@76ce3b2d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@39cf2189, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4abb535f, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@6a151ded, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@aada50e, org.springframework.security.web.session.SessionManagementFilter@58502abf, org.springframework.security.web.access.ExceptionTranslationFilter@4316c6a4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6b0f829a]
2023-06-07 11:06:20.264  INFO 5104 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 11:06:20.370  INFO 5104 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-06-07 11:06:20.385  INFO 5104 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-06-07 11:06:20.495  INFO 5104 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-06-07 11:06:20.500  INFO 5104 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.716 seconds (JVM running for 7.176)