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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
2024-06-11 09:14:32 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11840 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 09:14:32 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 09:14:32 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 09:14:42 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 09:14:42 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 09:14:42 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 09:24:31 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 21448 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 09:24:31 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 09:24:31 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 09:24:34 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 09:24:34 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 09:24:34 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 09:24:35 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 09:24:35 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 09:24:35 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 09:24:38 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 09:24:38 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 09:24:38 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 09:24:38 [redisson-netty-2-5] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for localhost/127.0.0.1:6378
2024-06-11 09:24:38 [redisson-netty-2-4] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for localhost/127.0.0.1:6378
2024-06-11 09:24:39 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 09:24:40 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 09:24:40 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:24:40 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:24:41 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:24:42 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 09:24:43 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 09:24:43 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 09:24:43 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 09:24:43 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 09:24:43 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 09:24:45 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 09:24:45 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 09:24:45 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 09:24:45 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 09:24:45 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 14.603 seconds (JVM running for 15.656)
2024-06-11 09:24:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 09:24:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 09:24:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 09:24:46 [RMI TCP Connection(5)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 09:26:55 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0aXZyOGVkVFhlcFo3VkdxWlRndEh5WExxTm45SnBHVCIsInVzZXJJZCI6IjEifQ.vQ31VSeZ9rP1k9bBz6-friUKViPJFeUwQ8F2QyccBDc
2024-06-11 09:26:55 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 09:36:07 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 09:36:10 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 8884 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 09:36:10 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 09:36:10 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 09:36:13 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 09:36:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 09:36:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 09:36:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 09:36:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 09:36:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 09:36:16 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 09:36:16 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 09:36:16 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 09:36:17 [redisson-netty-2-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 09:36:17 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 09:36:18 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 09:36:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 09:36:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:36:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:36:19 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:36:20 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 09:36:21 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 09:36:21 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 09:36:21 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 09:36:22 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 09:36:22 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 09:36:24 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 09:36:24 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 09:36:24 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 09:36:24 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 09:36:24 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 13.989 seconds (JVM running for 15.022)
2024-06-11 09:36:24 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 09:36:24 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 09:36:24 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 09:36:25 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 09:38:48 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI4QWVSU296S3VSMnFNU1gycjJlNllzcEtRSVh4N2pacCIsInVzZXJJZCI6IjEifQ.2Po04pkp_VFkdVq7wg-mpQpP2Sh5O9tnRDv2p4xZXpA
2024-06-11 09:38:48 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 09:41:16 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJKWWdBOWlxb0pYWG45Qml5MldySWRxRlk5SUkwc0JUaiIsInVzZXJJZCI6IjEifQ.hSvFCCvJhIzAHI8HKNUD24z42lwgCwOnj0G9qJaaACM
2024-06-11 09:41:16 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [127.0.0.1]内网IP[admin][Success][登录成功]
2024-06-11 09:55:56 [Thread-35] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 09:55:56 [Thread-35] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 09:55:56 [Thread-35] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 09:55:56 [Thread-35] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 09:55:56 [Thread-35] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 09:55:56 [Thread-35] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 09:55:56 [Thread-35] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 09:55:56 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 8884 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 09:55:56 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 09:55:57 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 09:55:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 09:55:57 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 09:55:57 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 09:55:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 09:55:57 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 09:55:59 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 09:55:59 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 09:55:59 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 09:55:59 [redisson-netty-5-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 09:55:59 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 09:56:00 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 09:56:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 09:56:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:56:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:56:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 09:56:00 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 09:56:01 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 09:56:01 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 09:56:01 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 09:56:01 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 09:56:01 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 09:56:02 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 09:56:02 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 5.978 seconds (JVM running for 1193.06)
2024-06-11 09:56:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 09:56:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 09:56:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 09:59:30 [XNIO-2 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 10:17:13 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 10:17:19 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 28584 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 10:17:19 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 10:17:19 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 10:17:21 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 10:17:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 10:17:21 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 10:17:22 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 10:17:22 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 10:17:22 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 10:17:24 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 10:17:24 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 10:17:24 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 10:17:25 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:17:25 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:17:26 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 10:17:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 10:17:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:17:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:17:27 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:17:27 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 10:17:28 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 10:17:29 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 10:17:29 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 10:17:29 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 10:17:29 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 10:17:31 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 10:17:31 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 10:17:31 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 10:17:31 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 10:17:31 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.724 seconds (JVM running for 13.763)
2024-06-11 10:17:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 10:17:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 10:17:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 10:17:32 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 10:17:53 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJRQUV4N0JZNndjUDNEd3R5M0FGSlFYZ21UQXJSNkZLRiIsInVzZXJJZCI6IjEifQ.d3mw28YXJQ3cHslMqwkBcd9cW2smxJVCcNH936QPgyY
2024-06-11 10:17:53 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 10:22:45 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI4QWVSU296S3VSMnFNU1gycjJlNllzcEtRSVh4N2pacCIsInVzZXJJZCI6IjEifQ.2Po04pkp_VFkdVq7wg-mpQpP2Sh5O9tnRDv2p4xZXpA
2024-06-11 10:22:45 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-11 10:22:47 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJlWFYxUGJLT05yWWFRUThMUEMwSHFsQ1h4WGI0MTVvdiIsInVzZXJJZCI6IjEifQ.c7gSPzDFqm6UYwqoXOD2zZudaLsM7D3nF-zjyEky7hk
2024-06-11 10:22:47 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 10:23:55 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJRQUV4N0JZNndjUDNEd3R5M0FGSlFYZ21UQXJSNkZLRiIsInVzZXJJZCI6IjEifQ.d3mw28YXJQ3cHslMqwkBcd9cW2smxJVCcNH936QPgyY
2024-06-11 10:23:55 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 10:24:05 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJzYjgycVJMcnpKOTlMN05aeVBBUjRVNERFT0ZOSTZrWiIsInVzZXJJZCI6IjIifQ.SODizBwMaqv67c073my7UIRnHvSou1V3SZT_4o9_ug0
2024-06-11 10:24:05 [schedule-pool-9] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 10:25:08 [Thread-33] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 10:25:08 [Thread-33] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 10:25:08 [Thread-33] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 10:25:08 [Thread-33] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 10:25:08 [Thread-33] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 10:25:08 [Thread-33] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 10:25:08 [Thread-33] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 10:25:08 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 28584 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 10:25:08 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 10:25:09 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 10:25:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 10:25:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 10:25:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 10:25:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 10:25:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 10:25:11 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 10:25:11 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 10:25:11 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 10:25:11 [redisson-netty-5-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:25:11 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:25:12 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 10:25:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 10:25:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:13 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 10:25:15 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 10:25:15 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 10:25:15 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 10:25:15 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 10:25:15 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 10:25:17 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 10:25:17 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 9.068 seconds (JVM running for 479.909)
2024-06-11 10:25:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 10:25:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 10:25:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 10:25:19 [Thread-46] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 10:25:19 [Thread-46] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 10:25:19 [Thread-46] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 10:25:19 [Thread-46] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 10:25:19 [Thread-46] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 10:25:19 [Thread-46] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 10:25:20 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 28584 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 10:25:20 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 10:25:22 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 10:25:22 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 10:25:22 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 10:25:22 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 10:25:22 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 10:25:22 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 10:25:25 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 10:25:26 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 10:25:26 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 10:25:26 [redisson-netty-8-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:25:26 [redisson-netty-8-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:25:28 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 10:25:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 10:25:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:25:29 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 10:25:31 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 10:25:31 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 10:25:31 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 10:25:32 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 10:25:32 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 10:25:34 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 10:25:34 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 14.473 seconds (JVM running for 496.852)
2024-06-11 10:25:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 10:25:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 10:25:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 10:28:32 [XNIO-3 task-3] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 10:35:43 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 10:35:46 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 13956 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 10:35:46 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 10:35:46 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 10:35:49 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 10:35:49 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 10:35:49 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 10:35:50 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 10:35:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 10:35:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 10:35:52 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 10:35:52 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 10:35:52 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 10:35:52 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:35:52 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:35:53 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 10:35:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 10:35:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:35:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:35:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:35:55 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 10:35:56 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 10:35:56 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 10:35:56 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 10:35:56 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 10:35:56 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 10:35:58 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 10:35:58 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 10:35:58 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 10:35:58 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 10:35:58 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.805 seconds (JVM running for 13.801)
2024-06-11 10:35:58 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 10:35:59 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 10:35:59 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 10:35:59 [RMI TCP Connection(6)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 10:36:06 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI5YzdoelZTbzFMclNBVUhrcDBuOHVQWkhUcVdjTGZ3MyIsInVzZXJJZCI6IjEifQ.G0Aj_c5tXce1PT7mZCwQm1De1B_fUXnaenUn0G73pxE
2024-06-11 10:36:06 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJKWWdBOWlxb0pYWG45Qml5MldySWRxRlk5SUkwc0JUaiIsInVzZXJJZCI6IjEifQ.hSvFCCvJhIzAHI8HKNUD24z42lwgCwOnj0G9qJaaACM
2024-06-11 10:36:06 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJLbWJxek1LVVVoaUxKRVBMbUZSVmFWSGR3bXdkdTJsUSIsInVzZXJJZCI6IjEifQ.a3IxEeKWiLRw1v1ejW42kEHKTTmUsh_UuW8WZXLvTMs
2024-06-11 10:36:06 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJVcVpEQ2M4d256cW92M2xWaWNESUtxcEFhb1pmT0ZRNiIsInVzZXJJZCI6IjEifQ.rQM12VYFjUNgs-HK8yl7fbwbQDmq7jnjb7Aa8ZyVLIE
2024-06-11 10:36:06 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 10:36:18 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJyMklWd1dhV2Rpd2J3U3liUm1Sa0N6ZDJUaXhuWDhyNSIsInVzZXJJZCI6IjEifQ.UljhthLnZO_G14jv8aDof-0WYZjsDquwcqlAu3zjBPs
2024-06-11 10:36:18 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJSNHU5aW5pQktxaVd6cHlRWXJFTk0yN1FNbWpUWVYwViIsInVzZXJJZCI6IjEifQ.qr5kSyOlVbL49vx51ujKnlODKLvaZIWIgqWIDIbOg78
2024-06-11 10:36:18 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 10:50:38 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 10:50:49 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 9936 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 10:50:49 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 10:50:49 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 10:50:52 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 10:50:52 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 10:50:52 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 10:50:53 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 10:50:53 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 10:50:53 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 10:50:56 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 10:50:56 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 10:50:56 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 10:50:56 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:50:56 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 10:50:57 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 10:50:58 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 10:50:58 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:50:58 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:50:58 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 10:50:59 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 10:51:00 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 10:51:00 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 10:51:00 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 10:51:01 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 10:51:01 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 10:51:03 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 10:51:03 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 10:51:03 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 10:51:03 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 10:51:03 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 14.398 seconds (JVM running for 16.149)
2024-06-11 10:51:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 10:51:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 10:51:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 10:51:04 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 11:07:52 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI5YzdoelZTbzFMclNBVUhrcDBuOHVQWkhUcVdjTGZ3MyIsInVzZXJJZCI6IjEifQ.G0Aj_c5tXce1PT7mZCwQm1De1B_fUXnaenUn0G73pxE
2024-06-11 11:07:52 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 11:07:58 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJPakxrOFd1eUxmb2F6MkFyaWFORFpYdGVadkpXWk5hYiIsInVzZXJJZCI6IjIifQ.id0zuRfxZWQNUDIbuNo7sxn_ufOE1h3xlgyaBTKy1G8
2024-06-11 11:07:58 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 11:16:48 [Thread-37] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 11:16:48 [Thread-37] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 11:16:48 [Thread-37] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 11:16:48 [Thread-37] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 11:16:48 [Thread-37] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 11:16:48 [Thread-37] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 11:16:48 [Thread-37] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 11:16:48 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 9936 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 11:16:48 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 11:16:58 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 11:16:58 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 11:16:58 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 11:16:58 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 11:16:58 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 11:16:58 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 11:17:00 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 11:17:00 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 11:17:00 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 11:17:00 [redisson-netty-5-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:17:00 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:17:01 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 11:17:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 11:17:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:01 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 11:17:06 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 11:17:06 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 11:17:06 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 11:17:06 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 11:17:06 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 11:17:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 11:17:06 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 11:17:06 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 11:17:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 11:17:08 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 9936 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 11:17:08 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 11:17:10 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 11:17:10 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 11:17:10 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 11:17:10 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 11:17:10 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 11:17:10 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 11:17:12 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 11:17:12 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 11:17:12 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 11:17:12 [redisson-netty-8-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:17:12 [redisson-netty-8-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:17:13 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 11:17:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 11:17:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:17:14 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 11:17:14 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 11:17:14 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 11:17:15 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 11:17:15 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 11:17:15 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 11:17:16 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 11:17:16 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 8.197 seconds (JVM running for 1589.576)
2024-06-11 11:17:16 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 11:17:16 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 11:17:16 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 11:19:15 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 11:19:18 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 9308 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 11:19:18 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 11:19:18 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 11:19:21 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 11:19:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 11:19:21 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 11:19:21 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 11:19:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 11:19:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 11:19:24 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 11:19:24 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 11:19:24 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 11:19:24 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:19:24 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:19:26 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 11:19:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 11:19:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:19:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:19:30 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:19:31 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 11:19:32 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 11:19:33 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 11:19:33 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 11:19:33 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 11:19:33 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 11:19:37 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 11:19:37 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 11:19:37 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 11:19:37 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 11:19:37 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 19.195 seconds (JVM running for 20.291)
2024-06-11 11:19:37 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 11:19:37 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 11:19:37 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 11:19:38 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 11:31:43 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJPakxrOFd1eUxmb2F6MkFyaWFORFpYdGVadkpXWk5hYiIsInVzZXJJZCI6IjIifQ.id0zuRfxZWQNUDIbuNo7sxn_ufOE1h3xlgyaBTKy1G8
2024-06-11 11:31:43 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-11 11:31:55 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIxTlB0aTVsbHhYUUNGaVRSQUs0UXdDRDh4dzZBVU1ReiIsInVzZXJJZCI6IjEifQ.5rBoFObbCfZMJstkFiorU1aqw_MIBDtstAEVxjqb2t0
2024-06-11 11:31:55 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 11:35:56 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIxTlB0aTVsbHhYUUNGaVRSQUs0UXdDRDh4dzZBVU1ReiIsInVzZXJJZCI6IjEifQ.5rBoFObbCfZMJstkFiorU1aqw_MIBDtstAEVxjqb2t0
2024-06-11 11:35:56 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 11:35:59 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJvelhpRmNESE5CMnl6dHAxUlFUYU1oUm1JemJCejF1ayIsInVzZXJJZCI6IjIifQ.1iDS6JOfFKt94eCeLPOjDHT8L1e0K8tQ-WrkiPgCGIg
2024-06-11 11:35:59 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 11:36:18 [Thread-44] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 11:36:18 [Thread-44] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 11:36:18 [Thread-44] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 11:36:18 [Thread-44] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 11:36:18 [Thread-44] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 11:36:18 [Thread-44] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 11:36:18 [Thread-44] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 11:36:19 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 9308 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 11:36:19 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 11:36:20 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 11:36:20 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 11:36:20 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 11:36:20 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 11:36:20 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 11:36:20 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 11:36:22 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 11:36:22 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 11:36:22 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 11:36:22 [redisson-netty-5-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:36:22 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:36:23 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 11:36:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 11:36:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:36:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:36:24 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:36:24 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 11:36:25 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 11:36:25 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 11:36:25 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 11:36:25 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 11:36:25 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 11:36:26 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 11:36:26 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 7.498 seconds (JVM running for 1029.548)
2024-06-11 11:36:26 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 11:36:26 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 11:36:26 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 11:37:47 [XNIO-2 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 11:45:03 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 11:45:08 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 19452 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 11:45:08 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 11:45:08 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 11:45:10 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 11:45:11 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 11:45:11 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 11:45:11 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 11:45:11 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 11:45:11 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 11:45:13 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 11:45:13 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 11:45:13 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 11:45:14 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:45:14 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 11:45:15 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 11:45:15 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 11:45:15 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:45:15 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:45:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 11:45:16 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 11:45:17 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 11:45:17 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 11:45:17 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 11:45:18 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 11:45:18 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 11:45:19 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 11:45:19 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 11:45:19 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 11:45:19 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 11:45:19 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.84 seconds (JVM running for 12.81)
2024-06-11 11:45:20 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 11:45:20 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 11:45:20 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 11:45:20 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 11:46:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI2d0lJZHZEUXRyMTlsY3hDSkl1VTRTZ0N4VXRSbU83TiIsInVzZXJJZCI6IjEifQ.SHIghpKqHhbAJ9mWzYoY1e-y1O_mfDiOymcEbWeOMqI
2024-06-11 11:46:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJlWFYxUGJLT05yWWFRUThMUEMwSHFsQ1h4WGI0MTVvdiIsInVzZXJJZCI6IjEifQ.c7gSPzDFqm6UYwqoXOD2zZudaLsM7D3nF-zjyEky7hk
2024-06-11 11:46:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0NWhjQVI5akZqVXl1TGRSYUpXaEZPUVVXeHFYR0tCNCIsInVzZXJJZCI6IjEifQ.6SsD-ABgpHapbMhjmB2SWLwTuwO4klKx7ZJQMtcnafE
2024-06-11 11:46:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIwS2JyQVI1ODU4dlNtcm1MUEVrRTRxTDZIUm5zQXJ0NiIsInVzZXJJZCI6IjEifQ.iSopMVOeIXoZblCvCkzoU34ENVZ8Mjywz0AAAIJSvCY
2024-06-11 11:46:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJoU21rcmFxdTZUcUZUYUJlRk9mY0NDQUs4VTV4ZDJwTCIsInVzZXJJZCI6IjEifQ.CaPKQ2ckTiyZ7q4ww5WLm0ZgaqSNvOqN8iBKh4yYa8A
2024-06-11 11:46:14 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 11:50:31 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI2d0lJZHZEUXRyMTlsY3hDSkl1VTRTZ0N4VXRSbU83TiIsInVzZXJJZCI6IjEifQ.SHIghpKqHhbAJ9mWzYoY1e-y1O_mfDiOymcEbWeOMqI
2024-06-11 11:50:31 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 11:50:35 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiIwdGxXY2ZYSGFKNmhkaWRPTEVZUmh5SUxiWUhXUXE2dSIsInVzZXJJZCI6IjIifQ.QNoga3jcR7qmbpYAmFmP8MCfXfhLGCSy3lGxbkxO-oc
2024-06-11 11:50:35 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 13:38:25 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJTZ0dRR3VrOFRNTFlRZXlhR3NxMGtEcDlIY0F0Rnd5ViIsInVzZXJJZCI6IjEifQ.K49po6ykzi2RozrSfoHAZ3WOab4GQpFKpd5nFsOSPHU
2024-06-11 13:38:25 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 13:43:34 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJNTlFLUWVGcTlrd0FEZUlUdmFTZzU4NGJRdXFrZlZrOCIsInVzZXJJZCI6IjEifQ.pSisXzRN3vvozeh6gfmUpwCKTxJtnTNhm8rLf1kJ3Tw
2024-06-11 13:43:34 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJPcG44OEN4eEFxNXdhQjBZZGN4S3dsdXFnWUNCVjVHZSIsInVzZXJJZCI6IjEifQ.1FWM1Ncpj39OouFvF4vGkdyiEh_d-gG6WEQuHbZLOu0
2024-06-11 13:43:34 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 13:59:30 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJNTlFLUWVGcTlrd0FEZUlUdmFTZzU4NGJRdXFrZlZrOCIsInVzZXJJZCI6IjEifQ.pSisXzRN3vvozeh6gfmUpwCKTxJtnTNhm8rLf1kJ3Tw
2024-06-11 13:59:30 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 13:59:35 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJmQTdTblhYV21IQ1FoQlE4cWV1d2g4N3VVOUVqQThmbCIsInVzZXJJZCI6IjIifQ.KQQEmZZENtXwj27mk2-B8Bxyen6Yx2n3UNnjEaW6n6o
2024-06-11 13:59:35 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 14:11:11 [Thread-31] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:11:11 [Thread-31] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:11:11 [Thread-31] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:11:11 [Thread-31] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:11:11 [Thread-31] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:11:11 [Thread-31] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:11:11 [Thread-31] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:11:12 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 19452 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:11:12 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:11:13 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:11:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:11:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:11:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:11:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:11:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:11:16 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:11:16 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:11:16 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:11:16 [redisson-netty-5-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:11:16 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:11:16 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:11:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:11:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:16 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:17 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:17 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:11:18 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:11:18 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:11:18 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:11:18 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:11:18 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:11:21 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:11:22 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 10.066 seconds (JVM running for 8774.854)
2024-06-11 14:11:22 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:11:22 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:11:22 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:11:23 [Thread-44] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:11:23 [Thread-44] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:11:23 [Thread-44] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:11:23 [Thread-44] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:11:23 [Thread-44] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:11:23 [Thread-44] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:11:24 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 19452 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:11:24 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:11:25 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:11:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:11:25 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:11:25 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:11:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:11:25 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:11:27 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:11:27 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:11:27 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:11:27 [redisson-netty-8-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:11:27 [redisson-netty-8-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:11:28 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:11:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:11:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:11:29 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:11:29 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:11:30 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:11:30 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:11:30 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:11:30 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:11:31 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:11:31 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 7.019 seconds (JVM running for 8784.048)
2024-06-11 14:11:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:11:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:11:31 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:11:57 [XNIO-3 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:25:39 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:25:46 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 21076 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:25:46 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:25:46 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 14:25:48 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:25:48 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:25:48 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:25:49 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:25:49 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:25:49 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:25:51 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:25:51 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:25:51 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:25:52 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:25:52 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:25:52 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:25:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:25:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:25:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:25:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:25:54 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:25:55 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:25:55 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:25:55 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:25:55 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:25:55 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:25:57 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:25:57 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 14:25:57 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 14:25:57 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 14:25:57 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.122 seconds (JVM running for 13.124)
2024-06-11 14:25:57 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:25:57 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:25:58 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:25:58 [RMI TCP Connection(4)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:35:58 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJmQTdTblhYV21IQ1FoQlE4cWV1d2g4N3VVOUVqQThmbCIsInVzZXJJZCI6IjIifQ.KQQEmZZENtXwj27mk2-B8Bxyen6Yx2n3UNnjEaW6n6o
2024-06-11 14:35:58 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-11 14:36:02 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJsME11b1dZSUtOenJST1VyVmVjSEJrcTZtdHN6dDVqYyIsInVzZXJJZCI6IjEifQ.NYG8tRSny1XGlVnQBC5Rk36_uHU2Fmbr94a-0WesNYk
2024-06-11 14:36:02 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:37:57 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:38:03 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 21656 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:38:03 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:38:03 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 14:38:05 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:38:05 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:38:05 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:38:06 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:38:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:38:06 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:38:08 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:38:08 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:38:08 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:38: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-06-11 14:38: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-06-11 14:38:09 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:38:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:38:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:38:09 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:38:10 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:38:11 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:38:12 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:38:12 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:38:12 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:38:12 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:38:12 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:38:14 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:38:14 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 14:38:14 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 14:38:14 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 14:38:14 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.822 seconds (JVM running for 12.819)
2024-06-11 14:38:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:38:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:38:14 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:38:15 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:45:10 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:45:15 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 20908 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:45:15 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:45:15 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 14:45:17 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:45:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:45:18 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:45:18 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:45:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:45:18 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:45:20 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:45:21 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:45:21 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:45:21 [redisson-netty-2-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:45: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-06-11 14:45:22 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:45:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:45:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:45:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:45:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:45:24 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:45:25 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:45:25 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:45:25 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:45:26 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:45:26 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:45:28 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:45:28 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 14:45:28 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 14:45:28 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 14:45:28 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 13.443 seconds (JVM running for 14.452)
2024-06-11 14:45:28 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:45:28 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:45:29 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:45:29 [RMI TCP Connection(5)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:49:09 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJsME11b1dZSUtOenJST1VyVmVjSEJrcTZtdHN6dDVqYyIsInVzZXJJZCI6IjEifQ.NYG8tRSny1XGlVnQBC5Rk36_uHU2Fmbr94a-0WesNYk
2024-06-11 14:49:09 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 14:49:13 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiIyYnB4dzZqeFN1NHhPWnY0V1duWXk5WHhWSzBHU3kxdiIsInVzZXJJZCI6IjIifQ.mMc-lomjl3t6xcj5SYs_pR7cQ5oqT6-hcHCyES3nF8c
2024-06-11 14:49:14 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:52:23 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:52:33 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 2528 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:52:33 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:52:33 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 14:52:36 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:52:36 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:52:36 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:52:37 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:52:37 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:52:37 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:52:40 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:52:40 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:52:40 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:52:41 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:52:41 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:52:42 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:52:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:52:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:52:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:52:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:52:44 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:52:45 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:52:45 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:52:45 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:52:46 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:52:46 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:52:48 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:52:48 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 14:52:48 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 14:52:48 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 14:52:48 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.454 seconds (JVM running for 18.99)
2024-06-11 14:52:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:52:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:52:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:52:49 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 14:55:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 14:55:12 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 12380 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 14:55:12 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 14:55:12 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 14:55:16 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 14:55:16 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 14:55:16 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 14:55:17 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 14:55:17 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 14:55:17 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 14:55:20 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 14:55:20 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 14:55:20 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 14:55:20 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 14:55: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-06-11 14:55:21 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 14:55:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 14:55:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:55:22 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:55:23 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 14:55:24 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 14:55:25 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 14:55:25 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 14:55:25 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 14:55:25 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 14:55:25 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 14:55:28 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 14:55:28 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 14:55:28 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 14:55:28 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 14:55:28 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.505 seconds (JVM running for 17.474)
2024-06-11 14:55:28 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 14:55:28 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 14:55:28 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 14:55:29 [RMI TCP Connection(4)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 14:56:04 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiIyYnB4dzZqeFN1NHhPWnY0V1duWXk5WHhWSzBHU3kxdiIsInVzZXJJZCI6IjIifQ.mMc-lomjl3t6xcj5SYs_pR7cQ5oqT6-hcHCyES3nF8c
2024-06-11 14:56:04 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-11 14:56:06 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJKQ0NGSEZVUVM1STFUOXR2cG9OUlJETEd0R3BjcGRFYSIsInVzZXJJZCI6IjEifQ.LckXazEafqMEcuzlt0TKmueXxm5_AtOzl3Ydf9sbpL0
2024-06-11 14:56:06 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 14:56:49 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJKQ0NGSEZVUVM1STFUOXR2cG9OUlJETEd0R3BjcGRFYSIsInVzZXJJZCI6IjEifQ.LckXazEafqMEcuzlt0TKmueXxm5_AtOzl3Ydf9sbpL0
2024-06-11 14:56:49 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 14:56:54 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiUHN0a2lTM0FKb0hKV0o0TDJnWWJuVUJnd1hYTnNjVVoiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.o0J3XhJJByYh5wNYWQsTMtMQ4KEOljsBpMANm79ayQU
2024-06-11 14:56:54 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Success][登录成功]
2024-06-11 14:57:50 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiUHN0a2lTM0FKb0hKV0o0TDJnWWJuVUJnd1hYTnNjVVoiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.o0J3XhJJByYh5wNYWQsTMtMQ4KEOljsBpMANm79ayQU
2024-06-11 14:57:50 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Logout][退出成功]
2024-06-11 14:57:54 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ6VEc2OGpYRDdOOUxYODNRcHl2SUw5TDZpak5WaWZ2bCIsInVzZXJJZCI6IjEifQ.-3gqqJ6_q6pRdau4gvpGoWGiYs4t12kPBpQ-xKYqNHQ
2024-06-11 14:57:54 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 14:59:00 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ6VEc2OGpYRDdOOUxYODNRcHl2SUw5TDZpak5WaWZ2bCIsInVzZXJJZCI6IjEifQ.-3gqqJ6_q6pRdau4gvpGoWGiYs4t12kPBpQ-xKYqNHQ
2024-06-11 14:59:00 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 14:59:03 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiaVVCUVlaTW9CMjVUN01JVlRQZWdDMHJFVEN5VXRnMWwiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.a-mwupSjvGjjpKm6pel2a48qSYNblB3a8lX2y_q-9_U
2024-06-11 14:59:03 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Success][登录成功]
2024-06-11 15:30:05 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJTZ0dRR3VrOFRNTFlRZXlhR3NxMGtEcDlIY0F0Rnd5ViIsInVzZXJJZCI6IjEifQ.K49po6ykzi2RozrSfoHAZ3WOab4GQpFKpd5nFsOSPHU
2024-06-11 15:30:05 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-11 15:30:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiclhPVFpDeVd6TUZ2bGdtaU9HTXFLVDZmcHV0QWZYaXAiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.Mwe_wHb7EWyUQmEi4daL_LlvX2Yw19qYsl0IxT8KBpw
2024-06-11 15:30:14 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Success][登录成功]
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 15:36:30 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 15:36:36 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 14616 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 15:36:36 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 15:36:36 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 15:36:39 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 15:36:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 15:36:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 15:36:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 15:36:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 15:36:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 15:36:41 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 15:36:42 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 15:36:42 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 15:36:42 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 15:36:42 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 15:36:43 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 15:36:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 15:36:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 15:36:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 15:36:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 15:36:44 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 15:36:45 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 15:36:46 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 15:36:46 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 15:36:46 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 15:36:46 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 15:36:48 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 15:36:48 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 15:36:48 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 15:36:48 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 15:36:48 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.05 seconds (JVM running for 13.031)
2024-06-11 15:36:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 15:36:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 15:36:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 15:36:49 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 15:49:41 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiclhPVFpDeVd6TUZ2bGdtaU9HTXFLVDZmcHV0QWZYaXAiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.Mwe_wHb7EWyUQmEi4daL_LlvX2Yw19qYsl0IxT8KBpw
2024-06-11 15:49:41 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Logout][退出成功]
2024-06-11 15:49:49 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJROUt0TXNXVFhheEdYZ1FVVjZyamlGc1FPV0hCa24xaiIsInVzZXJJZCI6IjEifQ.eeGfuGfEVMJ_VuzZlXUyZ-Z5EtqmDmpzCXdy--BKgnc
2024-06-11 15:49:49 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 16:08:29 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJROUt0TXNXVFhheEdYZ1FVVjZyamlGc1FPV0hCa24xaiIsInVzZXJJZCI6IjEifQ.eeGfuGfEVMJ_VuzZlXUyZ-Z5EtqmDmpzCXdy--BKgnc
2024-06-11 16:08:29 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-11 16:08:37 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiTkxwdzFLbmNEeHVzWDFCemFFWE42cUkydjlEWE5xUTYiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.S2TUnoE35xOf0-HLtVaufaqhNTil85T9QQPnznQJs6E
2024-06-11 16:08:37 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Success][登录成功]
2024-06-11 16:14:18 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiTkxwdzFLbmNEeHVzWDFCemFFWE42cUkydjlEWE5xUTYiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.S2TUnoE35xOf0-HLtVaufaqhNTil85T9QQPnznQJs6E
2024-06-11 16:14:18 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Logout][退出成功]
2024-06-11 16:14:20 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0eFRLVHN4dnY3ZzNDeVdBb1BhTkRXZXBrdEpGc3NjZyIsInVzZXJJZCI6IjEifQ.dVYLV3_NB3b2HyINwRw4YLE-erHuwXUx4S2-8AswnNc
2024-06-11 16:14:20 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 16:14:30 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiaVVCUVlaTW9CMjVUN01JVlRQZWdDMHJFVEN5VXRnMWwiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.a-mwupSjvGjjpKm6pel2a48qSYNblB3a8lX2y_q-9_U
2024-06-11 16:14:30 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Logout][退出成功]
2024-06-11 16:15:21 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiRURSNFFjWUhMaWhDMGp0YVFVemJhbXVONEtSeE53UHIiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.Q6ksh0x3e3UTsAO_6JDthmEkSRixokd8EfRNchDA48A
2024-06-11 16:15:21 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Success][登录成功]
2024-06-11 16:15:41 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0eFRLVHN4dnY3ZzNDeVdBb1BhTkRXZXBrdEpGc3NjZyIsInVzZXJJZCI6IjEifQ.dVYLV3_NB3b2HyINwRw4YLE-erHuwXUx4S2-8AswnNc
2024-06-11 16:15:41 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-11 16:15:53 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJsNHNNNFZjMnVPcnBxaVZoYnZzMExkRkgwTTZJTzR2aCIsInVzZXJJZCI6IjIifQ.Dt1ANLURonc1SXPVw4R3D_1xNxIoKHrxUAMISNXytWk
2024-06-11 16:15:53 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-11 16:17:22 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiRURSNFFjWUhMaWhDMGp0YVFVemJhbXVONEtSeE53UHIiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.Q6ksh0x3e3UTsAO_6JDthmEkSRixokd8EfRNchDA48A
2024-06-11 16:17:22 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Logout][退出成功]
2024-06-11 16:17:25 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJuSFpjU1FyN1JPZFRZYXJSdHh0d1JXQ1hGdjhVQWlOYiIsInVzZXJJZCI6IjEifQ.pzzarELWDpXbRTgOsJ5mZFL1fcEtp15EB7iTmqCtxkQ
2024-06-11 16:17:25 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 16:18:02 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJuSFpjU1FyN1JPZFRZYXJSdHh0d1JXQ1hGdjhVQWlOYiIsInVzZXJJZCI6IjEifQ.pzzarELWDpXbRTgOsJ5mZFL1fcEtp15EB7iTmqCtxkQ
2024-06-11 16:18:02 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 16:18:08 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[测试][Error][密码输入错误1次]
2024-06-11 16:18:12 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:96795ce8-6e41-4980-a61b-ed989226781b, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjo5Njc5NWNlOC02ZTQxLTQ5ODAtYTYxYi1lZDk4OTIyNjc4MWIiLCJyblN0ciI6InFWeVBpU1BYYmpHa083cWVyTFVGQThMSnpvOThMNHFEIiwidXNlcklkIjoiOTY3OTVjZTgtNmU0MS00OTgwLWE2MWItZWQ5ODkyMjY3ODFiIn0.D9eYUnJFniX6WSDCbcg_-5BFNjC6uzdQL4olMwyeBxg
2024-06-11 16:18:12 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[测试][Success][登录成功]
2024-06-11 16:19:21 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJsNHNNNFZjMnVPcnBxaVZoYnZzMExkRkgwTTZJTzR2aCIsInVzZXJJZCI6IjIifQ.Dt1ANLURonc1SXPVw4R3D_1xNxIoKHrxUAMISNXytWk
2024-06-11 16:19:21 [schedule-pool-9] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-11 16:19:23 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ2SUhycm5BUlFWR1NpTndQa2pOR3l2T1dURjBsZkt5bCIsInVzZXJJZCI6IjEifQ.vlU-o0el1P5_dGsqcYe5RgW19FSRfEKfK8PpHoRvuwY
2024-06-11 16:19:23 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-11 16:19:50 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:96795ce8-6e41-4980-a61b-ed989226781b, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjo5Njc5NWNlOC02ZTQxLTQ5ODAtYTYxYi1lZDk4OTIyNjc4MWIiLCJyblN0ciI6InFWeVBpU1BYYmpHa083cWVyTFVGQThMSnpvOThMNHFEIiwidXNlcklkIjoiOTY3OTVjZTgtNmU0MS00OTgwLWE2MWItZWQ5ODkyMjY3ODFiIn0.D9eYUnJFniX6WSDCbcg_-5BFNjC6uzdQL4olMwyeBxg
2024-06-11 16:19:50 [schedule-pool-10] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[测试][Logout][退出成功]
2024-06-11 16:19:53 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI4RFVXS1J3dVpaNkR2bEpoUTZwb3BuU291MG9yU0dLbyIsInVzZXJJZCI6IjEifQ.14MUH3SC02Azy4f-UT1bGWggq3bU_tsm4hOLtSw03Po
2024-06-11 16:19:53 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 16:21:26 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 16:21:35 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 31548 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 16:21:35 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 16:21:35 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 16:21:38 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 16:21:38 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 16:21:38 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 16:21:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 16:21:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 16:21:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 16:21:41 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 16:21:41 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 16:21:41 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 16:21:41 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:21:41 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:21:42 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 16:21:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 16:21:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:21:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:21:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:21:44 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 16:21:45 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 16:21:45 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 16:21:45 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 16:21:45 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 16:21:45 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 16:21:47 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 16:21:47 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 16:21:47 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 16:21:47 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 16:21:47 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.437 seconds (JVM running for 13.417)
2024-06-11 16:21:47 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 16:21:47 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 16:21:48 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 16:21:48 [RMI TCP Connection(1)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 16:25:36 [Thread-32] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 16:25:36 [Thread-32] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 16:25:36 [Thread-32] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 16:25:36 [Thread-32] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 16:25:36 [Thread-32] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 16:25:36 [Thread-32] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 16:25:36 [Thread-32] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 16:27:44 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 31548 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 16:27:44 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 16:27:48 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 16:27:48 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 16:27:48 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 16:27:48 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 16:27:48 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 16:27:48 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 16:27:48 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 16:27:54 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 16:27:54 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 16:27:54 [redisson-netty-11-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:27:54 [redisson-netty-11-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:27:55 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 16:27:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 16:27:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:27:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:27:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:27:57 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 16:27:59 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 16:27:59 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 16:27:59 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 16:27:59 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 16:27:59 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 16:28:02 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 16:28:02 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 17.443 seconds (JVM running for 387.935)
2024-06-11 16:28:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 16:28:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 16:28:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 16:30:19 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 16:30:28 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 28964 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 16:30:28 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 16:30:28 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 16:30:31 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 16:30:32 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 16:30:32 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 16:30:32 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 16:30:32 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 16:30:32 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 16:30:35 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 16:30:35 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 16:30:35 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 16:30:36 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:30:36 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:30:37 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 16:30:38 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 16:30:38 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:30:38 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:30:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:30:39 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 16:30:41 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 16:30:41 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 16:30:41 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 16:30:41 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 16:30:41 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 16:30:44 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 16:30:44 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 16:30:44 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 16:30:44 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 16:30:44 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.878 seconds (JVM running for 18.672)
2024-06-11 16:30:44 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 16:30:44 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 16:30:44 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 16:30:45 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 16:31:04 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI4RFVXS1J3dVpaNkR2bEpoUTZwb3BuU291MG9yU0dLbyIsInVzZXJJZCI6IjEifQ.14MUH3SC02Azy4f-UT1bGWggq3bU_tsm4hOLtSw03Po
2024-06-11 16:31:04 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 16:31:10 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJLUExhalkyN3hVWmZEWExiaVBvYzk5QUFEd293YnFPeiIsInVzZXJJZCI6IjEifQ.GEsQMEz_7ZQ9y6wJIWIOHcLQgJtMV7PwIzGY-9Q64XM
2024-06-11 16:31:10 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-11 16:33:32 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 16:33:32 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 16:33:32 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 16:33:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 16:33:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 16:33:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 16:33:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 16:33:36 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 32244 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 16:33:36 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 16:33:36 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 16:33:39 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 16:33:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 16:33:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 16:33:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 16:33:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 16:33:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 16:33:41 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 16:33:42 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 16:33:42 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 16:33:42 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:33:42 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:33:43 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 16:33:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 16:33:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:33:43 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:33:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:33:45 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 16:33:46 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 16:33:46 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 16:33:46 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 16:33:46 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 16:33:46 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 16:33:49 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 16:33:49 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 16:33:49 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 16:33:49 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 16:33:49 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 13.132 seconds (JVM running for 14.23)
2024-06-11 16:33:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 16:33:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 16:33:49 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 16:33:50 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 16:47:33 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJLUExhalkyN3hVWmZEWExiaVBvYzk5QUFEd293YnFPeiIsInVzZXJJZCI6IjEifQ.GEsQMEz_7ZQ9y6wJIWIOHcLQgJtMV7PwIzGY-9Q64XM
2024-06-11 16:47:33 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-11 16:47:39 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiRkpzVHh2dUxyZm90cWtUOHRLcjdVdjhQaUxTY2hCN1YiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.c4EtygdKE0v-5quL05_HDM_T9_3lSBzCjT9VHq2X9Uw
2024-06-11 16:47:39 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[qq][Success][登录成功]
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 16:50:27 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 16:50:33 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 27804 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 16:50:33 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 16:50:33 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 16:50:36 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 16:50:36 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 16:50:36 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 16:50:36 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 16:50:36 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 16:50:36 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 16:50:38 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 16:50:39 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 16:50:39 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 16:50:39 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:50:39 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 16:50:41 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 16:50:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 16:50:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:50:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:50:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 16:50:46 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 16:50:48 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 16:50:48 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 16:50:48 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 16:50:48 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 16:50:49 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 16:50:54 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 16:50:54 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 16:50:54 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 16:50:54 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 16:50:54 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 22.031 seconds (JVM running for 23.188)
2024-06-11 16:50:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 16:50:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 16:50:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 16:50:56 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 17:21:39 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 17:21:39 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 17:21:39 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 17:21:40 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 17:21:40 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 17:21:40 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 17:21:40 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 17:21:45 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11692 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 17:21:45 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 17:21:45 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 17:21:48 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 17:21:48 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 17:21:48 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 17:21:49 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 17:21:49 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 17:21:49 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 17:21:51 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 17:21:51 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 17:21:51 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 17:21:52 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 17:21:52 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 17:21:52 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 17:21:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 17:21:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 17:21:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 17:21:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 17:21:54 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 17:21:55 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 17:21:55 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 17:21:55 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 17:21:56 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 17:21:56 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 17:21:58 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 17:21:58 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 17:21:58 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 17:21:58 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 17:21:58 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.675 seconds (JVM running for 13.767)
2024-06-11 17:21:58 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 17:21:58 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 17:21:58 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 17:21:59 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 18:21:41 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ2SUhycm5BUlFWR1NpTndQa2pOR3l2T1dURjBsZkt5bCIsInVzZXJJZCI6IjEifQ.vlU-o0el1P5_dGsqcYe5RgW19FSRfEKfK8PpHoRvuwY
2024-06-11 18:21:41 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-11 18:21:45 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiSEJEcnNCd2xZbXc0Y0liVVBySGpEVGhEdUJWR3h5cGMiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.IwASbTygBlx3tLQMWZ4OsDHIuXsnXy8bmwZsOaLmWy4
2024-06-11 18:21:45 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Success][登录成功]
2024-06-11 18:22:04 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:a1da84675791783d43827bf94ed7f0e1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjphMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSIsInJuU3RyIjoiSEJEcnNCd2xZbXc0Y0liVVBySGpEVGhEdUJWR3h5cGMiLCJ1c2VySWQiOiJhMWRhODQ2NzU3OTE3ODNkNDM4MjdiZjk0ZWQ3ZjBlMSJ9.IwASbTygBlx3tLQMWZ4OsDHIuXsnXy8bmwZsOaLmWy4
2024-06-11 18:22:04 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[qq][Logout][退出成功]
2024-06-11 18:22:12 [XNIO-1 task-1] INFO  c.dl.system.service.SysLoginService - 登录用户:yi 不存在.
2024-06-11 18:22:21 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJucFNFdWdUNnRRZGp0T2F6dzVkYkRWTkN4WHRxMFNibiIsInVzZXJJZCI6IjIifQ.ORD5Biv0DAKSuPePLfmOtb4AdBMoYFhrauytUEXVtQQ
2024-06-11 18:22:21 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-11 18:22:24 [Thread-33] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 18:22:24 [Thread-33] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 18:22:24 [Thread-33] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 18:22:24 [Thread-33] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 18:22:24 [Thread-33] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 18:22:24 [Thread-33] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 18:22:24 [Thread-33] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 18:22:25 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11692 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 18:22:25 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 18:22:26 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 18:22:26 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 18:22:26 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 18:22:26 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 18:22:26 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 18:22:26 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 18:22:28 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 18:22:28 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 18:22:28 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 18:22:28 [redisson-netty-5-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:22:28 [redisson-netty-5-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:22:29 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 18:22:29 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 18:22:29 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 18:22:29 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 18:22:30 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11692 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 18:22:30 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 18:22:33 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 18:22:33 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 18:22:33 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 18:22:33 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 18:22:33 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 18:22:33 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 18:22:36 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 18:22:37 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 18:22:37 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 18:22:37 [redisson-netty-8-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:22:37 [redisson-netty-8-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:22:38 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 18:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 18:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:22:40 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:22:40 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 18:22:41 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 18:22:41 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 18:22:42 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 18:22:42 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 18:22:42 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 18:22:45 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 18:22:45 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 15.074 seconds (JVM running for 3661.534)
2024-06-11 18:22:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 18:22:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 18:22:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 18:24:45 [Thread-46] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 18:24:45 [Thread-46] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 18:24:46 [Thread-46] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 18:24:46 [Thread-46] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 18:24:46 [Thread-46] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 18:24:46 [Thread-46] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 18:24:47 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11692 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 18:24:47 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 18:24:52 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 11692 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 18:24:52 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 18:24:54 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 18:24:54 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 18:24:54 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 18:24:54 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 18:24:54 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 18:24:54 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 18:24:58 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 18:24:58 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 18:24:58 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 18:24:58 [redisson-netty-11-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:24:58 [redisson-netty-11-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:25:01 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 18:25:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 18:25:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:25:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:25:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:25:02 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 18:25:04 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 18:25:04 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 18:25:04 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 18:25:04 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 18:25:04 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 18:25:07 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 18:25:07 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 15.092 seconds (JVM running for 3803.009)
2024-06-11 18:25:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 18:25:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 18:25:07 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 18:25:38 [XNIO-3 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-11 18:26:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-11 18:26:37 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 1284 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-11 18:26:37 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-11 18:26:37 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-11 18:26:39 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-11 18:26:39 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-11 18:26:39 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-11 18:26:40 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-11 18:26:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-11 18:26:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-11 18:26:42 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-11 18:26:42 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-11 18:26:42 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-11 18:26:43 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:26:43 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-11 18:26:44 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-11 18:26:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-11 18:26:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:26:44 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:26:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-11 18:26:46 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-11 18:26:47 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-11 18:26:47 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-11 18:26:47 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-11 18:26:47 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-11 18:26:47 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-11 18:26:50 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-11 18:26:50 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-11 18:26:50 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-11 18:26:50 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-11 18:26:51 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 14.348 seconds (JVM running for 15.385)
2024-06-11 18:26:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-11 18:26:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-11 18:26:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-11 18:26:52 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'