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
2024-06-13 09:08:03 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 09:08:03 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 09:08:03 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 09:08:04 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 09:08:04 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 09:08:04 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 09:08:04 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 09:08:33 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 26488 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 09:08:33 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 09:08:33 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 09:08:47 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 09:08:47 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 09:08:47 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 09:08:51 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 09:08:51 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 09:08:51 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 09:08:55 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 09:08:56 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 09:08:56 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 09:08: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-13 09:08: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-13 09:08:57 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 09:08:57 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 09:08:57 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 09:08:57 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 09:08:58 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 09:08:59 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 09:09:00 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 09:09:00 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 09:09:00 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 09:09:00 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 09:09:01 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 09:09:03 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 09:09:03 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 09:09:03 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 09:09:03 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 09:09:03 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 30.171 seconds (JVM running for 35.306)
2024-06-13 09:09:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 09:09:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 09:09:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 09:09:04 [RMI TCP Connection(6)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 09:09:23 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJDR1lMUWYwYzNrUU4zY2pEV0pxeXVEcXJYMDY3a0g4MCIsInVzZXJJZCI6IjEifQ.oGZw66dDlJQ2hoGDX4ycF6imFZ0jQF7oYSmQLYMvGhk
2024-06-13 09:09:23 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJvc2dDalpLYjFPc1FnSFY4elJzUWVtSWhpNGEybVE5MiIsInVzZXJJZCI6IjEifQ.WMvzimFkT-wMEly6taXqZ-xFxHRj-3Cg9RzIksyUi9E
2024-06-13 09:09:23 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 09:11:24 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0MVJrMU5oTGc5Wlk2THlKeFJhQnBQVzNOTFVzN2V6TyIsInVzZXJJZCI6IjEifQ.OdkFm0idIqK4_MXY7Y-2K0h0OKQsaPZ5NHHfL9lTdvU
2024-06-13 09:11:24 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJtUnRMTWM2VDU2ek1VOTVnWGJzdTBpV0haVk82Tm9lTCIsInVzZXJJZCI6IjEifQ.q2e1xqGZ12wZQpHZeLvgWJTzE40zy4La2HHNOlQdbno
2024-06-13 09:11:24 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 09:12:57 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJDR1lMUWYwYzNrUU4zY2pEV0pxeXVEcXJYMDY3a0g4MCIsInVzZXJJZCI6IjEifQ.oGZw66dDlJQ2hoGDX4ycF6imFZ0jQF7oYSmQLYMvGhk
2024-06-13 09:12:57 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-13 09:13:06 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJOSVVvRWVxZWhCTmtVQUE2VGkybFZBWHd0alUwWUNibSIsInVzZXJJZCI6IjIifQ.gXpK7gBC9cz4AsTb9yHZaPWsCZ9fL9Jl1UO4VbJ82To
2024-06-13 09:13:06 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 09:18:47 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJOSVVvRWVxZWhCTmtVQUE2VGkybFZBWHd0alUwWUNibSIsInVzZXJJZCI6IjIifQ.gXpK7gBC9cz4AsTb9yHZaPWsCZ9fL9Jl1UO4VbJ82To
2024-06-13 09:18:47 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-13 09:18:51 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJtUG14ZXMzRlhSMVFMeUd5cWNpN0RlZHZaT3RRZEJGQSIsInVzZXJJZCI6IjEifQ.dbA32VqpmyFzh4oQJHdVsXDgpqqHltSrOJRFdH11_3k
2024-06-13 09:18:51 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 09:30:15 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0MVJrMU5oTGc5Wlk2THlKeFJhQnBQVzNOTFVzN2V6TyIsInVzZXJJZCI6IjEifQ.OdkFm0idIqK4_MXY7Y-2K0h0OKQsaPZ5NHHfL9lTdvU
2024-06-13 09:30:15 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 09:30:19 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ6SGJRNzJXYUEwenk3MWFUcjBBdm5rSVBicDRuZXRRbiIsInVzZXJJZCI6IjIifQ.4n0wtfGDRZ-vvzkF4lWz1_LbFZ52Hv4-aiXS7zDLIa0
2024-06-13 09:30:19 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 09:36:49 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ6SGJRNzJXYUEwenk3MWFUcjBBdm5rSVBicDRuZXRRbiIsInVzZXJJZCI6IjIifQ.4n0wtfGDRZ-vvzkF4lWz1_LbFZ52Hv4-aiXS7zDLIa0
2024-06-13 09:36:49 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 09:36:52 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0QWNuaVIxajdHb0tGeGFnckM1STBnUVVzZzAxbUdxZyIsInVzZXJJZCI6IjEifQ.EE1bTQ1bT3rxab8OFas7jNBq78yZ0Qb7_Tz390a85LI
2024-06-13 09:36:52 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 09:46:39 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0QWNuaVIxajdHb0tGeGFnckM1STBnUVVzZzAxbUdxZyIsInVzZXJJZCI6IjEifQ.EE1bTQ1bT3rxab8OFas7jNBq78yZ0Qb7_Tz390a85LI
2024-06-13 09:46:39 [schedule-pool-7] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 09:46:41 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJYM2JaZVBlMjJ5Q0k4dEVtSmZVR0M1Q1ZlY1JyMVRJbiIsInVzZXJJZCI6IjEifQ.q5PXGxGcyAlcErevu0ai-opr_Dm5R43RUF34d7sijO0
2024-06-13 09:46:41 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 09:46:45 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJYM2JaZVBlMjJ5Q0k4dEVtSmZVR0M1Q1ZlY1JyMVRJbiIsInVzZXJJZCI6IjEifQ.q5PXGxGcyAlcErevu0ai-opr_Dm5R43RUF34d7sijO0
2024-06-13 09:46:45 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 09:46:48 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJrbHJFRVJ0WHR5VGswSzhqN0FXZFlRdEltTXB1bWxyWCIsInVzZXJJZCI6IjIifQ.nVyV5YJIul3yactbp36mfsKts06baFoftdOJ4NQfcec
2024-06-13 09:46:48 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 10:37:17 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0TjhjT1RUUlpEalFxc1ZWaHZXZmhrQk5xNTFqdVNZMiIsInVzZXJJZCI6IjEifQ.5XGq6cOuWI22CTPj7hZfmYheNWmMJD4FNV-LJyNxuJ4
2024-06-13 10:37:17 [schedule-pool-9] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 11:14:56 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ6bzJJbjdGMFNaOHFLM0FDVmNhemU5SjV2VUZ5M282eCIsInVzZXJJZCI6IjEifQ.raEGVE_2aJcbkF4DVHGYGXtd1bO0AaMlSFx9o_sZrKA
2024-06-13 11:14:56 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJyMklWd1dhV2Rpd2J3U3liUm1Sa0N6ZDJUaXhuWDhyNSIsInVzZXJJZCI6IjEifQ.UljhthLnZO_G14jv8aDof-0WYZjsDquwcqlAu3zjBPs
2024-06-13 11:14:56 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 11:15:01 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ6bzJJbjdGMFNaOHFLM0FDVmNhemU5SjV2VUZ5M282eCIsInVzZXJJZCI6IjEifQ.raEGVE_2aJcbkF4DVHGYGXtd1bO0AaMlSFx9o_sZrKA
2024-06-13 11:15:01 [schedule-pool-10] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 11:15:04 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJwVXVZU1BrYlZzVE1XMFlFcWNySmViTXd1UWVzMzB6MCIsInVzZXJJZCI6IjIifQ.JEC2TZSXnqAjBkDYObGea2b1KmOlQOree5HMjxuYad8
2024-06-13 11:15:04 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 11:23:19 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJwVXVZU1BrYlZzVE1XMFlFcWNySmViTXd1UWVzMzB6MCIsInVzZXJJZCI6IjIifQ.JEC2TZSXnqAjBkDYObGea2b1KmOlQOree5HMjxuYad8
2024-06-13 11:23:19 [schedule-pool-11] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 11:23:23 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJlSTk4ZGxsVUNjcHpibm1PZUthTm1sS1hobGFoTTU0SSIsInVzZXJJZCI6IjEifQ.Txg3DL2n_C3NDdB14tMRG2Ea3Vws6XOm9RuOStfNNkY
2024-06-13 11:23:23 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 11:25:33 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJlSTk4ZGxsVUNjcHpibm1PZUthTm1sS1hobGFoTTU0SSIsInVzZXJJZCI6IjEifQ.Txg3DL2n_C3NDdB14tMRG2Ea3Vws6XOm9RuOStfNNkY
2024-06-13 11:25:33 [schedule-pool-13] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 11:25:38 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJCVHlDcmdrNjZpWG9BNGZibWJUNXlsSlJhZnh3S0lnZiIsInVzZXJJZCI6IjIifQ.G1IRSRvXjJZXNydybMHi9HKnAOyh9hYr6V8J8bfUhbE
2024-06-13 11:25:38 [schedule-pool-14] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 11:26:36 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 11:27:04 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 2740 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 11:27:04 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 11:27:04 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 11:27:12 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 11:27:12 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 11:27:12 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 11:27:13 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 11:27:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 11:27:13 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 11:27:16 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 11:27:16 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 11:27:16 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 11:27:16 [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-13 11:27:16 [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-13 11:27:17 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 11:27:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 11:27:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:27:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:27:18 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:27:19 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 11:27:20 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 11:27:20 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 11:27:20 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 11:27:20 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 11:27:20 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 11:27:22 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 11:27:22 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 11:27:22 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 11:27:22 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 11:27:22 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 19.281 seconds (JVM running for 23.212)
2024-06-13 11:27:23 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 11:27:23 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 11:27:23 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 11:27:23 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 11:28:22 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJCVHlDcmdrNjZpWG9BNGZibWJUNXlsSlJhZnh3S0lnZiIsInVzZXJJZCI6IjIifQ.G1IRSRvXjJZXNydybMHi9HKnAOyh9hYr6V8J8bfUhbE
2024-06-13 11:28:22 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 11:28:27 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJWR2o1aGVSRGI3YmtodzJWbEtDYW50TGtwWTVvWElqYSIsInVzZXJJZCI6IjEifQ.i2in4i1bzCdkWMp7QZ21d7BL8uuOV9lX05E__UdBlzU
2024-06-13 11:28:27 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 11:29:06 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJWR2o1aGVSRGI3YmtodzJWbEtDYW50TGtwWTVvWElqYSIsInVzZXJJZCI6IjEifQ.i2in4i1bzCdkWMp7QZ21d7BL8uuOV9lX05E__UdBlzU
2024-06-13 11:29:06 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 11:29:09 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJvM29URTdnaWhoc2p5dG1oMmVCa1lsWFcyaWdJN3ZYMSIsInVzZXJJZCI6IjIifQ.QSup5drM44uiUAcQ3Ecq3pKhVjiozKSgoqgCYeAQ7EU
2024-06-13 11:29:09 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 11:32:58 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI0TjhjT1RUUlpEalFxc1ZWaHZXZmhrQk5xNTFqdVNZMiIsInVzZXJJZCI6IjEifQ.5XGq6cOuWI22CTPj7hZfmYheNWmMJD4FNV-LJyNxuJ4
2024-06-13 11:32:58 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-13 11:33:20 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJaNzBhSjJnMjB6bTdQakdyaGtFWmtoaVNHMXNHUmY4NSIsInVzZXJJZCI6IjIifQ.ddULUtuh6aK8phKrP3tR93AAr5rDfGUj4CiUyAOSgBQ
2024-06-13 11:33:20 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 11:34:07 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJvM29URTdnaWhoc2p5dG1oMmVCa1lsWFcyaWdJN3ZYMSIsInVzZXJJZCI6IjIifQ.QSup5drM44uiUAcQ3Ecq3pKhVjiozKSgoqgCYeAQ7EU
2024-06-13 11:34:07 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 11:34:10 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJhUmloRkNINzBQaFlYem01dDR6a1k4VjdRMG9VbElFdiIsInVzZXJJZCI6IjEifQ.bcHCfVoxYM6CwA2ZFhxv5alRW2TjTKAjx2A29RmaloQ
2024-06-13 11:34:11 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 11:37:32 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJhUmloRkNINzBQaFlYem01dDR6a1k4VjdRMG9VbElFdiIsInVzZXJJZCI6IjEifQ.bcHCfVoxYM6CwA2ZFhxv5alRW2TjTKAjx2A29RmaloQ
2024-06-13 11:37:32 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 11:37:38 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJEU1VhQzdoR0hJSGkySENPU2xiS3hlRVBBanIybllXaCIsInVzZXJJZCI6IjIifQ.M9MMk5tgQ8T9K5sjlq1iwywz3__itfYSLg8u16NVlxU
2024-06-13 11:37:38 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 11:43:28 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 11:43:35 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 19344 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 11:43:35 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 11:43:35 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 11:43:37 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 11:43:37 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 11:43:37 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 11:43:38 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 11:43:38 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 11:43:38 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 11:43:40 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 11:43:40 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 11:43:40 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 11:43:40 [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-13 11:43:40 [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-13 11:43:41 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 11:43:41 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 11:43:41 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:43:41 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:43:42 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 11:43:43 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 11:43:44 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 11:43:44 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 11:43:44 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 11:43:44 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 11:43:44 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 11:43:46 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 11:43:46 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 11:43:46 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 11:43:46 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 11:43:46 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.258 seconds (JVM running for 13.231)
2024-06-13 11:43:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 11:43:46 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 11:43:47 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 11:43:47 [RMI TCP Connection(1)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 12:01:20 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJaNzBhSjJnMjB6bTdQakdyaGtFWmtoaVNHMXNHUmY4NSIsInVzZXJJZCI6IjIifQ.ddULUtuh6aK8phKrP3tR93AAr5rDfGUj4CiUyAOSgBQ
2024-06-13 12:01:20 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-13 12:01:22 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJJdTl5MmlhYzFwN3daRGxhbjNQQm5jM3lIMDhhUGhFeCIsInVzZXJJZCI6IjEifQ.Ah-l2o8SxoE7WbfUGF6CoxeSaX-7OIBBdhyqt8LpUTs
2024-06-13 12:01:22 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 12:01:28 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJEU1VhQzdoR0hJSGkySENPU2xiS3hlRVBBanIybllXaCIsInVzZXJJZCI6IjIifQ.M9MMk5tgQ8T9K5sjlq1iwywz3__itfYSLg8u16NVlxU
2024-06-13 12:01:28 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 12:01:34 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJpVHNSYjJiaXlhaHJ0bWhwS3BFb0tUTEtoZG52aGtwdCIsInVzZXJJZCI6IjEifQ.PlCQPWBq_-TQhTFx_iQzgDtqHe7YjZgt9oxHSGZTc7E
2024-06-13 12:01:34 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 12:05:38 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJpVHNSYjJiaXlhaHJ0bWhwS3BFb0tUTEtoZG52aGtwdCIsInVzZXJJZCI6IjEifQ.PlCQPWBq_-TQhTFx_iQzgDtqHe7YjZgt9oxHSGZTc7E
2024-06-13 12:05:38 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 12:05:41 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ5SFBaZ0ZZOE5kaTlVdDlIRWpMa3RUSFpRMHZRQTNNViIsInVzZXJJZCI6IjIifQ.LQNC1iI-BNc5vKhPIkevYaYOSzzQyQU3-MYh0nhMQYY
2024-06-13 12:05:41 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 12:06:22 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ5SFBaZ0ZZOE5kaTlVdDlIRWpMa3RUSFpRMHZRQTNNViIsInVzZXJJZCI6IjIifQ.LQNC1iI-BNc5vKhPIkevYaYOSzzQyQU3-MYh0nhMQYY
2024-06-13 12:06:22 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 12:06:24 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJkQktSanRjNVlNdm04VTltYU1uam5DYjZaaE9jbVJpNCIsInVzZXJJZCI6IjEifQ.62vBk3uNcUf9jyy2Z7BJ248oeae_1W-9AZivBQI1y4k
2024-06-13 12:06:24 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 13:32:56 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI2SmpSQ2w0Mmt2dW9XTzAwYm5iT1hSOWFSdHdGN1FtNSIsInVzZXJJZCI6IjEifQ.AVl-v1sNcQqBI3vamAQjazKTWtnhFY1tfR2bWKRa32A
2024-06-13 13:32:56 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJqSENxREFHMUYyZ1VTWmZid3NVcDZpdEZMVWdYTUlvWiIsInVzZXJJZCI6IjEifQ.nMP9rTF59aFToEfcDQ4pCnO3_98y93SfN317LoPcMXI
2024-06-13 13:32:56 [schedule-pool-7] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 13:33:08 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJaUmtqZWt4WldzM3EyeWxkTEg4M0dyTEpDdmthM0hMQiIsInVzZXJJZCI6IjEifQ.DY9occaLqxUJ0EOMZsqqejymxnmXpA4Wg1cIMeAswJM
2024-06-13 13:33:08 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJOalZnTzJCWmhheDZVU3J1OENacWtxbDJhT2N5ZHlFQiIsInVzZXJJZCI6IjEifQ.rQlibHoPGCnPsOmzbsyyZpIYEdX7Ec1ytuQuBSSXfgw
2024-06-13 13:33:08 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 13:35:33 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 13:35:39 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 21024 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 13:35:39 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 13:35:39 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 13:35:42 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 13:35:42 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 13:35:42 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 13:35:43 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 13:35:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 13:35:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 13:35:45 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 13:35:45 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 13:35:45 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 13:35:45 [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-13 13:35:45 [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-13 13:35:46 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 13:35:46 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 13:35:46 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:35:46 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:35:47 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:35:48 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 13:35:49 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 13:35:49 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 13:35:49 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 13:35:49 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 13:35:49 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 13:35:51 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 13:35:51 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 13:35:51 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 13:35:51 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 13:35:51 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.504 seconds (JVM running for 13.523)
2024-06-13 13:35:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 13:35:52 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 13:35:52 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 13:35:52 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 13:57:33 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 13:57:33 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 13:57:33 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 13:57:34 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 13:57:34 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 13:57:34 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 13:57:34 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 13:57:46 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 17396 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 13:57:46 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 13:57:46 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 13:57:50 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 13:57:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 13:57:50 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 13:57:50 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 13:57:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 13:57:50 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 13:57:53 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 13:57:54 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 13:57:54 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 13:57:54 [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-13 13:57:54 [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-13 13:57:55 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 13:57:55 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 13:57:55 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:57:55 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:57:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 13:57:57 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 13:57:58 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 13:57:59 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 13:57:59 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 13:57:59 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 13:57:59 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 13:58:02 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 13:58:02 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 13:58:02 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 13:58:02 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 13:58:02 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.407 seconds (JVM running for 18.695)
2024-06-13 13:58:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 13:58:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 13:58:02 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 13:58:03 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 14:01:22 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 14:01:29 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 1820 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 14:01:29 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 14:01:29 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 14:01:31 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 14:01:31 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 14:01:31 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 14:01:32 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 14:01:32 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 14:01:32 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 14:01:34 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 14:01:34 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 14:01:34 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 14:01:34 [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-13 14:01:34 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 14:01:35 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 14:01:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 14:01:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:01:35 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:01:36 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:01:36 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 14:01:37 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 14:01:38 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 14:01:38 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 14:01:38 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 14:01:38 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 14:01:40 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 14:01:40 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 14:01:40 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 14:01:40 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 14:01:40 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.324 seconds (JVM running for 13.432)
2024-06-13 14:01:40 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 14:01:40 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 14:01:41 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 14:01:41 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 14:04:34 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 14:04:40 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 15608 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 14:04:40 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 14:04:40 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 14:04:43 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 14:04:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 14:04:43 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 14:04:44 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 14:04:44 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 14:04:44 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 14:04:47 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 14:04:47 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 14:04:47 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 14:04:48 [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-13 14:04:48 [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-13 14:04:50 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 14:04:51 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 14:04:51 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:04:51 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:04:53 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:04:55 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 14:04:58 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 14:04:58 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 14:04:58 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 14:04:59 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 14:04:59 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 14:05:05 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 14:05:05 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 14:05:05 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 14:05:05 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 14:05:05 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 25.547 seconds (JVM running for 26.623)
2024-06-13 14:05:06 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 14:05:06 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 14:05:06 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 14:05:07 [RMI TCP Connection(1)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 14:11:08 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI2SmpSQ2w0Mmt2dW9XTzAwYm5iT1hSOWFSdHdGN1FtNSIsInVzZXJJZCI6IjEifQ.AVl-v1sNcQqBI3vamAQjazKTWtnhFY1tfR2bWKRa32A
2024-06-13 14:11:08 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:11:14 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJTNWxaUGlhRjV5MGV2dm15ZzVkbnZWdXRua2U3RXdTTiIsInVzZXJJZCI6IjIifQ.kJFFf02Fey_QJdclpSjh7omAuc9phpHjmPFQv6-gEGo
2024-06-13 14:11:14 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:18:27 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJaUmtqZWt4WldzM3EyeWxkTEg4M0dyTEpDdmthM0hMQiIsInVzZXJJZCI6IjEifQ.DY9occaLqxUJ0EOMZsqqejymxnmXpA4Wg1cIMeAswJM
2024-06-13 14:18:27 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-13 14:18:37 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJIcUc4OGxXdkIwOU5DYzVTcno4ckNpUldRYmJSZ0V4ciIsInVzZXJJZCI6IjIifQ.zi2mOznaZzMZjjlVHWwOCYulOhu2_iA5pPpLi04oqgw
2024-06-13 14:18:37 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 14:21:18 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJTNWxaUGlhRjV5MGV2dm15ZzVkbnZWdXRua2U3RXdTTiIsInVzZXJJZCI6IjIifQ.kJFFf02Fey_QJdclpSjh7omAuc9phpHjmPFQv6-gEGo
2024-06-13 14:21:18 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 14:21:20 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJjelhlR2xBNHlFN1BSaGY3Y091SzFETDNUTjBpTmJvSyIsInVzZXJJZCI6IjEifQ.1yBHi7eRMBQW099jiqF4u6YoFO4YxTS7D9ymIJ_-wkA
2024-06-13 14:21:20 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 14:23:01 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJjelhlR2xBNHlFN1BSaGY3Y091SzFETDNUTjBpTmJvSyIsInVzZXJJZCI6IjEifQ.1yBHi7eRMBQW099jiqF4u6YoFO4YxTS7D9ymIJ_-wkA
2024-06-13 14:23:01 [schedule-pool-7] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:23:04 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJGQ1B0ZEJZOHp3UlNjRTQ1WXdaNTR6dmZHNE5Scm1QZiIsInVzZXJJZCI6IjIifQ.5E9HarHAFeBnLxK-DEZy98vjQWybPwmFcAjpUvBiTJs
2024-06-13 14:23:04 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:26:21 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJIcUc4OGxXdkIwOU5DYzVTcno4ckNpUldRYmJSZ0V4ciIsInVzZXJJZCI6IjIifQ.zi2mOznaZzMZjjlVHWwOCYulOhu2_iA5pPpLi04oqgw
2024-06-13 14:26:21 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-13 14:26:27 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJtQURVUXFkbUNxRU14VG55bUl2RGlLejB0UUhpZjI5SSIsInVzZXJJZCI6IjIifQ.j25HXEaiiQCcG51RXFclN5064NJyV1Y3_l5OPplM5i8
2024-06-13 14:26:27 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 14:29:30 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJGQ1B0ZEJZOHp3UlNjRTQ1WXdaNTR6dmZHNE5Scm1QZiIsInVzZXJJZCI6IjIifQ.5E9HarHAFeBnLxK-DEZy98vjQWybPwmFcAjpUvBiTJs
2024-06-13 14:29:30 [schedule-pool-9] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 14:29:35 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJjVWtSQzJDTmhITGg1d1hPQ3Q4S2NSUmI5WUpVaXlNcSIsInVzZXJJZCI6IjEifQ.vftuTNgKGz0XH3Tt6laWoIgPvVZK9idf97z1dXbByXM
2024-06-13 14:29:35 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 14:30:13 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJjVWtSQzJDTmhITGg1d1hPQ3Q4S2NSUmI5WUpVaXlNcSIsInVzZXJJZCI6IjEifQ.vftuTNgKGz0XH3Tt6laWoIgPvVZK9idf97z1dXbByXM
2024-06-13 14:30:13 [schedule-pool-10] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:30:17 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJma2V0eThYdGlOWjNOakxteHJzSnU0RXQ4eFc5bzE4QyIsInVzZXJJZCI6IjIifQ.HkARaP8gmgQ7JqAWEgLpNDq1oKDNiQjDWO2MSYcp_2o
2024-06-13 14:30:17 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:30:53 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJma2V0eThYdGlOWjNOakxteHJzSnU0RXQ4eFc5bzE4QyIsInVzZXJJZCI6IjIifQ.HkARaP8gmgQ7JqAWEgLpNDq1oKDNiQjDWO2MSYcp_2o
2024-06-13 14:30:53 [schedule-pool-11] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 14:30:56 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJPWmFKWjRnQ1FTbnhRdXFReW4zTEhCZTRvUXZBWkVCRSIsInVzZXJJZCI6IjEifQ.WDS6WMRo0IK7CCQ5RE6XSA9QdeVGjGsPH63pEchNK3M
2024-06-13 14:30:57 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 14:31:27 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJPWmFKWjRnQ1FTbnhRdXFReW4zTEhCZTRvUXZBWkVCRSIsInVzZXJJZCI6IjEifQ.WDS6WMRo0IK7CCQ5RE6XSA9QdeVGjGsPH63pEchNK3M
2024-06-13 14:31:27 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:31:30 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJnSGg1d0d6NVEwUEFhUGtRbUJBcDBINEJwWTFWU2ZUZSIsInVzZXJJZCI6IjIifQ.fy9sJ51Kwqe3QP7c71W4EO3i0zGty3ST6znVQiwvy1U
2024-06-13 14:31:30 [schedule-pool-13] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:34:27 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJnSGg1d0d6NVEwUEFhUGtRbUJBcDBINEJwWTFWU2ZUZSIsInVzZXJJZCI6IjIifQ.fy9sJ51Kwqe3QP7c71W4EO3i0zGty3ST6znVQiwvy1U
2024-06-13 14:34:27 [schedule-pool-7] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 14:34:28 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJRWTBuZXV0bDA5QkNya0c0c241VnJBS1RhQ1JMNmRRcSIsInVzZXJJZCI6IjEifQ.govk6keK75GRV5vzRoOkAGaiuYEyM_vjMittQtY3Zg0
2024-06-13 14:34:28 [schedule-pool-14] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 14:36:55 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 14:37:01 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 26592 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 14:37:01 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 14:37:01 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 14:37:03 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 14:37:03 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 14:37:04 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 14:37:04 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 14:37:04 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 14:37:04 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 14:37:06 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 14:37:06 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 14:37:06 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 14:37:07 [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-13 14:37:07 [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-13 14:37:07 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 14:37:08 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 14:37:08 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:37:08 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:37:08 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:37:09 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 14:37:10 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 14:37:10 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 14:37:10 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 14:37:11 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 14:37:11 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 14:37:13 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 14:37:13 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 14:37:13 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 14:37:13 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 14:37:13 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.513 seconds (JVM running for 13.562)
2024-06-13 14:37:13 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 14:37:13 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 14:37:13 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 14:37:14 [RMI TCP Connection(7)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 14:38:16 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJRWTBuZXV0bDA5QkNya0c0c241VnJBS1RhQ1JMNmRRcSIsInVzZXJJZCI6IjEifQ.govk6keK75GRV5vzRoOkAGaiuYEyM_vjMittQtY3Zg0
2024-06-13 14:38:16 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:38:19 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ1c2MxcmxYZzRucWp5aXhFakIxOVBYeXJzejRIenRpeCIsInVzZXJJZCI6IjIifQ.GHP-7J1A-fXjc0nDB5Sd8YL8xgrs-blUyqmlHno6ZSg
2024-06-13 14:38:19 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:41:41 [XNIO-1 task-11] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJtQURVUXFkbUNxRU14VG55bUl2RGlLejB0UUhpZjI5SSIsInVzZXJJZCI6IjIifQ.j25HXEaiiQCcG51RXFclN5064NJyV1Y3_l5OPplM5i8
2024-06-13 14:41:41 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-13 14:43:29 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI1UnZtMlZncENiQlJqdUh2a3pGckVsVzRWT0NhU2NwRyIsInVzZXJJZCI6IjEifQ.vBqOkcuue3mGp-XIgcSRulXufSHo_KPeqIGhdS5pOYA
2024-06-13 14:43:29 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 14:47:39 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 14:47:44 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 4956 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 14:47:44 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 14:47:44 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 14:47:46 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 14:47:46 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 14:47:46 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 14:47:47 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 14:47:47 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 14:47:47 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 14:47:49 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 14:47:49 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 14:47:49 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 14:47:49 [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-13 14:47:49 [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-13 14:47:50 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 14:47:50 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 14:47:50 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:47:50 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:47:51 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:47:52 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 14:47:53 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 14:47:53 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 14:47:53 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 14:47:53 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 14:47:53 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 14:47:55 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 14:47:55 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 14:47:55 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 14:47:55 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 14:47:55 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 11.646 seconds (JVM running for 12.695)
2024-06-13 14:47:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 14:47:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 14:47:55 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 14:47:56 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 14:48:30 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ1c2MxcmxYZzRucWp5aXhFakIxOVBYeXJzejRIenRpeCIsInVzZXJJZCI6IjIifQ.GHP-7J1A-fXjc0nDB5Sd8YL8xgrs-blUyqmlHno6ZSg
2024-06-13 14:48:30 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 14:48:35 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIycXk1UTJqZnh4QWxFTGxndmJubldubTZpUWxSRlIxWCIsInVzZXJJZCI6IjEifQ.MJ92pIC7iNZd3PqUfLsrUE6LIU_BK2BLKa4ZVV_JG7c
2024-06-13 14:48:35 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 14:50:08 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIycXk1UTJqZnh4QWxFTGxndmJubldubTZpUWxSRlIxWCIsInVzZXJJZCI6IjEifQ.MJ92pIC7iNZd3PqUfLsrUE6LIU_BK2BLKa4ZVV_JG7c
2024-06-13 14:50:08 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 14:50:12 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJSMkZvZjUwaTc2Rk1jN3ZjUlZLTmJua1lIWTRMNklRQiIsInVzZXJJZCI6IjIifQ.9JeVnUs5xPWURseLdQOWX9udFowKeCN9cep_86d4Zu4
2024-06-13 14:50:12 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 14:53:00 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 14:53:00 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 14:53:00 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 14:53:01 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 14:53:01 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 14:53:01 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 14:53:01 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 14:53:06 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 15136 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 14:53:06 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 14:53:06 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 14:53:09 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 14:53:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 14:53:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 14:53:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 14:53:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 14:53:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 14:53:12 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 14:53:12 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 14:53:12 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 14:53:12 [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-13 14:53:12 [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-13 14:53:13 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 14:53:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 14:53:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:53:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:53:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 14:53:15 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 14:53:16 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 14:53:16 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 14:53:16 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 14:53:16 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 14:53:16 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 14:53:18 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 14:53:18 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 14:53:18 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 14:53:18 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 14:53:18 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.408 seconds (JVM running for 13.443)
2024-06-13 14:53:18 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 14:53:18 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 14:53:18 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 14:53:19 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 15:01:08 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 15:01:13 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 23420 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 15:01:13 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 15:01:13 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 15:01:15 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 15:01:16 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 15:01:16 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 15:01:16 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 15:01:16 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 15:01:16 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 15:01:18 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 15:01:18 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 15:01:18 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 15:01:19 [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-13 15:01:19 [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-13 15:01:19 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 15:01:20 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 15:01:20 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:01:20 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:01:20 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:01:21 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 15:01:22 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 15:01:22 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 15:01:22 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 15:01:22 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 15:01:22 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 15:01:25 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 15:01:25 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 15:01:25 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 15:01:25 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 15:01:25 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.504 seconds (JVM running for 13.474)
2024-06-13 15:01:25 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 15:01:25 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 15:01:26 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 15:01:26 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 15:08:50 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 15:08:50 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 15:08:50 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 15:08:50 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 15:08:50 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 15:08:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 15:08:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 15:08:56 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 27124 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 15:08:56 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 15:08:56 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 15:08:58 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 15:08:58 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 15:08:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 15:08:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 15:08:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 15:08:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 15:09:01 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 15:09:01 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 15:09:01 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 15:09:02 [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-13 15:09:02 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 15:09:02 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 15:09:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 15:09:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:09:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:09:03 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:09:04 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 15:09:05 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 15:09:05 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 15:09:05 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 15:09:05 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 15:09:05 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 15:09:07 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 15:09:07 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 15:09:08 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 15:09:08 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 15:09:08 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.103 seconds (JVM running for 13.32)
2024-06-13 15:09:08 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 15:09:08 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 15:09:08 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 15:09:08 [RMI TCP Connection(7)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 15:18:13 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 15:18:19 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 28440 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 15:18:19 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 15:18:20 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 15:18:23 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 15:18:23 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 15:18:23 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 15:18:24 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 15:18:24 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 15:18:24 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 15:18:27 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 15:18:27 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 15:18:27 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 15:18:27 [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-13 15:18:27 [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-13 15:18:28 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 15:18:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 15:18:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:18:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:18:30 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:18:30 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 15:18:31 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 15:18:32 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 15:18:32 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 15:18:32 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 15:18:32 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 15:18:34 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 15:18:34 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 15:18:34 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 15:18:34 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 15:18:35 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 15.6 seconds (JVM running for 16.599)
2024-06-13 15:18:35 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 15:18:35 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 15:18:35 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 15:18:36 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 15:22:18 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 15:22:30 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 33584 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 15:22:30 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 15:22:30 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 15:22:34 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 15:22:34 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 15:22:34 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 15:22:34 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 15:22:34 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 15:22:34 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 15:22:37 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 15:22:37 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 15:22:37 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 15:22:38 [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-13 15:22:38 [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-13 15:22:38 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 15:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 15:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:22:39 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:22:40 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 15:22:41 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 15:22:42 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 15:22:42 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 15:22:42 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 15:22:42 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 15:22:42 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 15:22:45 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 15:22:45 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 15:22:45 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 15:22:45 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 15:22:45 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 15.546 seconds (JVM running for 17.515)
2024-06-13 15:22:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 15:22:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 15:22:45 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 15:22:46 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 15:23:03 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJSMkZvZjUwaTc2Rk1jN3ZjUlZLTmJua1lIWTRMNklRQiIsInVzZXJJZCI6IjIifQ.9JeVnUs5xPWURseLdQOWX9udFowKeCN9cep_86d4Zu4
2024-06-13 15:23:04 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 15:23:08 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJXcU9jdjdiMHhYRUlDRzlraFFtc2pHUHpFMWNVd0RvOSIsInVzZXJJZCI6IjEifQ.RVGHYiJ0NuNp0rb6N5XZ3ycyQVsDdFJwOfVbos5z1cU
2024-06-13 15:23:09 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 15:23:28 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJXcU9jdjdiMHhYRUlDRzlraFFtc2pHUHpFMWNVd0RvOSIsInVzZXJJZCI6IjEifQ.RVGHYiJ0NuNp0rb6N5XZ3ycyQVsDdFJwOfVbos5z1cU
2024-06-13 15:23:28 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 15:23:31 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJuQUptVWpVeHJxcEQ5U1Z5aVZnVlpXd01UaExTNGJGSiIsInVzZXJJZCI6IjIifQ.UzsmcEUHh_uP9qMMf_Y4f8JKnR8ALLvIjkz3x9s2F48
2024-06-13 15:23:31 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 15:27:57 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJjQlFpUUYwU0F4WTZuVkFlblNaSW5GNGtGSjNyTDhUUyIsInVzZXJJZCI6IjIifQ.1s7C2RYG1VpwaQg_JZNg7Waw-2SrB_ZAv9k3iKAPw6s
2024-06-13 15:27:57 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 15:36:20 [XNIO-1 task-2] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJuQUptVWpVeHJxcEQ5U1Z5aVZnVlpXd01UaExTNGJGSiIsInVzZXJJZCI6IjIifQ.UzsmcEUHh_uP9qMMf_Y4f8JKnR8ALLvIjkz3x9s2F48
2024-06-13 15:36:20 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 15:51:14 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJJSzZYMmJRd3paSTAwTTE2eWtWVkE3YVB5WE96cWlESSIsInVzZXJJZCI6IjEifQ.dFe70809tBU_sr5k65OYkp6y8yzJ8kxt-5FgMx7DpQ4
2024-06-13 15:51:14 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 15:51:31 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJjQlFpUUYwU0F4WTZuVkFlblNaSW5GNGtGSjNyTDhUUyIsInVzZXJJZCI6IjIifQ.1s7C2RYG1VpwaQg_JZNg7Waw-2SrB_ZAv9k3iKAPw6s
2024-06-13 15:51:31 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Logout][退出成功]
2024-06-13 15:51:38 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJCdmxmMVJha016Y3dDV1hCQm1NQkZyM2ZiNkJabGpTZSIsInVzZXJJZCI6IjEifQ.D4mzOgTFY7Uo4MXApg4VEXr1v0mbMBs5P4cdS-pwVnk
2024-06-13 15:51:38 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJkcDFlUXR5UDBjYkJPWjJzamMyR0I3Qks4ZW9iNE5pcSIsInVzZXJJZCI6IjEifQ.Kxyg5ZNfTHn9mhbdpmYdArnMCQnQiqRgWb9wQuvHD0E
2024-06-13 15:51:38 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 15:52:24 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJJSzZYMmJRd3paSTAwTTE2eWtWVkE3YVB5WE96cWlESSIsInVzZXJJZCI6IjEifQ.dFe70809tBU_sr5k65OYkp6y8yzJ8kxt-5FgMx7DpQ4
2024-06-13 15:52:24 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 15:52:27 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiI1M2FRM2RTZ1RsajZmeWgxcnY5a2F3UXBlUzF6Zm5QTCIsInVzZXJJZCI6IjIifQ.TyOU583t-mhUr5gcoFoBtPvIW9GOtADREyvvn2cksHc
2024-06-13 15:52:27 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 15:59:11 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiI1M2FRM2RTZ1RsajZmeWgxcnY5a2F3UXBlUzF6Zm5QTCIsInVzZXJJZCI6IjIifQ.TyOU583t-mhUr5gcoFoBtPvIW9GOtADREyvvn2cksHc
2024-06-13 15:59:11 [schedule-pool-9] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 15:59:16 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ3U1pudWxhN01McGt1NVA4WG1OajN4OVhQNDlMb1pDaCIsInVzZXJJZCI6IjEifQ.5jphn8Vt5koVWbO0NPqzzYOCpmj14chUet5gWhb5jwE
2024-06-13 15:59:16 [schedule-pool-5] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 16:04:40 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ3U1pudWxhN01McGt1NVA4WG1OajN4OVhQNDlMb1pDaCIsInVzZXJJZCI6IjEifQ.5jphn8Vt5koVWbO0NPqzzYOCpmj14chUet5gWhb5jwE
2024-06-13 16:04:40 [schedule-pool-6] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 16:04:44 [XNIO-1 task-6] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJXZWJNSVBHVnUyNnhSNGM1NWhQaEIxRTR1bzUxWXViaSIsInVzZXJJZCI6IjIifQ.uZvoHf9OI6qbVXr6BxBtXIjrpH_7IQNDZn0pqyGoLRA
2024-06-13 16:04:44 [schedule-pool-12] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 16:07:05 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJXZWJNSVBHVnUyNnhSNGM1NWhQaEIxRTR1bzUxWXViaSIsInVzZXJJZCI6IjIifQ.uZvoHf9OI6qbVXr6BxBtXIjrpH_7IQNDZn0pqyGoLRA
2024-06-13 16:07:05 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 16:07:08 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJoZ29vWFhFR0RMQmF2Y3JNR1RwVXpheEFaOUpUYnZLWSIsInVzZXJJZCI6IjEifQ.7bWrIddyKE3zQ7bKLc3uTU_HcWTTMHLRKTwPLPhM1Y4
2024-06-13 16:07:08 [schedule-pool-13] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 16:08:05 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJoZ29vWFhFR0RMQmF2Y3JNR1RwVXpheEFaOUpUYnZLWSIsInVzZXJJZCI6IjEifQ.7bWrIddyKE3zQ7bKLc3uTU_HcWTTMHLRKTwPLPhM1Y4
2024-06-13 16:08:05 [schedule-pool-15] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 16:08:09 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJDUlpvbkt6YTFOUUpYRXlFTWQ0SFBCVWtoZEpLNU1sVyIsInVzZXJJZCI6IjIifQ.2zSM4G6UppkZ9iRmh6lD2fHlSvzBnTibb9wVV3pFRtE
2024-06-13 16:08:09 [schedule-pool-8] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 16:54:24 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJFUE91dER1T1dxMEJIUXBQelZWSVpIYmZEWDZRQWh2YiIsInVzZXJJZCI6IjEifQ._Smj0ST4GZYT3m2JUCSfHuEv32gMPWkegk6z5FXn5sU
2024-06-13 16:54:24 [schedule-pool-16] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 16:54:30 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJFUE91dER1T1dxMEJIUXBQelZWSVpIYmZEWDZRQWh2YiIsInVzZXJJZCI6IjEifQ._Smj0ST4GZYT3m2JUCSfHuEv32gMPWkegk6z5FXn5sU
2024-06-13 16:54:30 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 16:54:35 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJlTlNqam9OTzdPVUJMd05jeUhNcG5YaDRHSm9xYWNoYiIsInVzZXJJZCI6IjIifQ.uIkCPlHe69D1KoFIgrMsV5o2X5-I-J1a_qcFmjIZUno
2024-06-13 16:54:35 [schedule-pool-17] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:13:06 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:13:17 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 22956 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:13:17 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:13:17 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:13:21 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:13:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:13:21 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:13:21 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:13:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:13:21 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:13:24 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:13:25 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:13:25 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:13:25 [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-13 17:13: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-13 17:13:26 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:13:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:13:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:13:26 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:13:27 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:13:28 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:13:29 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:13:30 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:13:30 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:13:30 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:13:30 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:13:32 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:13:32 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:13:32 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:13:32 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:13:32 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 16.083 seconds (JVM running for 18.042)
2024-06-13 17:13:33 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:13:33 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:13:33 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:13:34 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:15:21 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJlTlNqam9OTzdPVUJMd05jeUhNcG5YaDRHSm9xYWNoYiIsInVzZXJJZCI6IjIifQ.uIkCPlHe69D1KoFIgrMsV5o2X5-I-J1a_qcFmjIZUno
2024-06-13 17:15:21 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 17:15:27 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIwNkpFNWZOTENtVlF5blZpRDZ1Z0ptbkxPVXV1ZGc4eCIsInVzZXJJZCI6IjEifQ.5zT68OBM5ji9x0Usk0iZq5FEyNXi1ZWf26nreqs8Tos
2024-06-13 17:15:27 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 17:15:42 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiIwNkpFNWZOTENtVlF5blZpRDZ1Z0ptbkxPVXV1ZGc4eCIsInVzZXJJZCI6IjEifQ.5zT68OBM5ji9x0Usk0iZq5FEyNXi1ZWf26nreqs8Tos
2024-06-13 17:15:42 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 17:15:45 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJQbHBJdUpPeDY2SjB5Z3QwcThqalMzWWVvdzZibU9obCIsInVzZXJJZCI6IjIifQ._SNy_L6mD6WhK4LOCwlauDFmbytU_w_Uwzk8bNwTS8o
2024-06-13 17:15:45 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:16:29 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:16:37 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 18888 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:16:37 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:16:37 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:16:41 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:16:42 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:16:42 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:16:43 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:16:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:16:43 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:16:47 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:16:48 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:16:48 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:16:49 [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-13 17:16:49 [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-13 17:16:50 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:16:52 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:16:52 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:16:52 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:16:54 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:16:55 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:16:58 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:16:58 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:16:58 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:16:58 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:16:59 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:17:05 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:17:05 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:17:05 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:17:05 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:17:05 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 28.506 seconds (JVM running for 30.622)
2024-06-13 17:17:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:17:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:17:06 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:17:06 [RMI TCP Connection(6)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:19:09 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI5WDR0M1dmUEQwcGgwc3FYMm1VQXRKZmxTZDJCUzFJViIsInVzZXJJZCI6IjEifQ.mzwQqO_nMKAGpQ2RLLNO0NeVKcNWP81rvYZHjEkRwvM
2024-06-13 17:19:09 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Success][登录成功]
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:19:51 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:19:58 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 30224 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:19:58 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:19:58 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:20:07 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:20:07 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:20:07 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:20:08 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:20:08 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:20:08 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:20:11 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:20:11 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:20:11 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:20:11 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 17:20:11 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 17:20:12 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:20:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:20:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:20:13 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:20:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:20:14 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:20:15 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:20:16 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:20:16 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:20:16 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:20:16 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:20:18 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:20:18 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:20:18 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:20:18 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:20:19 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 21.173 seconds (JVM running for 23.453)
2024-06-13 17:20:19 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:20:19 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:20:19 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:20:19 [RMI TCP Connection(9)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:20:52 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJQbHBJdUpPeDY2SjB5Z3QwcThqalMzWWVvdzZibU9obCIsInVzZXJJZCI6IjIifQ._SNy_L6mD6WhK4LOCwlauDFmbytU_w_Uwzk8bNwTS8o
2024-06-13 17:20:52 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 17:20:54 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJrbDIzVTJ0cWR3WGRWSGtvcVdIaGZRejl1UDV5Rk1nMCIsInVzZXJJZCI6IjEifQ.fM6D82VcNaBt2Jxru43JZoJnQtCR_ZZ11n2CNylCTe4
2024-06-13 17:20:54 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJTb201NWdrSTFneGFRYnJyWVUxbTA0YkxuR0lRa0dwQyIsInVzZXJJZCI6IjEifQ.CS70wU3rL8Owojo6QW8FdGDgHjSjh7HVg8pLIZ0kLeI
2024-06-13 17:20:54 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 17:21:16 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJrbDIzVTJ0cWR3WGRWSGtvcVdIaGZRejl1UDV5Rk1nMCIsInVzZXJJZCI6IjEifQ.fM6D82VcNaBt2Jxru43JZoJnQtCR_ZZ11n2CNylCTe4
2024-06-13 17:21:16 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 17:21:20 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJEcW5FS21hYk9uSFhzYjIwTTR6eDhTOVBmeWRJVVRTUiIsInVzZXJJZCI6IjIifQ.ZrflqhwcyDI2nHSmWyoF4Hzgzu3rPmlMz8o19-P_rJk
2024-06-13 17:21:20 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:23:43 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:23:48 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 26228 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:23:48 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:23:48 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:23:51 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:23:51 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:23:51 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:23:51 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:23:51 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:23:51 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:23:54 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:23:54 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:23:54 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:23:55 [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-13 17:23:55 [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-13 17:23:56 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:23:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:23:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:23:56 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:23:57 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:23:58 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:23:59 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:23:59 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:23:59 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:24:00 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:24:00 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:24:02 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:24:02 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:24:02 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:24:02 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:24:02 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 14.501 seconds (JVM running for 15.555)
2024-06-13 17:24:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:24:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:24:03 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:24:04 [RMI TCP Connection(3)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:25:46 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJEcW5FS21hYk9uSFhzYjIwTTR6eDhTOVBmeWRJVVRTUiIsInVzZXJJZCI6IjIifQ.ZrflqhwcyDI2nHSmWyoF4Hzgzu3rPmlMz8o19-P_rJk
2024-06-13 17:25:46 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 17:25:48 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJuSTJPRXVIaVY4SnIzUVJQTHQ1OWlqMXJLYXJoSGcwbCIsInVzZXJJZCI6IjEifQ.9hGwIlyWRbPG-U8DU0rzkfHhDyyyFdzfXy2tJI13t5E
2024-06-13 17:25:48 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 17:27:17 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJuSTJPRXVIaVY4SnIzUVJQTHQ1OWlqMXJLYXJoSGcwbCIsInVzZXJJZCI6IjEifQ.9hGwIlyWRbPG-U8DU0rzkfHhDyyyFdzfXy2tJI13t5E
2024-06-13 17:27:17 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 17:27:21 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJoNHV6ZU91WkZqbjh0bm10bzV2NnRnMXV0VXdWUG5SbyIsInVzZXJJZCI6IjIifQ.-j3xIWqUagqgeGZv5eRs_DQbISv5mKxccgrAQY6_DzU
2024-06-13 17:27:21 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:30:04 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:30:15 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 12956 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:30:15 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:30:15 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:30:19 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:30:19 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:30:19 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:30:20 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:30:20 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:30:20 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:30:25 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:30:25 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:30:25 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:30:26 [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-13 17:30:27 [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-13 17:30:27 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:30:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:30:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:30:28 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:30:29 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:30:29 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:30:30 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:30:30 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:30:30 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:30:31 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:30:31 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:30:33 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:30:33 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:30:33 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:30:33 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:30:34 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 19.135 seconds (JVM running for 20.896)
2024-06-13 17:30:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:30:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:30:34 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:30:35 [RMI TCP Connection(1)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:47:48 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:47:53 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 26568 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:47:53 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:47:53 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:47:56 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:47:56 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:47:56 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:47:56 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:47:56 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:47:56 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:47:58 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:47:59 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:47:59 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:47:59 [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-13 17:47:59 [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-13 17:48:00 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:48:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:48:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:48:00 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:48:01 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:48:01 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:48:02 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:48:02 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:48:02 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:48:03 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:48:03 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:48:05 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:48:05 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:48:05 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:48:05 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:48:05 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 12.166 seconds (JVM running for 13.151)
2024-06-13 17:48:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:48:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:48:05 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:48:06 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:48:51 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJoNHV6ZU91WkZqbjh0bm10bzV2NnRnMXV0VXdWUG5SbyIsInVzZXJJZCI6IjIifQ.-j3xIWqUagqgeGZv5eRs_DQbISv5mKxccgrAQY6_DzU
2024-06-13 17:48:51 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 17:48:56 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJYSGFwcEJnZDFUWmhkNE55cERMeFg2OEVuU3lCZjVZZSIsInVzZXJJZCI6IjEifQ.OwRFGCVVQrObuZTy7JW7V6ESXCxI4IvZqk7eKrZa_v8
2024-06-13 17:48:56 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 17:49:52 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJYSGFwcEJnZDFUWmhkNE55cERMeFg2OEVuU3lCZjVZZSIsInVzZXJJZCI6IjEifQ.OwRFGCVVQrObuZTy7JW7V6ESXCxI4IvZqk7eKrZa_v8
2024-06-13 17:49:52 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 17:49:57 [XNIO-1 task-4] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ1RUNmVWVuRWhiRmlCY0kycHJCdVBUTGw0VndVS0t6SSIsInVzZXJJZCI6IjIifQ.C19vyYfp5FrL0ziylhmUx5bkdrE_VA5D89BiwhReDcU
2024-06-13 17:49:57 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:51:27 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ1RUNmVWVuRWhiRmlCY0kycHJCdVBUTGw0VndVS0t6SSIsInVzZXJJZCI6IjIifQ.C19vyYfp5FrL0ziylhmUx5bkdrE_VA5D89BiwhReDcU
2024-06-13 17:51:27 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Logout][退出成功]
2024-06-13 17:51:29 [XNIO-1 task-5] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0bVJ2U3ZyQU5aSTdvS3VQRjJKckpmTXhBSGljeTdTayIsInVzZXJJZCI6IjEifQ.wnZaeQqPLF_uofsHbBJBMjmgdJjAwlv1poM52bsf1H4
2024-06-13 17:51:29 [schedule-pool-4] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Success][登录成功]
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 17:54:25 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 17:54:36 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 16336 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 17:54:36 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 17:54:36 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 17:54:40 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 17:54:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 17:54:40 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 17:54:40 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 17:54:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 17:54:40 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 17:54:43 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 17:54:43 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 17:54:44 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 17:54:44 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 17:54:44 [redisson-netty-2-3] INFO  o.r.c.pool.MasterConnectionPool - 8 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 17:54:45 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 17:54:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 17:54:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:54:45 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:54:46 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 17:54:47 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 17:54:48 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 17:54:48 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 17:54:48 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 17:54:48 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 17:54:48 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 17:54:51 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 17:54:51 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 17:54:51 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 17:54:51 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 17:54:51 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 15.744 seconds (JVM running for 17.98)
2024-06-13 17:54:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 17:54:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 17:54:51 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 17:54:52 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 17:55:35 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJ0bVJ2U3ZyQU5aSTdvS3VQRjJKckpmTXhBSGljeTdTayIsInVzZXJJZCI6IjEifQ.wnZaeQqPLF_uofsHbBJBMjmgdJjAwlv1poM52bsf1H4
2024-06-13 17:55:35 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[admin][Logout][退出成功]
2024-06-13 17:55:40 [XNIO-1 task-1] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiIxcDVWaEtXUnFsYjZOMWF4SWhxSXJTcXBlcEhLT3N4aCIsInVzZXJJZCI6IjIifQ.-YkNRERB6abA-cnAJeBSDcqv-zoMkTvifFQ6KtrYunE
2024-06-13 17:55:40 [schedule-pool-2] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.115]内网IP[ry][Success][登录成功]
2024-06-13 17:59:12 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogout, userId:sys_user:1, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiI5WDR0M1dmUEQwcGgwc3FYMm1VQXRKZmxTZDJCUzFJViIsInVzZXJJZCI6IjEifQ.mzwQqO_nMKAGpQ2RLLNO0NeVKcNWP81rvYZHjEkRwvM
2024-06-13 17:59:12 [schedule-pool-1] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[admin][Logout][退出成功]
2024-06-13 17:59:20 [XNIO-1 task-3] INFO  c.d.f.listener.UserActionListener - user doLogin, userId:sys_user:2, token:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoyIiwicm5TdHIiOiJ5OEVibmk4QlplZlVMekJveWdodkxPcEh4UEllNFpFcyIsInVzZXJJZCI6IjIifQ.gq1z_kGDe2EOZcP4retb3kTSLjhPsPU-5qYZP1a398E
2024-06-13 17:59:20 [schedule-pool-3] INFO  c.d.s.s.i.SysLogininforServiceImpl - [192.168.0.121]内网IP[ry][Success][登录成功]
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 18:01:36 [SpringApplicationShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 18:01:42 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 6660 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 18:01:42 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 18:01:42 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 18:01:45 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 18:01:45 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 18:01:45 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 18:01:45 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 18:01:45 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 18:01:45 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 18:01:47 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 18:01:47 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 18:01:48 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 18:01:48 [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-13 18:01:48 [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-13 18:01:49 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 18:01:49 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 18:01:49 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:01:49 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:01:50 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:01:51 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 18:01:52 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 18:01:52 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 18:01:52 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 18:01:53 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 18:01:53 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 18:01:55 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 18:01:55 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 18:01:55 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 18:01:55 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 18:01:55 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 13.883 seconds (JVM running for 14.89)
2024-06-13 18:01:56 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 18:01:56 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 18:01:56 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 18:01:57 [RMI TCP Connection(2)-192.168.0.115] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-06-13 18:20:55 [Thread-35] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 18:20:55 [Thread-35] INFO  io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
2024-06-13 18:20:55 [Thread-35] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 18:20:55 [Thread-35] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 18:20:55 [Thread-35] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 18:20:55 [Thread-35] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 18:20:55 [Thread-35] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 18:20:56 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 6660 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 18:20:56 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 18:20:59 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 18:20:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 18:20:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 18:20:59 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 18:20:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 18:20:59 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 18:21:03 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 18:21:03 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 18:21:03 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 18:21:03 [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-13 18:21:03 [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-13 18:21:04 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 18:21:04 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 18:21:04 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 18:21:04 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 18:21:06 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 6660 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 18:21:06 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 18:21:09 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 18:21:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 18:21:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 18:21:09 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 18:21:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 18:21:09 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 18:21:13 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 18:21:13 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 18:21:13 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 18:21:13 [redisson-netty-8-1] INFO  o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 192.168.1.7/192.168.1.7:6379
2024-06-13 18:21:13 [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-13 18:21:14 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 18:21:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 18:21:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:21:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:21:14 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:21:14 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 18:21:15 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 18:21:15 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 18:21:15 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 18:21:16 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 18:21:16 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 18:21:17 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 18:21:17 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 10.622 seconds (JVM running for 1176.259)
2024-06-13 18:21:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 18:21:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 18:21:17 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 18:21:53 [Thread-47] INFO  io.undertow - stopping server: Undertow - 2.2.24.Final
2024-06-13 18:21:53 [Thread-47] INFO  c.d.f.manager.ShutdownManager - ====关闭后台任务任务线程池====
2024-06-13 18:21:53 [Thread-47] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
2024-06-13 18:21:53 [Thread-47] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
2024-06-13 18:21:53 [Thread-47] INFO  com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
2024-06-13 18:21:53 [Thread-47] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
2024-06-13 18:23:17 [restartedMain] INFO  com.dl.DingleApplication - Starting DingleApplication using Java 1.8.0_381 on admin with PID 17376 (E:\zxworkspace\dl-admin\target\classes started by xm in E:\zxworkspace)
2024-06-13 18:23:17 [restartedMain] INFO  com.dl.DingleApplication - The following 1 profile is active: "dev"
2024-06-13 18:23:17 [background-preinit] INFO  o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.5.Final
2024-06-13 18:23:27 [restartedMain] INFO  io.undertow.servlet - Initializing Spring embedded WebApplicationContext
2024-06-13 18:23:27 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it
2024-06-13 18:23:27 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Starting...
2024-06-13 18:23:28 [restartedMain] INFO  com.zaxxer.hikari.HikariDataSource - master - Start completed.
2024-06-13 18:23:28 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
2024-06-13 18:23:28 [restartedMain] INFO  c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
2024-06-13 18:23:31 [restartedMain] INFO  c.dl.framework.config.JacksonConfig - 初始化 jackson 配置
2024-06-13 18:23:32 [restartedMain] INFO  com.dl.framework.config.RedisConfig - 初始化 redis 配置
2024-06-13 18:23:32 [restartedMain] INFO  org.redisson.Version - Redisson 3.20.1
2024-06-13 18:23:32 [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-13 18:23:32 [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-13 18:23:33 [restartedMain] INFO  o.f.s.b.e.EventRegistryAutoConfiguration - No deployment resources were found for autodeployment
2024-06-13 18:23:33 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Found 1 Engine Configurators in total:
2024-06-13 18:23:33 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:23:33 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing beforeInit() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:23:34 [restartedMain] INFO  o.f.s.SpringProcessEngineConfiguration - Executing configure() of class org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator (priority:100000)
2024-06-13 18:23:35 [restartedMain] INFO  liquibase.lockservice - Successfully acquired change log lock
2024-06-13 18:23:36 [restartedMain] INFO  liquibase.changelog - Reading from `dl-qms`.FLW_EV_DATABASECHANGELOG
2024-06-13 18:23:36 [restartedMain] INFO  liquibase.lockservice - Successfully released change log lock
2024-06-13 18:23:36 [restartedMain] INFO  o.f.e.impl.EventRegistryEngineImpl - EventRegistryEngine default created
2024-06-13 18:23:37 [restartedMain] INFO  o.f.engine.impl.ProcessEngineImpl - ProcessEngine default created
2024-06-13 18:23:37 [restartedMain] INFO  o.f.e.impl.cmd.ValidateV5EntitiesCmd - Total of v5 deployments found: 0
2024-06-13 18:23:39 [restartedMain] INFO  io.undertow - starting server: Undertow - 2.2.24.Final
2024-06-13 18:23:39 [restartedMain] INFO  org.xnio - XNIO version 3.8.7.Final
2024-06-13 18:23:39 [restartedMain] INFO  org.xnio.nio - XNIO NIO Implementation Version 3.8.7.Final
2024-06-13 18:23:39 [restartedMain] INFO  org.jboss.threads - JBoss Threads version 3.1.0.Final
2024-06-13 18:23:39 [restartedMain] INFO  com.dl.DingleApplication - Started DingleApplication in 24.424 seconds (JVM running for 26.214)
2024-06-13 18:23:39 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功
2024-06-13 18:23:39 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载参数缓存数据成功
2024-06-13 18:23:40 [restartedMain] INFO  c.d.s.runner.SystemApplicationRunner - 加载字典缓存数据成功
2024-06-13 18:24:31 [XNIO-1 task-1] INFO  io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'