xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
2024-05-27 14:23:15 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 17988 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:23:15 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:23:15 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:23:17 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:23:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:23:18 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:23:18 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:23:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:23:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:23:20 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:23:20 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:23:20 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:23:21 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:23:21 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:23:22 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:23:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:23:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:23:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:23:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:23:24 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:23:24 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:23:24 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:23:24 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:23:25 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:23:25 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:23:27 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:23:27 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:23:27 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:23:27 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:23:27 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.789 seconds (JVM running for 14.399)
2024-05-27 14:23:27 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:23:27 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:23:27 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:24:42 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:24:43 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ6WTYxZU9seTN3QTA5R2N1OGw3algwMzdZelQ5ZTRtNyIsInVzZXJJZCI6IjEifQ.3CoKRB7wEhnbec8S_7D3Yw-Ahrp7nMlgwV5Sd2Zr4mk
2024-05-27 14:24:43 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJkRHd2TExHdHdiMDVIVDR4YjZsd0dzb3ozbmdNMFJmaSIsInVzZXJJZCI6IjEifQ.3XLfk1AO6rg2TW-b3L4P8H42E4r7dcFDthXms8h39Ok
2024-05-27 14:24:43 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:27:48 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:27:59 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 7408 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:27:59 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:27:59 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:28:02 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:28:02 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:28:02 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:28:02 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:28:02 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:28:02 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:28:04 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:28:04 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:28:04 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:28:05 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:28:05 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:28:06 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:28:06 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:28:06 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:28:06 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:28:07 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:28:07 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:28:08 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:28:08 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:28:08 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:28:08 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:28:08 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:28:10 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:28:10 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:28:10 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:28:10 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:28:10 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.191 seconds (JVM running for 12.129)
2024-05-27 14:28:10 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:28:10 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:28:11 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:28:23 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:28:24 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJrQ2txQ0NEM0sySU9GcEtWSnYwdkpwNE1CaTNweDF3MSIsInVzZXJJZCI6IjEifQ.LefQdd8EsNQCjPCUFpKOGrD2FkGH4qEKeN3Ao2a6C7o
2024-05-27 14:28:24 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJKSUxnV2VqcDVsYUREeGR2OUJlYmliUGd6V044SXJhUSIsInVzZXJJZCI6IjEifQ.t_458b8vwfSwnFumR6jl8tsidTwqDnJsRRNpPYAVbE0
2024-05-27 14:28:24 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:29:43 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:29:43 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:29:43 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:29:44 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:29:44 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:29:44 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:29:44 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:29:47 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 7024 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:29:47 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:29:47 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:29:50 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:29:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:29:50 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:29:50 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:29:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:29:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:29:52 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:29:53 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:29:53 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:29:53 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:29:53 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:29:54 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:29:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:29:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:29:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:29:55 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:29:55 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:29:56 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:29:56 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:29:56 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:29:57 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:29:57 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:29:58 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:29:58 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:29:58 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:29:58 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:29:59 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.611 seconds (JVM running for 12.489)
2024-05-27 14:29:59 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:29:59 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:29:59 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:30:10 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:30:11 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJPUVM4dWRqUW9rdVQyZGt6UlFRR0tBZjFuTHZ5dlZFSiIsInVzZXJJZCI6IjEifQ.-SoIB9Owq7vWBLkIdJB2NY2lN0NczWuuM7LDaBmJ0Ao
2024-05-27 14:30:11 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJQWHhMekk1dkFuRDFzNWI5cmZGQmx1MWk2ZDVXMUllRyIsInVzZXJJZCI6IjEifQ.KWEomlvii2xnN_YRnDSEw-_q7V4gO5s6Qdv_wYLuoIU
2024-05-27 14:30:11 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:31:55 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:32:01 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 16664 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:32:01 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:32:01 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:32:03 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:32:03 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:32:03 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:32:03 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:32:03 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:32:03 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:32:05 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:32:05 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:32:05 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:32:06 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:32:06 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:32:06 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:32:07 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:32:07 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:32:07 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:32:08 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:32:08 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:32:09 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:32:09 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:32:09 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:32:09 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:32:09 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:32:11 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:32:11 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:32:11 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:32:11 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:32:11 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 10.939 seconds (JVM running for 11.779)
2024-05-27 14:32:11 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:32:11 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:32:11 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:34:41 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:34:42 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJwdnZ2QVZwYXR2TW5rbGZHZUNZbWg4TXlvenFKWjN5diIsInVzZXJJZCI6IjEifQ.Yrv7qFh_IJ__X9rUk2PBoFAv2orJeeBkAtNTba-3Pbo
2024-05-27 14:34:42 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI4d0hvWmY0czBZT1FDVk9kb3ZtWEVndWVQSThpZnVYTyIsInVzZXJJZCI6IjEifQ.8Xai5hFiK7yMPGWHUMxMxlFk1UUt4VPqyi3AIPrd64k
2024-05-27 14:34:42 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:39:24 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:39:28 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 8016 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:39:28 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:39:28 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:39:31 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:39:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:39:31 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:39:31 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:39:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:39:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:39:33 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:39:33 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:39:33 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:39:34 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:39:34 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:39:35 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:39:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:39:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:39:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:39:37 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:39:39 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:39:41 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:39:41 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:39:41 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:39:42 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:39:42 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:39:44 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:39:44 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:39:44 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:39:44 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:39:45 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.807 seconds (JVM running for 17.916)
2024-05-27 14:39:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:39:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:39:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:40:07 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:40:08 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJLb1Fyakh4SG9PdUcyRGxVWFdxY012UFNUVzlDWmZLSCIsInVzZXJJZCI6IjEifQ.fuiZBVUGz_RIaf4_nckS5SgH_-dLwQ8G68MCG-IveZ4
2024-05-27 14:40:08 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJic0FqMklUa0xpbVJMZW9ndTZuM2NGV3g0aTFNMDdFYyIsInVzZXJJZCI6IjEifQ.SVl2wTSfiQ8-P6HOXBxMhzhTdZmlXbV_2IEpICCuVXM
2024-05-27 14:40:08 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:41:01 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:41:06 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 21112 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:41:06 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:41:06 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:41:08 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:41:08 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:41:08 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:41:08 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:41:08 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:41:08 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:41:10 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:41:11 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:41:11 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:41:11 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:41:11 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:41:12 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:41:12 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:41:12 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:41:12 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:41:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:41:14 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:41:14 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:41:14 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:41:14 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:41:15 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:41:15 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:41:16 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:41:16 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:41:16 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:41:16 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:41:17 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.184 seconds (JVM running for 12.062)
2024-05-27 14:41:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:41:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:41:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:41:27 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:41:28 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0cTNGQW9IcW5YaVFFTm5pMW9oY3k5WElKNUREVG96ciIsInVzZXJJZCI6IjEifQ.4iMUgv7C49f8U3TzC2Nl8LItNd1obF3YQxypY7JJ4QE
2024-05-27 14:41:28 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJidHJnNTc2MTZ2SG1JQU12clh4QlY5NmhXdGEzVzdPZCIsInVzZXJJZCI6IjEifQ.G8bcF77Jmc4vA9zlpq83PS04Peu2UBbCDAe-1nRRUqg
2024-05-27 14:41:28 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:42:59 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:43:03 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 19708 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:43:03 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:43:03 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:43:05 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:43:05 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:43:05 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:43:06 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:43:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:43:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:43:08 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:43:08 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:43:08 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:43:08 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:43:08 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:43:09 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:43:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:43:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:43:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:43:10 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:43:11 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:43:11 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:43:11 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:43:11 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:43:12 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:43:12 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:43:13 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:43:13 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:43:13 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:43:13 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:43:13 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 10.833 seconds (JVM running for 11.877)
2024-05-27 14:43:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:43:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:43:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:44:02 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:44:03 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJwd0ZiMjFHcG5acWNUb1ByMHByNEtydlhFdFFSNHZtMiIsInVzZXJJZCI6IjEifQ.RqnxC9rpOFFpsslzZsrKgOcdyQfT-PVkExpcmithbF4
2024-05-27 14:44:03 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJoNENMVWFYcHpoTUU4Z3ZLMnJIbjBpOFBYbzJxTGhpaCIsInVzZXJJZCI6IjEifQ.yu_HuVf51lAafWGwdF5xUB616eBZemhH0u9eIohUIa4
2024-05-27 14:44:03 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:52:35 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:52:40 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 21204 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:52:40 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:52:40 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:52:42 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:52:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:52:43 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:52:43 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:52:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:52:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:52:45 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:52:45 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:52:45 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:52:45 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:52:46 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:52:46 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:52:47 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:52:47 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:52:47 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:52:47 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:52:48 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:52:49 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:52:49 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:52:49 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:52:50 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:52:50 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:52:51 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:52:51 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:52:51 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:52:51 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:52:51 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.634 seconds (JVM running for 12.464)
2024-05-27 14:52:52 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:52:52 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:52:52 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:53:49 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:53:49 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJCZE83VDVwZ0p6RG80Y1pxNjZQS0k0aGtvS0hXbGNheiIsInVzZXJJZCI6IjEifQ.BLeZTxFHeGvYbDNcX5aaEK720p2L04LzFHejnobHkD4
2024-05-27 14:53:49 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJoWmtYZjVlazdaamVJbmpseHBXME1BUDJVMkhDbVlLeSIsInVzZXJJZCI6IjEifQ.KBp1KmJFX2Ecieze5kIkyeTX7mAcBrLdFyTamI1hQH0
2024-05-27 14:53:49 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 14:55:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 14:55:10 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 8160 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 14:55:10 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 14:55:10 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 14:55:12 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 14:55:12 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 14:55:12 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 14:55:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 14:55:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 14:55:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 14:55:15 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 14:55:15 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 14:55:15 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 14:55:15 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:55:15 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 14:55:16 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 14:55:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 14:55:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:55:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:55:17 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 14:55:17 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 14:55:18 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 14:55:18 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 14:55:18 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 14:55:19 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 14:55:19 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 14:55:20 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 14:55:20 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 14:55:20 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 14:55:21 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 14:55:21 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.148 seconds (JVM running for 12.022)
2024-05-27 14:55:21 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 14:55:21 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 14:55:21 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 14:57:01 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 14:57:01 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJvNXJVQkVsazJUWU56ZTVYdEpSUWRMUlh4MmZUcTVKWiIsInVzZXJJZCI6IjEifQ.HKQ5W4qzt3zoDR272JK_bj5-sv6jx8jmsFzgJ6rU8zE
2024-05-27 14:57:01 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJobnY4eWxKcmJ1MU9tNnVqTzh4RkVENlhJNHpmRjNDayIsInVzZXJJZCI6IjEifQ.ia1kooCQzAXzzqtRx0a_PBfyqjJNc3vRWkLTKymNf4A
2024-05-27 14:57:01 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:13:18 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:13:23 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 22288 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:13:23 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:13:23 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:13:25 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:13:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:13:25 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:13:25 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:13:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:13:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:13:27 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:13:28 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:13:28 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:13:28 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:13:28 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:13:29 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:13:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:13:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:13:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:13:30 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:13:30 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:13:31 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:13:31 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:13:31 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:13:32 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:13:32 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:13:33 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:13:33 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:13:33 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:13:33 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:13:33 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.004 seconds (JVM running for 11.872)
2024-05-27 15:13:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:13:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:13:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:13:42 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:13:43 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJsdVBsdjQxdTh0YTRUUnNqNFA5a053bW04c1hGVWJ5OCIsInVzZXJJZCI6IjEifQ.sEwO8vfNIoppugFvjPLCYUgfEBJ_wL4McKibFpPBqMo
2024-05-27 15:13:43 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJZWGRyZXhPdDdnOWgzUzR5akVhdlE2T0xzZU8zeUJUcyIsInVzZXJJZCI6IjEifQ.t0WA2UJdJoIAOquMSWVXwhi2NShWpJCEkDVik81XSao
2024-05-27 15:13:43 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:18:10 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:18:14 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 6132 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:18:14 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:18:14 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:18:16 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:18:17 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:18:17 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:18:17 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:18:17 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:18:17 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:18:19 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:18:19 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:18:19 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:18:20 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:18:20 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:18:20 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:18:21 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:18:21 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:18:21 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:18:21 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:18:22 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:18:23 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:18:23 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:18:23 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:18:23 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:18:23 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:18:25 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:18:25 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:18:25 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:18:25 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:18:25 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.081 seconds (JVM running for 11.936)
2024-05-27 15:18:25 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:18:25 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:18:25 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:18:40 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:18:41 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJvV0hDODFrVGFnY3JZSkNob1IyeGFncGlEemFMcXlpZCIsInVzZXJJZCI6IjEifQ.AvV8e2JOUWYpbOdlJIn42Jaq20Lb08kt2RNHupHXqwQ
2024-05-27 15:18:41 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJrQ2txQ0NEM0sySU9GcEtWSnYwdkpwNE1CaTNweDF3MSIsInVzZXJJZCI6IjEifQ.LefQdd8EsNQCjPCUFpKOGrD2FkGH4qEKeN3Ao2a6C7o
2024-05-27 15:18:41 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:19:24 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:19:28 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 22124 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:19:28 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:19:28 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:19:30 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:19:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:19:31 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:19:31 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:19:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:19:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:19:33 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:19:33 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:19:33 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:19:34 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:19:34 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:19:34 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:19:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:19:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:19:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:19:36 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:19:36 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:19:37 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:19:37 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:19:37 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:19:37 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:19:37 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:19:39 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:19:39 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:19:39 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:19:39 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:19:39 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.33 seconds (JVM running for 12.185)
2024-05-27 15:19:39 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:19:39 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:19:39 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:19:48 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:19:49 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJpMXVXSVYyNkhOd1B3d2E3WFVjU2RUNWF1b2pkOGZYbiIsInVzZXJJZCI6IjEifQ.2vpyj8QhHEEfOwTRGQ7gR2c_FFh5VBPqx1CsaABhQ2E
2024-05-27 15:19:49 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJPUVM4dWRqUW9rdVQyZGt6UlFRR0tBZjFuTHZ5dlZFSiIsInVzZXJJZCI6IjEifQ.-SoIB9Owq7vWBLkIdJB2NY2lN0NczWuuM7LDaBmJ0Ao
2024-05-27 15:19:49 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:22:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:22:56 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 8464 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:22:56 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:22:56 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:22:58 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:22:58 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:22:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:22:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:22:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:22:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:23:01 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:23:01 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:23:01 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:23:01 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:23:02 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:23:02 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:23:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:23:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:23:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:23:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:23:04 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:23:05 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:23:05 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:23:05 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:23:05 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:23:05 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:23:07 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:23:07 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:23:07 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:23:07 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:23:07 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.186 seconds (JVM running for 12.066)
2024-05-27 15:23:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:23:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:23:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:23:18 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:23:19 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJyV3owMzNIMUtmbGhFQ05NekpGZEZCNVBkR2hObFdNMyIsInVzZXJJZCI6IjEifQ.kWpj8lfNIibFYst47xwiUWmvE4jGKrxfiXo4sDdD4Tk
2024-05-27 15:23:19 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJwdnZ2QVZwYXR2TW5rbGZHZUNZbWg4TXlvenFKWjN5diIsInVzZXJJZCI6IjEifQ.Yrv7qFh_IJ__X9rUk2PBoFAv2orJeeBkAtNTba-3Pbo
2024-05-27 15:23:19 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:25:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:25:38 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 21152 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:25:38 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:25:38 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:25:40 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:25:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:25:40 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:25:41 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:25:41 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:25:41 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:25:43 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:25:43 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:25:43 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:25:44 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:25:44 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:25:44 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:25:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:25:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:25:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:25:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:25:46 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:25:47 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:25:47 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:25:47 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:25:47 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:25:47 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:25:49 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:25:49 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:25:49 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:25:49 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:25:49 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.132 seconds (JVM running for 11.983)
2024-05-27 15:25:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:25:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:25:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:25:53 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:25:53 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:25:54 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:25:54 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:25:54 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:25:54 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:25:58 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 13608 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:25:58 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:25:58 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:26:01 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:26:01 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:26:01 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:26:01 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:26:01 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:26:01 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:26:03 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:26:03 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:26:03 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:26:04 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:26:04 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:26:04 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:26:05 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:26:05 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:26:05 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:26:05 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:26:06 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:26:07 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:26:07 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:26:07 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:26:07 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:26:07 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:26:09 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:26:09 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:26:09 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:26:09 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:26:09 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.071 seconds (JVM running for 11.976)
2024-05-27 15:26:09 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:26:09 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:26:09 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:26:35 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:26:36 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJwYmpNeTh2aTNqRUl0bXJwclQzbTNpUG91S0l0S1B5QSIsInVzZXJJZCI6IjEifQ.9q8Rkgget9vVhdNGvVPLSdY1NmuF00tmCCwwP9eifvQ
2024-05-27 15:26:36 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJLb1Fyakh4SG9PdUcyRGxVWFdxY012UFNUVzlDWmZLSCIsInVzZXJJZCI6IjEifQ.fuiZBVUGz_RIaf4_nckS5SgH_-dLwQ8G68MCG-IveZ4
2024-05-27 15:26:36 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 15:27:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-05-27 15:27:55 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_281 on MyWang with PID 5264 (D:\MyFile\project\ROGY-QMS\dl-admin\target\classes started by 95817 in D:\MyFile\project\ROGY-QMS)
2024-05-27 15:27:55 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-05-27 15:27:55 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-05-27 15:27:57 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-05-27 15:27:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-05-27 15:27:57 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-05-27 15:27:57 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-05-27 15:27:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-05-27 15:27:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-05-27 15:27:59 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-05-27 15:27:59 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-05-27 15:27:59 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-05-27 15:28:00 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:28:00 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-05-27 15:28:01 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-05-27 15:28:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-05-27 15:28:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:28:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:28:02 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-05-27 15:28:02 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-05-27 15:28:03 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-05-27 15:28:03 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-05-27 15:28:03 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-05-27 15:28:03 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-05-27 15:28:03 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-05-27 15:28:05 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-05-27 15:28:05 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-05-27 15:28:05 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-05-27 15:28:05 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-05-27 15:28:05 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.046 seconds (JVM running for 11.961)
2024-05-27 15:28:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-05-27 15:28:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-05-27 15:28:06 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-05-27 15:28:15 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-05-27 15:28:16 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJRUWw1U25ZTXpEUE5kampHUWZJeXI2a3NGWlhaYTlrYiIsInVzZXJJZCI6IjEifQ.f3RKo9uRJxnPdbt7uE4qg8fVN1Aw62dKOr5YdLM4pnI
2024-05-27 15:28:16 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0cTNGQW9IcW5YaVFFTm5pMW9oY3k5WElKNUREVG96ciIsInVzZXJJZCI6IjEifQ.4iMUgv7C49f8U3TzC2Nl8LItNd1obF3YQxypY7JJ4QE
2024-05-27 15:28:16 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.119]内网IP[admin][Success][登录成功]
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-05-27 16:05:15 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye