-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_websotcket.log
1698 lines (1696 loc) · 280 KB
/
base_websotcket.log
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
2023-07-23 11:04:37.101 INFO 4976 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:04:37.102 INFO 4976 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:04:37.102 WARN 4976 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:04:37.327 INFO 4976 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:04:37.394 INFO 4976 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:04:37.394 INFO 4976 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:04:37.402 INFO 4976 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:04:37.408 INFO 4976 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:04:37.409 INFO 4976 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:04:37.409 WARN 4976 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:04:37.655 INFO 4976 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:04:37.662 INFO 4976 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 3 ms. Found 0 JPA repository interfaces.
2023-07-23 11:04:37.733 INFO 4976 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=d8b8958e-1dd0-3f52-b022-489a8da050c2
2023-07-23 11:04:37.928 INFO 4976 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:04:37.933 INFO 4976 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:04:37.933 INFO 4976 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:04:38.000 INFO 4976 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:04:38.000 INFO 4976 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 591 ms
2023-07-23 11:04:38.088 INFO 4976 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:04:38.109 INFO 4976 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:04:38.183 INFO 4976 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:04:38.227 INFO 4976 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:04:39.147 INFO 4976 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:04:39.165 INFO 4976 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:04:40.334 INFO 4976 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:04:40.350 INFO 4976 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:04:40.674 INFO 4976 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:04:40.678 INFO 4976 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:04:40.678 INFO 4976 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@185a7dd0]]
2023-07-23 11:04:40.678 INFO 4976 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:04:40.685 INFO 4976 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 4.269 seconds (JVM running for 4.677)
2023-07-23 11:04:40.687 WARN 4976 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:05:40.436 INFO 4976 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 11:07:29.998 INFO 4976 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:07:29.998 INFO 4976 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@185a7dd0]]
2023-07-23 11:07:29.999 INFO 4976 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:07:30.017 INFO 4976 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:07:30.019 INFO 4976 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:07:30.031 INFO 4976 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:17:45.930 INFO 6522 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:17:45.932 INFO 6522 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:17:45.932 WARN 6522 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:17:46.230 INFO 6522 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:17:46.283 INFO 6522 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:17:46.284 INFO 6522 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:17:46.295 INFO 6522 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:17:46.303 INFO 6522 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:17:46.303 INFO 6522 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:17:46.304 WARN 6522 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:17:46.785 INFO 6522 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:17:46.794 INFO 6522 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 11:17:46.896 INFO 6522 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=2d6b8ffd-c74a-3ce3-8ea3-ae903d03be82
2023-07-23 11:17:47.200 INFO 6522 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:17:47.206 INFO 6522 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:17:47.206 INFO 6522 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:17:47.283 INFO 6522 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:17:47.283 INFO 6522 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 979 ms
2023-07-23 11:17:47.405 INFO 6522 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:17:47.437 INFO 6522 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:17:47.520 INFO 6522 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:17:47.561 INFO 6522 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:17:48.048 INFO 6522 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:17:48.057 INFO 6522 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:17:48.671 INFO 6522 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:17:48.679 INFO 6522 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:17:49.075 INFO 6522 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:17:49.078 INFO 6522 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:17:49.078 INFO 6522 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@73d8c8d7]]
2023-07-23 11:17:49.079 INFO 6522 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:17:49.086 INFO 6522 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.771 seconds (JVM running for 4.288)
2023-07-23 11:17:49.087 WARN 6522 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:18:25.419 INFO 6522 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:18:25.420 INFO 6522 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@73d8c8d7]]
2023-07-23 11:18:25.421 INFO 6522 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:18:25.439 INFO 6522 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:18:25.442 INFO 6522 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:18:25.457 INFO 6522 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:18:28.049 INFO 6550 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:18:28.051 INFO 6550 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:18:28.051 WARN 6550 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:18:28.292 INFO 6550 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:18:28.347 INFO 6550 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:18:28.348 INFO 6550 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:18:28.364 INFO 6550 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:18:28.374 INFO 6550 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:18:28.374 INFO 6550 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:18:28.374 WARN 6550 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:18:28.398 WARN 6550 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.base.websocket.WebsocketApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'inboundInterceptor' for bean class [com.base.websocket.component.interceptor.InboundInterceptor] conflicts with existing, non-compatible bean definition of same name and class [com.base.websocket.component.configure.stomp.interceptor.InboundInterceptor]
2023-07-23 11:18:28.417 ERROR 6550 --- [main] o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.base.websocket.WebsocketApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'inboundInterceptor' for bean class [com.base.websocket.component.interceptor.InboundInterceptor] conflicts with existing, non-compatible bean definition of same name and class [com.base.websocket.component.configure.stomp.interceptor.InboundInterceptor]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:188) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:748) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.11.jar:2.7.11]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.11.jar:2.7.11]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.11.jar:2.7.11]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.11.jar:2.7.11]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.11.jar:2.7.11]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.11.jar:2.7.11]
at com.base.websocket.WebsocketApplication.main(WebsocketApplication.java:10) ~[main/:na]
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'inboundInterceptor' for bean class [com.base.websocket.component.interceptor.InboundInterceptor] conflicts with existing, non-compatible bean definition of same name and class [com.base.websocket.component.configure.stomp.interceptor.InboundInterceptor]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:295) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:249) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:206) ~[spring-context-5.3.27.jar:5.3.27]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:174) ~[spring-context-5.3.27.jar:5.3.27]
... 13 common frames omitted
2023-07-23 11:19:07.336 INFO 6572 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:19:07.337 INFO 6572 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:19:07.337 WARN 6572 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:19:07.674 INFO 6572 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:19:07.747 INFO 6572 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:19:07.748 INFO 6572 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:19:07.766 INFO 6572 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:19:07.777 INFO 6572 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:19:07.778 INFO 6572 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:19:07.778 WARN 6572 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:19:08.148 INFO 6572 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:19:08.163 INFO 6572 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 9 ms. Found 0 JPA repository interfaces.
2023-07-23 11:19:08.270 INFO 6572 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=343b947e-99ac-3741-84e2-997cf0f04bb2
2023-07-23 11:19:08.482 INFO 6572 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:19:08.487 INFO 6572 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:19:08.487 INFO 6572 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:19:08.555 INFO 6572 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:19:08.555 INFO 6572 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 776 ms
2023-07-23 11:19:08.638 INFO 6572 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:19:08.658 INFO 6572 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:19:08.730 INFO 6572 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:19:08.773 INFO 6572 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:19:08.814 INFO 6572 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:19:08.824 INFO 6572 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:19:08.987 INFO 6572 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:19:08.994 INFO 6572 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:19:09.358 INFO 6572 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:19:09.362 INFO 6572 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:19:09.362 INFO 6572 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@de63949]]
2023-07-23 11:19:09.362 INFO 6572 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:19:09.369 INFO 6572 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.628 seconds (JVM running for 2.954)
2023-07-23 11:19:09.371 WARN 6572 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:20:03.905 INFO 6572 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:20:03.906 INFO 6572 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@de63949]]
2023-07-23 11:20:03.906 INFO 6572 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:20:03.925 INFO 6572 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:20:03.927 INFO 6572 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:20:03.938 INFO 6572 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:20:06.589 INFO 6597 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:06.590 INFO 6597 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:20:06.590 WARN 6597 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:20:06.777 INFO 6597 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:06.823 INFO 6597 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:20:06.824 INFO 6597 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:20:06.833 INFO 6597 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:20:06.840 INFO 6597 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:06.841 INFO 6597 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:20:06.841 WARN 6597 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:20:07.110 INFO 6597 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:20:07.120 INFO 6597 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 JPA repository interfaces.
2023-07-23 11:20:07.202 INFO 6597 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=343b947e-99ac-3741-84e2-997cf0f04bb2
2023-07-23 11:20:07.388 INFO 6597 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:20:07.393 INFO 6597 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:20:07.393 INFO 6597 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:20:07.462 INFO 6597 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:20:07.462 INFO 6597 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 621 ms
2023-07-23 11:20:07.546 INFO 6597 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:20:07.568 INFO 6597 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:20:07.636 INFO 6597 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:20:07.678 INFO 6597 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:20:07.719 INFO 6597 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:20:07.728 INFO 6597 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:20:07.825 INFO 6597 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:20:07.831 INFO 6597 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:20:08.206 INFO 6597 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:20:08.209 INFO 6597 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:20:08.210 INFO 6597 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@62f7d7bd]]
2023-07-23 11:20:08.210 INFO 6597 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:20:08.217 INFO 6597 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.054 seconds (JVM running for 2.537)
2023-07-23 11:20:08.218 WARN 6597 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:20:12.603 INFO 6597 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:20:12.604 INFO 6597 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@62f7d7bd]]
2023-07-23 11:20:12.604 INFO 6597 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:20:12.621 INFO 6597 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:20:12.623 INFO 6597 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:20:12.631 INFO 6597 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:20:15.025 INFO 6606 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:15.026 INFO 6606 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:20:15.026 WARN 6606 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@6f95cd51 uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:20:15.215 INFO 6606 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:15.255 INFO 6606 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:20:15.256 INFO 6606 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:20:15.265 INFO 6606 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:20:15.273 INFO 6606 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:20:15.274 INFO 6606 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:20:15.274 WARN 6606 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:20:15.521 INFO 6606 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:20:15.529 INFO 6606 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 JPA repository interfaces.
2023-07-23 11:20:15.606 INFO 6606 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=343b947e-99ac-3741-84e2-997cf0f04bb2
2023-07-23 11:20:15.773 INFO 6606 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:20:15.777 INFO 6606 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:20:15.778 INFO 6606 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:20:15.843 INFO 6606 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:20:15.843 INFO 6606 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 569 ms
2023-07-23 11:20:15.924 INFO 6606 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:20:15.941 INFO 6606 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:20:15.998 INFO 6606 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:20:16.041 INFO 6606 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:20:16.080 INFO 6606 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:20:16.089 INFO 6606 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:20:16.575 INFO 6606 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:20:16.592 INFO 6606 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:20:16.956 INFO 6606 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:20:16.959 INFO 6606 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:20:16.959 INFO 6606 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@de63949]]
2023-07-23 11:20:16.960 INFO 6606 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:20:16.966 INFO 6606 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.372 seconds (JVM running for 2.756)
2023-07-23 11:20:16.968 WARN 6606 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:21:16.723 INFO 6606 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 11:32:03.266 INFO 6606 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:32:03.267 INFO 6606 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@de63949]]
2023-07-23 11:32:03.267 INFO 6606 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:32:03.288 INFO 6606 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:32:03.290 INFO 6606 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:32:03.299 INFO 6606 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:32:07.846 INFO 7635 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:07.847 INFO 7635 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:32:07.847 WARN 7635 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:32:08.071 INFO 7635 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:08.126 INFO 7635 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:32:08.126 INFO 7635 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:32:08.136 INFO 7635 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:32:08.147 INFO 7635 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:08.147 INFO 7635 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:32:08.147 WARN 7635 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:32:08.640 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:32:08.640 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:32:08.652 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 7 ms. Found 0 JPA repository interfaces.
2023-07-23 11:32:08.660 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:32:08.660 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 11:32:08.667 INFO 7635 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 11:32:08.796 INFO 7635 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=acadd623-3d1b-31df-8fe4-e3b2c58b5971
2023-07-23 11:32:09.070 INFO 7635 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:32:09.077 INFO 7635 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:32:09.078 INFO 7635 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:32:09.184 INFO 7635 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:32:09.184 INFO 7635 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1037 ms
2023-07-23 11:32:09.352 INFO 7635 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:32:09.377 INFO 7635 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:32:09.454 INFO 7635 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:32:09.499 INFO 7635 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:32:09.715 INFO 7635 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:32:09.725 INFO 7635 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:32:10.478 INFO 7635 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:32:10.495 INFO 7635 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:32:10.997 INFO 7635 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:32:11.000 INFO 7635 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:32:11.000 INFO 7635 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@4c3c31a5]]
2023-07-23 11:32:11.000 INFO 7635 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:32:11.007 INFO 7635 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.654 seconds (JVM running for 4.162)
2023-07-23 11:32:11.008 WARN 7635 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:32:23.794 INFO 7635 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:32:23.795 INFO 7635 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@4c3c31a5]]
2023-07-23 11:32:23.795 INFO 7635 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:32:23.819 INFO 7635 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:32:23.820 INFO 7635 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:32:23.832 INFO 7635 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:32:26.440 INFO 7647 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:26.441 INFO 7647 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:32:26.441 WARN 7647 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:32:26.615 INFO 7647 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:26.651 INFO 7647 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:32:26.652 INFO 7647 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:32:26.661 INFO 7647 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:32:26.669 INFO 7647 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:32:26.669 INFO 7647 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:32:26.669 WARN 7647 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:32:26.968 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:32:26.969 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:32:26.977 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 JPA repository interfaces.
2023-07-23 11:32:26.983 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:32:26.984 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 11:32:26.990 INFO 7647 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 11:32:27.074 INFO 7647 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=acadd623-3d1b-31df-8fe4-e3b2c58b5971
2023-07-23 11:32:27.265 INFO 7647 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:32:27.270 INFO 7647 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:32:27.270 INFO 7647 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:32:27.339 INFO 7647 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:32:27.340 INFO 7647 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 671 ms
2023-07-23 11:32:27.423 INFO 7647 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:32:27.442 INFO 7647 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:32:27.512 INFO 7647 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:32:27.555 INFO 7647 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:32:27.597 INFO 7647 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:32:27.606 INFO 7647 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:32:27.699 INFO 7647 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:32:27.704 INFO 7647 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:32:28.193 INFO 7647 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:32:28.197 INFO 7647 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:32:28.197 INFO 7647 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@642f8b7f]]
2023-07-23 11:32:28.197 INFO 7647 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:32:28.204 INFO 7647 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.221 seconds (JVM running for 2.562)
2023-07-23 11:32:28.205 WARN 7647 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:33:27.945 INFO 7647 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 11:43:20.868 INFO 7647 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 11:43:20.869 INFO 7647 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@642f8b7f]]
2023-07-23 11:43:20.870 INFO 7647 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 11:43:20.904 INFO 7647 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:43:20.907 INFO 7647 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 11:43:20.917 INFO 7647 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 11:43:23.792 INFO 7838 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:43:23.793 INFO 7838 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:43:23.793 WARN 7838 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:43:23.987 INFO 7838 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:43:24.030 INFO 7838 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 11:43:24.031 INFO 7838 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 11:43:24.040 INFO 7838 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 11:43:24.048 INFO 7838 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 11:43:24.048 INFO 7838 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 11:43:24.048 WARN 7838 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 11:43:24.355 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:43:24.355 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 11:43:24.364 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 11:43:24.371 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 11:43:24.372 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 11:43:24.378 INFO 7838 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 11:43:24.465 INFO 7838 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=30e4f3d7-f1f1-34ba-8c44-5baccc3d948e
2023-07-23 11:43:24.653 INFO 7838 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 11:43:24.659 INFO 7838 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 11:43:24.659 INFO 7838 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 11:43:24.732 INFO 7838 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 11:43:24.732 INFO 7838 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 684 ms
2023-07-23 11:43:24.829 INFO 7838 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 11:43:24.854 INFO 7838 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 11:43:24.931 INFO 7838 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 11:43:24.972 INFO 7838 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 11:43:25.243 INFO 7838 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 11:43:25.254 INFO 7838 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 11:43:25.362 INFO 7838 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 11:43:25.369 INFO 7838 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 11:43:25.863 INFO 7838 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 11:43:25.867 INFO 7838 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 11:43:25.867 INFO 7838 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@5cc152f9]]
2023-07-23 11:43:25.867 INFO 7838 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 11:43:25.874 INFO 7838 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.618 seconds (JVM running for 2.967)
2023-07-23 11:43:25.875 WARN 7838 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 11:44:25.627 INFO 7838 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 11:52:44.510 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=3m40s718ms).
2023-07-23 12:33:59.493 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=16m42s806ms).
2023-07-23 12:33:59.528 INFO 7838 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 2, active threads = 1, queued tasks = 0, completed tasks = 1]
2023-07-23 13:04:54.548 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=6m21s230ms).
2023-07-23 13:17:34.203 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=12m39s654ms).
2023-07-23 13:33:40.140 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=15m35s939ms).
2023-07-23 13:45:44.984 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=12m4s844ms).
2023-07-23 13:47:48.384 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m33s389ms).
2023-07-23 13:49:54.720 INFO 7838 --- [MessageBroker-2] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 3, active threads = 1, queued tasks = 0, completed tasks = 2]
2023-07-23 14:18:39.927 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=16m44s663ms).
2023-07-23 14:24:43.992 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=5m4s43ms).
2023-07-23 14:40:43.316 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=15m29s313ms).
2023-07-23 14:53:32.497 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=12m19s171ms).
2023-07-23 14:59:01.113 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=5m28s616ms).
2023-07-23 15:00:28.900 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=57s770ms).
2023-07-23 15:05:22.849 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=4m23s934ms).
2023-07-23 15:07:14.815 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m51s966ms).
2023-07-23 15:11:56.429 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=3m9s324ms).
2023-07-23 15:12:44.781 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=48s352ms).
2023-07-23 15:18:53.147 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=5m38s362ms).
2023-07-23 15:21:12.333 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=2m19s186ms).
2023-07-23 15:38:46.203 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=17m3s867ms).
2023-07-23 15:44:48.994 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=6m2s791ms).
2023-07-23 15:48:16.955 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=2m57s965ms).
2023-07-23 15:50:16.755 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m29s791ms).
2023-07-23 15:53:30.412 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=3m13s657ms).
2023-07-23 15:56:29.665 INFO 7838 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 3]
2023-07-23 16:26:29.674 INFO 7838 --- [MessageBroker-3] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 4]
2023-07-23 16:56:29.690 INFO 7838 --- [MessageBroker-2] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 5]
2023-07-23 17:10:55.099 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=5m54s94ms).
2023-07-23 17:31:53.781 INFO 7838 --- [MessageBroker-4] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 7, active threads = 1, queued tasks = 0, completed tasks = 6]
2023-07-23 17:37:23.137 WARN 7838 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Retrograde clock change detected (housekeeper delta=27s865ms), soft-evicting connections from pool.
2023-07-23 17:51:03.823 INFO 7838 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 17:51:03.824 INFO 7838 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@5cc152f9]]
2023-07-23 17:51:03.824 INFO 7838 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 17:51:03.859 INFO 7838 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:51:03.862 INFO 7838 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 17:51:03.869 INFO 7838 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 17:51:11.662 INFO 15799 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:11.663 INFO 15799 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:51:11.663 WARN 15799 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:51:11.934 INFO 15799 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:11.978 INFO 15799 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 17:51:11.978 INFO 15799 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 17:51:12.004 INFO 15799 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 17:51:12.021 INFO 15799 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:12.022 INFO 15799 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:51:12.022 WARN 15799 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:51:12.446 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:51:12.447 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 17:51:12.456 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 17:51:12.465 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:51:12.466 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 17:51:12.474 INFO 15799 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces.
2023-07-23 17:51:12.604 INFO 15799 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=936c3ad5-5cfb-364c-9d8f-8369b25427d3
2023-07-23 17:51:13.055 INFO 15799 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 17:51:13.061 INFO 15799 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 17:51:13.061 INFO 15799 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 17:51:13.156 INFO 15799 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 17:51:13.156 INFO 15799 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1134 ms
2023-07-23 17:51:13.288 INFO 15799 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 17:51:13.318 INFO 15799 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 17:51:13.404 INFO 15799 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 17:51:13.450 INFO 15799 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 17:51:13.573 INFO 15799 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 17:51:13.584 INFO 15799 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 17:51:14.525 INFO 15799 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 17:51:14.531 INFO 15799 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:51:15.065 INFO 15799 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 17:51:15.069 INFO 15799 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 17:51:15.069 INFO 15799 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@278150a1]]
2023-07-23 17:51:15.069 INFO 15799 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 17:51:15.076 INFO 15799 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 4.102 seconds (JVM running for 4.651)
2023-07-23 17:51:15.078 WARN 15799 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 17:51:31.094 INFO 15799 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 17:51:31.095 INFO 15799 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@278150a1]]
2023-07-23 17:51:31.095 INFO 15799 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 17:51:31.126 INFO 15799 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:51:31.128 INFO 15799 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 17:51:31.136 INFO 15799 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 17:51:33.200 INFO 15879 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:33.201 INFO 15879 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:51:33.201 WARN 15879 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:51:33.396 INFO 15879 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:33.429 INFO 15879 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 17:51:33.429 INFO 15879 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 17:51:33.438 INFO 15879 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 17:51:33.446 INFO 15879 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:51:33.447 INFO 15879 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:51:33.447 WARN 15879 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:51:33.748 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:51:33.748 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 17:51:33.756 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 17:51:33.763 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:51:33.764 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 17:51:33.770 INFO 15879 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 17:51:33.854 INFO 15879 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=936c3ad5-5cfb-364c-9d8f-8369b25427d3
2023-07-23 17:51:34.056 INFO 15879 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 17:51:34.061 INFO 15879 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 17:51:34.061 INFO 15879 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 17:51:34.131 INFO 15879 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 17:51:34.132 INFO 15879 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 685 ms
2023-07-23 17:51:34.218 INFO 15879 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 17:51:34.238 INFO 15879 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 17:51:34.309 INFO 15879 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 17:51:34.351 INFO 15879 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 17:51:34.392 INFO 15879 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 17:51:34.402 INFO 15879 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 17:51:34.491 INFO 15879 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 17:51:34.496 INFO 15879 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:51:35.001 INFO 15879 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 17:51:35.004 INFO 15879 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 17:51:35.004 INFO 15879 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@278150a1]]
2023-07-23 17:51:35.004 INFO 15879 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 17:51:35.011 INFO 15879 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.283 seconds (JVM running for 2.665)
2023-07-23 17:51:35.013 WARN 15879 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 17:52:34.750 INFO 15879 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[0 current WS(0)-HttpStream(0)-HttpPoll(0), 0 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(0)-CONNECTED(0)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 17:52:53.853 INFO 15879 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 17:52:53.853 INFO 15879 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 17:52:53.854 INFO 15879 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2023-07-23 17:52:54.988 WARN 15879 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:54.990 WARN 15879 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:54.990 WARN 15879 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:54.990 WARN 15879 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:54.990 WARN 15879 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:54.991 WARN 15879 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / ee7dca61-a3a1-5623-75d8-cd05d2b4e08d / null / null
2023-07-23 17:52:59.770 WARN 15879 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:52:59.770 WARN 15879 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:52:59.771 WARN 15879 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:52:59.771 WARN 15879 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:52:59.771 WARN 15879 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:52:59.771 WARN 15879 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:53:06.473 WARN 15879 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SUBSCRIBE / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:53:06.475 WARN 15879 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SUBSCRIBE / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:53:06.475 WARN 15879 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SUBSCRIBE / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:53:14.744 WARN 15879 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:53:14.746 WARN 15879 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:53:14.746 WARN 15879 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:53:14.765 WARN 15879 --- [clientInboundChannel-10] c.b.websocket.controller.ChatController : convertAndSend /topic/TT, asdasdasd
2023-07-23 17:55:14.146 WARN 15879 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.146 WARN 15879 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.147 WARN 15879 --- [clientInboundChannel-13] c.b.websocket.controller.ChatController : convertAndSend /topic/TT, asdasdasd
2023-07-23 17:55:14.147 WARN 15879 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.290 WARN 15879 --- [http-nio-2000-exec-8] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.296 WARN 15879 --- [clientInboundChannel-16] c.b.websocket.controller.ChatController : convertAndSend /topic/TT, asdasdasd
2023-07-23 17:55:14.298 WARN 15879 --- [http-nio-2000-exec-8] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.299 WARN 15879 --- [http-nio-2000-exec-8] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.454 WARN 15879 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.455 WARN 15879 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:55:14.456 WARN 15879 --- [clientInboundChannel-19] c.b.websocket.controller.ChatController : convertAndSend /topic/TT, asdasdasd
2023-07-23 17:55:14.456 WARN 15879 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / test
2023-07-23 17:58:40.071 WARN 15879 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.071 WARN 15879 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.071 WARN 15879 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.071 INFO 15879 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 17:58:40.071 WARN 15879 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.071 INFO 15879 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@278150a1]]
2023-07-23 17:58:40.071 WARN 15879 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.072 WARN 15879 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / c0b0d890-4aef-7e09-ac33-94cc6d65c4ed / null / null
2023-07-23 17:58:40.072 INFO 15879 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 17:58:40.201 INFO 15879 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:58:40.203 INFO 15879 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 17:58:40.213 INFO 15879 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 17:58:43.778 INFO 16282 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:58:43.782 INFO 16282 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:58:43.783 WARN 16282 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:58:44.054 INFO 16282 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:58:44.086 INFO 16282 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 17:58:44.087 INFO 16282 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 17:58:44.103 INFO 16282 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 17:58:44.117 INFO 16282 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 17:58:44.117 INFO 16282 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 17:58:44.117 WARN 16282 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 17:58:44.443 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:58:44.444 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 17:58:44.452 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 17:58:44.460 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 17:58:44.460 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 17:58:44.466 INFO 16282 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 17:58:44.553 INFO 16282 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=71923601-2eaa-3edc-b7c6-df923ffc92a6
2023-07-23 17:58:44.739 INFO 16282 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 17:58:44.744 INFO 16282 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 17:58:44.744 INFO 16282 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 17:58:44.813 INFO 16282 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 17:58:44.814 INFO 16282 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 696 ms
2023-07-23 17:58:44.899 INFO 16282 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 17:58:44.920 INFO 16282 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 17:58:44.989 INFO 16282 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 17:58:45.031 INFO 16282 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 17:58:45.397 INFO 16282 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 17:58:45.417 INFO 16282 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 17:58:45.533 INFO 16282 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 17:58:45.538 INFO 16282 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 17:58:46.033 INFO 16282 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 17:58:46.036 INFO 16282 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 17:58:46.037 INFO 16282 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@642d34f1]]
2023-07-23 17:58:46.037 INFO 16282 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 17:58:46.044 INFO 16282 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.207 seconds (JVM running for 3.754)
2023-07-23 17:58:46.045 WARN 16282 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 17:59:10.681 INFO 16282 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 17:59:10.681 INFO 16282 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 17:59:10.683 INFO 16282 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2023-07-23 17:59:11.918 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:11.921 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:11.921 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:11.924 WARN 16282 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:11.925 WARN 16282 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:11.925 WARN 16282 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:14.409 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SUBSCRIBE / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:14.411 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SUBSCRIBE / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:14.412 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SUBSCRIBE / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 17:59:18.511 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:18.512 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:18.512 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:18.529 WARN 16282 --- [clientInboundChannel-7] c.b.websocket.controller.ChatController : convertAndSend /topic/123, 444
2023-07-23 17:59:18.687 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:18.687 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:18.687 WARN 16282 --- [clientInboundChannel-10] c.b.websocket.controller.ChatController : convertAndSend /topic/123, 444
2023-07-23 17:59:18.687 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:26.975 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:26.978 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:26.979 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: SEND / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / test
2023-07-23 17:59:26.978 WARN 16282 --- [clientInboundChannel-13] c.b.websocket.controller.ChatController : convertAndSend /topic/123, 444124124
2023-07-23 17:59:45.790 INFO 16282 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[1 current WS(1)-HttpStream(0)-HttpPoll(0), 1 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(1)-CONNECTED(1)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 15, active threads = 0, queued tasks = 0, completed tasks = 15], outboundChannel[pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 18:29:47.940 INFO 16282 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[1 current WS(1)-HttpStream(0)-HttpPoll(0), 1 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(1)-CONNECTED(1)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 15], outboundChannel[pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1], sockJsScheduler[pool size = 2, active threads = 1, queued tasks = 0, completed tasks = 1]
2023-07-23 18:32:00.833 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:00.833 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:00.834 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:00.834 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:00.835 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:00.835 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 47784e6a-537d-b269-b255-cda4c12e69c7 / null / null
2023-07-23 18:32:25.068 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:25.069 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:25.069 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:25.069 WARN 16282 --- [clientInboundChannel-20] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:25.069 WARN 16282 --- [clientInboundChannel-20] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:25.075 WARN 16282 --- [clientInboundChannel-20] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / e4aad82b-8f90-0754-1898-e11d86882cb6 / null / null
2023-07-23 18:32:28.419 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:28.420 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:28.420 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:28.420 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:28.420 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:28.421 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 23994626-ca5f-1584-5f38-9ea0e92223cd / null / null
2023-07-23 18:32:35.086 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:35.087 WARN 16282 --- [clientInboundChannel-26] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:35.087 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:35.087 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:35.087 WARN 16282 --- [clientInboundChannel-26] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:35.087 WARN 16282 --- [clientInboundChannel-26] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 8ea533c2-f9c8-fb30-e487-41d2ba2d3647 / null / null
2023-07-23 18:32:36.441 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:36.442 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:36.442 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:36.442 WARN 16282 --- [clientInboundChannel-29] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:36.443 WARN 16282 --- [clientInboundChannel-29] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:36.443 WARN 16282 --- [clientInboundChannel-29] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 905ae23c-101e-15c5-80f5-3fb95a3b08d2 / null / null
2023-07-23 18:32:38.129 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:38.131 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:38.133 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:38.132 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:38.134 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:38.135 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 3720c6d2-6fa1-963c-e842-598a49d424de / null / null
2023-07-23 18:32:43.983 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:43.984 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:43.984 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:43.984 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:43.985 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:43.985 WARN 16282 --- [clientInboundChannel-17] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 390acc06-9cd5-574c-562c-01cffc2f5dc3 / null / null
2023-07-23 18:32:45.540 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:45.540 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:45.541 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:45.541 WARN 16282 --- [clientInboundChannel-22] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:45.541 WARN 16282 --- [clientInboundChannel-22] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:45.541 WARN 16282 --- [clientInboundChannel-22] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 3c0254a7-3394-924a-6966-b8d4f326f7e3 / null / null
2023-07-23 18:32:54.971 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:54.971 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:54.971 WARN 16282 --- [http-nio-2000-exec-3] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:54.971 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:54.972 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:54.972 WARN 16282 --- [clientInboundChannel-23] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 51d21b79-1a20-194a-4916-5db70bb21056 / null / null
2023-07-23 18:32:57.248 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:32:57.248 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:32:57.248 WARN 16282 --- [http-nio-2000-exec-5] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:32:57.248 WARN 16282 --- [clientInboundChannel-28] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:32:57.249 WARN 16282 --- [clientInboundChannel-28] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:32:57.249 WARN 16282 --- [clientInboundChannel-28] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / c1d371f4-f8a6-9e46-0e28-484f108bebfd / null / null
2023-07-23 18:33:01.303 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:01.304 WARN 16282 --- [clientInboundChannel-32] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:01.304 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:01.304 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:01.304 WARN 16282 --- [clientInboundChannel-32] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:01.304 WARN 16282 --- [clientInboundChannel-32] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 0c461dca-e7e5-8129-6127-7f3996c2f9c2 / null / null
2023-07-23 18:33:03.060 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:03.060 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:03.060 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:03.060 WARN 16282 --- [http-nio-2000-exec-9] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:03.061 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:03.061 WARN 16282 --- [clientInboundChannel-31] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 2e92c6bf-67e5-5049-647e-985a085fbd0d / null / null
2023-07-23 18:33:54.714 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:33:54.717 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:33:54.718 WARN 16282 --- [http-nio-2000-exec-1] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:33:54.717 WARN 16282 --- [clientInboundChannel-34] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:33:54.718 WARN 16282 --- [clientInboundChannel-34] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:33:54.719 WARN 16282 --- [clientInboundChannel-34] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.623 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.624 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.624 WARN 16282 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.624 WARN 16282 --- [clientInboundChannel-37] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.625 WARN 16282 --- [clientInboundChannel-37] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:12.625 WARN 16282 --- [clientInboundChannel-37] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 24fe892f-9600-387e-cf3e-6a0e01591ac3 / null / null
2023-07-23 18:34:16.083 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:16.083 WARN 16282 --- [clientInboundChannel-40] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:16.084 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:16.084 WARN 16282 --- [clientInboundChannel-40] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:16.084 WARN 16282 --- [http-nio-2000-exec-4] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:16.084 WARN 16282 --- [clientInboundChannel-40] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / ad940328-9dab-fd19-5bd9-797dda88dbcb / null / null
2023-07-23 18:34:21.948 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:34:21.950 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:34:21.950 WARN 16282 --- [http-nio-2000-exec-6] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:34:21.950 WARN 16282 --- [clientInboundChannel-43] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:34:21.950 WARN 16282 --- [clientInboundChannel-43] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:34:21.950 WARN 16282 --- [clientInboundChannel-43] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:34:46.380 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:34:46.384 WARN 16282 --- [clientInboundChannel-46] o.s.m.s.b.SimpleBrokerMessageHandler : Ignoring CONNECT in session 5545cbe9-6dad-4fd6-6267-a5bf8359200a. Already connected.
2023-07-23 18:34:46.385 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:34:46.385 WARN 16282 --- [http-nio-2000-exec-7] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / test
2023-07-23 18:35:53.838 WARN 16282 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.838 WARN 16282 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.838 WARN 16282 --- [clientInboundChannel-49] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.838 WARN 16282 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.839 WARN 16282 --- [clientInboundChannel-49] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.839 WARN 16282 --- [clientInboundChannel-49] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 5545cbe9-6dad-4fd6-6267-a5bf8359200a / null / null
2023-07-23 18:35:53.839 INFO 16282 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 18:35:53.839 INFO 16282 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@642d34f1]]
2023-07-23 18:35:53.839 INFO 16282 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 18:35:53.973 INFO 16282 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:35:53.976 INFO 16282 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 18:35:53.984 INFO 16282 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 18:35:57.124 INFO 17152 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:35:57.125 INFO 17152 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:35:57.125 WARN 17152 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:35:57.332 INFO 17152 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:35:57.384 INFO 17152 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 18:35:57.384 INFO 17152 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 18:35:57.394 INFO 17152 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 18:35:57.404 INFO 17152 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:35:57.404 INFO 17152 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:35:57.404 WARN 17152 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:35:58.007 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:35:58.007 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 18:35:58.018 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 6 ms. Found 0 JPA repository interfaces.
2023-07-23 18:35:58.028 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:35:58.028 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 18:35:58.035 INFO 17152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces.
2023-07-23 18:35:58.282 INFO 17152 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=71923601-2eaa-3edc-b7c6-df923ffc92a6
2023-07-23 18:35:58.603 INFO 17152 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 18:35:58.610 INFO 17152 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 18:35:58.610 INFO 17152 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 18:35:58.740 INFO 17152 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 18:35:58.740 INFO 17152 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1336 ms
2023-07-23 18:35:58.880 INFO 17152 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 18:35:58.906 INFO 17152 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 18:35:58.989 INFO 17152 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 18:35:59.041 INFO 17152 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 18:35:59.255 INFO 17152 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 18:35:59.266 INFO 17152 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 18:35:59.371 INFO 17152 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 18:35:59.377 INFO 17152 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:35:59.926 INFO 17152 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 18:35:59.929 INFO 17152 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 18:35:59.929 INFO 17152 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@755009f2]]
2023-07-23 18:35:59.929 INFO 17152 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 18:35:59.936 INFO 17152 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.352 seconds (JVM running for 3.924)
2023-07-23 18:35:59.938 WARN 17152 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 18:36:00.607 INFO 17152 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 18:36:00.608 INFO 17152 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 18:36:00.610 INFO 17152 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2023-07-23 18:36:04.103 WARN 17152 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / test
2023-07-23 18:36:04.106 WARN 17152 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / test
2023-07-23 18:36:04.106 WARN 17152 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / test
2023-07-23 18:36:04.107 WARN 17152 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:36:04.107 WARN 17152 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:36:04.107 WARN 17152 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:36:59.649 INFO 17152 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[1 current WS(1)-HttpStream(0)-HttpPoll(0), 1 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(1)-CONNECTED(1)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 3], outboundChannel[pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 18:38:34.441 WARN 17152 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 WARN 17152 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 WARN 17152 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 WARN 17152 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 WARN 17152 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 WARN 17152 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / a7cbc822-2e26-ac18-dcb6-eed911525b57 / null / null
2023-07-23 18:38:34.442 INFO 17152 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 18:38:34.442 INFO 17152 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@755009f2]]
2023-07-23 18:38:34.443 INFO 17152 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 18:38:34.464 INFO 17152 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:38:34.465 INFO 17152 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 18:38:34.473 INFO 17152 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 18:38:36.423 INFO 17188 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:38:36.424 INFO 17188 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:38:36.424 WARN 17188 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:38:36.609 INFO 17188 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:38:36.653 INFO 17188 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 18:38:36.654 INFO 17188 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 18:38:36.663 INFO 17188 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 18:38:36.671 INFO 17188 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:38:36.671 INFO 17188 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:38:36.671 WARN 17188 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:38:36.985 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:38:36.985 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 18:38:36.995 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 18:38:37.002 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:38:37.003 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 18:38:37.009 INFO 17188 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 18:38:37.103 INFO 17188 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=71923601-2eaa-3edc-b7c6-df923ffc92a6
2023-07-23 18:38:37.299 INFO 17188 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 18:38:37.304 INFO 17188 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 18:38:37.304 INFO 17188 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 18:38:37.370 INFO 17188 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 18:38:37.370 INFO 17188 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 698 ms
2023-07-23 18:38:37.453 INFO 17188 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 18:38:37.473 INFO 17188 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 18:38:37.543 INFO 17188 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 18:38:37.586 INFO 17188 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 18:38:37.624 INFO 17188 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 18:38:37.633 INFO 17188 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 18:38:37.744 INFO 17188 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 18:38:37.750 INFO 17188 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:38:38.261 INFO 17188 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 18:38:38.265 INFO 17188 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 18:38:38.265 INFO 17188 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@458b4487]]
2023-07-23 18:38:38.265 INFO 17188 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 18:38:38.272 INFO 17188 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 2.366 seconds (JVM running for 2.753)
2023-07-23 18:38:38.273 WARN 17188 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 18:38:43.172 INFO 17188 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 18:38:43.173 INFO 17188 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 18:38:43.174 INFO 17188 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2023-07-23 18:38:44.341 WARN 17188 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / test
2023-07-23 18:38:44.343 WARN 17188 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / test
2023-07-23 18:38:44.343 WARN 17188 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / test
2023-07-23 18:38:44.343 WARN 17188 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:38:44.344 WARN 17188 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:38:44.344 WARN 17188 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:38.013 INFO 17188 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[1 current WS(1)-HttpStream(0)-HttpPoll(0), 1 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(1)-CONNECTED(1)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 3], outboundChannel[pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 18:39:41.088 WARN 17188 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.088 WARN 17188 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.088 WARN 17188 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.088 WARN 17188 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.088 WARN 17188 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.088 WARN 17188 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 09eca2b1-c113-c58e-c05f-1bb54186e3d7 / null / null
2023-07-23 18:39:41.089 INFO 17188 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 18:39:41.089 INFO 17188 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@458b4487]]
2023-07-23 18:39:41.090 INFO 17188 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 18:39:41.115 INFO 17188 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:39:41.117 INFO 17188 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 18:39:41.126 INFO 17188 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 18:39:43.725 INFO 17217 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:39:43.727 INFO 17217 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:39:43.727 WARN 17217 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:39:44.097 INFO 17217 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:39:44.144 INFO 17217 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 18:39:44.147 INFO 17217 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 18:39:44.157 INFO 17217 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 18:39:44.165 INFO 17217 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:39:44.165 INFO 17217 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:39:44.165 WARN 17217 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:39:44.777 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:39:44.777 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 18:39:44.790 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 JPA repository interfaces.
2023-07-23 18:39:44.803 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:39:44.804 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 18:39:44.812 INFO 17217 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces.
2023-07-23 18:39:44.988 INFO 17217 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=71923601-2eaa-3edc-b7c6-df923ffc92a6
2023-07-23 18:39:45.436 INFO 17217 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 18:39:45.441 INFO 17217 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 18:39:45.441 INFO 17217 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 18:39:45.520 INFO 17217 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 18:39:45.521 INFO 17217 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1355 ms
2023-07-23 18:39:45.626 INFO 17217 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 18:39:45.655 INFO 17217 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 18:39:45.743 INFO 17217 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 18:39:45.787 INFO 17217 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 18:39:45.832 INFO 17217 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 18:39:45.842 INFO 17217 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 18:39:45.951 INFO 17217 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 18:39:45.957 INFO 17217 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:39:46.489 INFO 17217 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 18:39:46.493 INFO 17217 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 18:39:46.493 INFO 17217 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@296a71df]]
2023-07-23 18:39:46.493 INFO 17217 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 18:39:46.500 INFO 17217 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.292 seconds (JVM running for 3.653)
2023-07-23 18:39:46.501 WARN 17217 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 18:39:48.747 INFO 17217 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 18:39:48.749 INFO 17217 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 18:39:48.750 INFO 17217 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2023-07-23 18:39:49.858 WARN 17217 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / test
2023-07-23 18:39:49.860 WARN 17217 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / test
2023-07-23 18:39:49.860 WARN 17217 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / test
2023-07-23 18:39:49.860 WARN 17217 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:39:49.861 WARN 17217 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:39:49.861 WARN 17217 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:40:46.217 INFO 17217 --- [MessageBroker-1] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[1 current WS(1)-HttpStream(0)-HttpPoll(0), 1 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(1)-CONNECTED(1)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 3], outboundChannel[pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1], sockJsScheduler[pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]
2023-07-23 18:41:29.928 WARN 17217 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: DISCONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.928 WARN 17217 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: DISCONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.928 WARN 17217 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.928 WARN 17217 --- [SpringApplicationShutdownHook] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: DISCONNECT / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.928 WARN 17217 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.928 WARN 17217 --- [clientInboundChannel-5] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / 615336f5-6dbd-f5ff-401e-7356a0184b78 / null / null
2023-07-23 18:41:29.929 INFO 17217 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopping...
2023-07-23 18:41:29.929 INFO 17217 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@296a71df]]
2023-07-23 18:41:29.929 INFO 17217 --- [SpringApplicationShutdownHook] o.s.m.s.b.SimpleBrokerMessageHandler : Stopped.
2023-07-23 18:41:29.952 INFO 17217 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:41:29.953 INFO 17217 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-07-23 18:41:29.961 INFO 17217 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-07-23 18:43:21.705 INFO 17338 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:43:21.706 INFO 17338 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websocket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:43:21.706 WARN 17338 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' imported from location '[ConfigServerConfigDataResource@430fa4ef uris = array<String>['http://newkayak.iptime.org:8888'], optional = false, profiles = list['local']]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:43:21.919 INFO 17338 --- [main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:43:21.954 INFO 17338 --- [main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=base_websotcket, profiles=[default], label=null, version=null, state=null
2023-07-23 18:43:21.955 INFO 17338 --- [main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2023-07-23 18:43:21.964 INFO 17338 --- [main] com.base.websocket.WebsocketApplication : The following 1 profile is active: "local"
2023-07-23 18:43:21.976 INFO 17338 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://newkayak.iptime.org:8888
2023-07-23 18:43:21.976 INFO 17338 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=base_websotcket, profiles=[local], label=null, version=null, state=null
2023-07-23 18:43:21.976 WARN 17338 --- [main] o.s.b.c.config.ConfigDataEnvironment : Property 'spring.profiles' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: Config Server file:/home/config/base_websocket-local.yml:23:13]
2023-07-23 18:43:22.320 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:43:22.321 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-07-23 18:43:22.331 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 JPA repository interfaces.
2023-07-23 18:43:22.340 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
2023-07-23 18:43:22.341 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2023-07-23 18:43:22.348 INFO 17338 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 1 ms. Found 0 Redis repository interfaces.
2023-07-23 18:43:22.517 INFO 17338 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=d6ebbdda-8f8d-3f89-8715-9d3a84713b93
2023-07-23 18:43:22.880 INFO 17338 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 2000 (http)
2023-07-23 18:43:22.911 INFO 17338 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-07-23 18:43:22.911 INFO 17338 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.74]
2023-07-23 18:43:23.074 INFO 17338 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-07-23 18:43:23.075 INFO 17338 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1097 ms
2023-07-23 18:43:23.238 INFO 17338 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-07-23 18:43:23.263 INFO 17338 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2023-07-23 18:43:23.346 INFO 17338 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2023-07-23 18:43:23.396 INFO 17338 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-07-23 18:43:23.666 INFO 17338 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-07-23 18:43:23.679 INFO 17338 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MariaDB103Dialect
2023-07-23 18:43:23.790 INFO 17338 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-07-23 18:43:23.796 INFO 17338 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-07-23 18:43:24.416 INFO 17338 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 2000 (http) with context path ''
2023-07-23 18:43:24.419 INFO 17338 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Starting...
2023-07-23 18:43:24.419 INFO 17338 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : BrokerAvailabilityEvent[available=true, SimpleBrokerMessageHandler [org.springframework.messaging.simp.broker.DefaultSubscriptionRegistry@155318b5]]
2023-07-23 18:43:24.419 INFO 17338 --- [main] o.s.m.s.b.SimpleBrokerMessageHandler : Started.
2023-07-23 18:43:24.427 INFO 17338 --- [main] com.base.websocket.WebsocketApplication : Started WebsocketApplication in 3.25 seconds (JVM running for 3.605)
2023-07-23 18:43:24.428 WARN 17338 --- [main] com.base.websocket.WakeUp :
____ __ __ _ ____ _ _
| __ ) __ _ ___ ___ \ \ / /__| |__/ ___| ___ ___ ___| | _| |_
| _ \ / _` / __|/ _ \ \ \ /\ / / _ \ '_ \___ \ / _ \ / __/ _ \ |/ / __|
| |_) | (_| \__ \ __/ \ V V / __/ |_) |__) | (_) | (_| __/ <| |_
|____/ \__,_|___/\___|___\_/\_/ \___|_.__/____/ \___/ \___\___|_|\_\\__|
|_____| is ready
2023-07-23 18:43:26.489 INFO 17338 --- [http-nio-2000-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-23 18:43:26.491 INFO 17338 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-07-23 18:43:26.492 INFO 17338 --- [http-nio-2000-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2023-07-23 18:43:27.778 WARN 17338 --- [http-nio-2000-exec-2] c.b.w.c.c.s.repository.StompRepository : USER :: true
2023-07-23 18:43:27.779 WARN 17338 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : ?? true
2023-07-23 18:43:27.779 WARN 17338 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: preSend ::: CONNECT / c149f27a-2547-1845-1963-c647854deff8 / null / test
2023-07-23 18:43:27.779 WARN 17338 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: postSend ::: CONNECT / c149f27a-2547-1845-1963-c647854deff8 / null / test
2023-07-23 18:43:27.779 WARN 17338 --- [http-nio-2000-exec-2] c.b.w.c.c.s.interceptor.StompInbound : INBOUND ::: afterSendCompletion ::: CONNECT / c149f27a-2547-1845-1963-c647854deff8 / null / test
2023-07-23 18:43:27.779 WARN 17338 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: preSend ::: null / c149f27a-2547-1845-1963-c647854deff8 / null / null
2023-07-23 18:43:27.780 WARN 17338 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: postSend ::: null / c149f27a-2547-1845-1963-c647854deff8 / null / null
2023-07-23 18:43:27.780 WARN 17338 --- [clientInboundChannel-2] c.b.w.c.c.s.interceptor.StompOutbound : OUTBOUND ::: afterSendCompletion ::: null / c149f27a-2547-1845-1963-c647854deff8 / null / null