forked from serendipitywzz/learn-springboot-sample-space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspringboot-site.log
3753 lines (3465 loc) · 565 KB
/
springboot-site.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
2020-11-14 00:02:31.492 DEBUG 9796 --- [main] .c.l.ClasspathLoggingApplicationListener : Application started with classpath: unknown
2020-11-14 00:02:31.841 INFO 9796 --- [main] ingbootSampleBaselearnProjectApplication : Starting SpringbootSampleBaselearnProjectApplication on PC-Wz with PID 9796 (E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\springboot-sample-baselearn-project\target\classes started by admin in E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space)
2020-11-14 00:02:31.842 DEBUG 9796 --- [main] ingbootSampleBaselearnProjectApplication : Running with Spring Boot v2.3.0.RELEASE, Spring v5.2.6.RELEASE
2020-11-14 00:02:31.846 INFO 9796 --- [main] ingbootSampleBaselearnProjectApplication : No active profile set, falling back to default profiles: default
2020-11-14 00:02:31.846 DEBUG 9796 --- [main] o.s.boot.SpringApplication : Loading source class ink.openmind.springbootsamplebaselearnproject.SpringbootSampleBaselearnProjectApplication
2020-11-14 00:02:31.934 DEBUG 9796 --- [main] o.s.b.c.c.ConfigFileApplicationListener : Loaded config file 'file:/E:/SoftDevWorkspace/JavaEE/learn-springboot-sample-space/springboot-sample-baselearn-project/target/classes/application.properties' (classpath:/application.properties)
2020-11-14 00:02:31.935 DEBUG 9796 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c
2020-11-14 00:02:31.961 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2020-11-14 00:02:31.985 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
2020-11-14 00:02:32.207 DEBUG 9796 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\springboot-sample-baselearn-project\target\classes\ink\openmind\springbootsamplebaselearnproject\controller\HelloController.class]
2020-11-14 00:02:32.821 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: accepted socket from [192.168.2.2:57842]
2020-11-14 00:02:32.859 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:32.917 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.919 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.922 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.923 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.924 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.925 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.931 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:32.957 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:32.957 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.957 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.957 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.957 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.958 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.958 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:32.959 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:32.959 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:32.962 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:32.962 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:32.965 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:32.977 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:33.004 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.005 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@654db02d: connectionId=rmi://192.168.2.2 1] closing.
2020-11-14 00:02:33.006 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@654db02d: connectionId=rmi://192.168.2.2 1] closed.
2020-11-14 00:02:33.030 DEBUG 9796 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.jmx.enabled' in PropertySource 'configurationProperties' with value of type String
2020-11-14 00:02:33.034 DEBUG 9796 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' with value of type String
2020-11-14 00:02:33.516 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:33.517 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.519 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.519 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.519 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.520 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.520 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.520 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.521 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:33.522 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:33.522 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.524 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.525 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:33.525 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:33.526 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:33.536 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:33.537 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:33.537 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@1608d729: connectionId=rmi://192.168.2.2 2] closing.
2020-11-14 00:02:33.537 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@1608d729: connectionId=rmi://192.168.2.2 2] closed.
2020-11-14 00:02:33.816 DEBUG 9796 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.jmx.enabled' in PropertySource 'configurationProperties' with value of type String
2020-11-14 00:02:33.823 DEBUG 9796 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' with value of type String
2020-11-14 00:02:34.039 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:34.039 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.041 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:34.041 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.042 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.042 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.043 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.043 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.043 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.044 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.045 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:34.046 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:34.048 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:34.049 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.051 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.051 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:34.051 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:34.052 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:34.054 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.054 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@53baabce: connectionId=rmi://192.168.2.2 3] closing.
2020-11-14 00:02:34.055 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@53baabce: connectionId=rmi://192.168.2.2 3] closed.
2020-11-14 00:02:34.102 INFO 9796 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2020-11-14 00:02:34.105 INFO 9796 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2020-11-14 00:02:34.177 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
2020-11-14 00:02:34.199 DEBUG 9796 --- [main] o.s.b.a.AutoConfigurationPackages : @EnableAutoConfiguration was declared on a class in the package 'ink.openmind.springbootsamplebaselearnproject'. Automatic @Repository and @Entity scanning is enabled.
2020-11-14 00:02:34.203 DEBUG 9796 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Scanning for Redis repositories in packages ink.openmind.springbootsamplebaselearnproject.
2020-11-14 00:02:34.222 INFO 9796 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 18ms. Found 0 Redis repository interfaces.
2020-11-14 00:02:34.557 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:34.557 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.558 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.559 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.559 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.560 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.560 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.561 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.561 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:34.562 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:34.562 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.563 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.563 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:34.563 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:34.564 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:34.565 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:34.566 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@70a1408d: connectionId=rmi://192.168.2.2 4] closing.
2020-11-14 00:02:34.567 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@70a1408d: connectionId=rmi://192.168.2.2 4] closed.
2020-11-14 00:02:34.606 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
2020-11-14 00:02:34.612 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
2020-11-14 00:02:34.683 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
2020-11-14 00:02:34.684 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
2020-11-14 00:02:34.686 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
2020-11-14 00:02:34.691 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2020-11-14 00:02:34.696 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2020-11-14 00:02:34.721 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
2020-11-14 00:02:34.722 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
2020-11-14 00:02:34.723 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
2020-11-14 00:02:34.723 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
2020-11-14 00:02:34.727 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.amqp.rabbit.config.internalRabbitListenerAnnotationProcessor'
2020-11-14 00:02:34.747 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
2020-11-14 00:02:34.839 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
2020-11-14 00:02:34.853 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
2020-11-14 00:02:34.858 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
2020-11-14 00:02:34.859 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
2020-11-14 00:02:34.860 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
2020-11-14 00:02:34.893 DEBUG 9796 --- [main] o.s.u.c.s.UiApplicationContextUtils : Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@7b7683d4]
2020-11-14 00:02:34.894 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
2020-11-14 00:02:34.895 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
2020-11-14 00:02:34.925 DEBUG 9796 --- [main] o.a.catalina.core.AprLifecycleListener : The Apache Tomcat Native library could not be found using names [tcnative-1, libtcnative-1] on the java.library.path [C:\Program Files\Java\jdk-11.0.9\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\VanDyke Software\Clients\;E:\DevTools\MinGW\installer\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;E:\DevTools\Maven\apache-maven-3.6.3\bin;D:\SoftInstaller\GitExtensionApp\;C:\Program Files (x86)\Inno Setup 5;C:\Program Files (x86)\WiX Toolset v3.11\bin;E:\DevTools\Gradle\gradle-6.5.1\bin;C:\Program Files\MySQL\MySQL Server 8.0\bin;D:\DevToolsUnit\Tool_Node.js\;D:\SoftInstaller\GitApp\Git\cmd;C:\Users\admin\AppData\Local\Microsoft\WindowsApps;D:\SoftInstaller\VSCodeApp\Microsoft VS Code\bin;C:\Users\admin\AppData\Roaming\npm;.]. The errors reported were [Can't load library: E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\bin\tcnative-1.dll, Can't load library: E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\bin\libtcnative-1.dll, no tcnative-1 in java.library.path: [C:\Program Files\Java\jdk-11.0.9\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files\Common Files\Oracle\Java\javapath, C:\Program Files\VanDyke Software\Clients\, E:\DevTools\MinGW\installer\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, E:\DevTools\Maven\apache-maven-3.6.3\bin, D:\SoftInstaller\GitExtensionApp\, C:\Program Files (x86)\Inno Setup 5, C:\Program Files (x86)\WiX Toolset v3.11\bin, E:\DevTools\Gradle\gradle-6.5.1\bin, C:\Program Files\MySQL\MySQL Server 8.0\bin, D:\DevToolsUnit\Tool_Node.js\, D:\SoftInstaller\GitApp\Git\cmd, C:\Users\admin\AppData\Local\Microsoft\WindowsApps, D:\SoftInstaller\VSCodeApp\Microsoft VS Code\bin, C:\Users\admin\AppData\Roaming\npm, .], no libtcnative-1 in java.library.path: [C:\Program Files\Java\jdk-11.0.9\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files\Common Files\Oracle\Java\javapath, C:\Program Files\VanDyke Software\Clients\, E:\DevTools\MinGW\installer\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, E:\DevTools\Maven\apache-maven-3.6.3\bin, D:\SoftInstaller\GitExtensionApp\, C:\Program Files (x86)\Inno Setup 5, C:\Program Files (x86)\WiX Toolset v3.11\bin, E:\DevTools\Gradle\gradle-6.5.1\bin, C:\Program Files\MySQL\MySQL Server 8.0\bin, D:\DevToolsUnit\Tool_Node.js\, D:\SoftInstaller\GitApp\Git\cmd, C:\Users\admin\AppData\Local\Microsoft\WindowsApps, D:\SoftInstaller\VSCodeApp\Microsoft VS Code\bin, C:\Users\admin\AppData\Roaming\npm, .]]
org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\bin\tcnative-1.dll, Can't load library: E:\SoftDevWorkspace\JavaEE\learn-springboot-sample-space\bin\libtcnative-1.dll, no tcnative-1 in java.library.path: [C:\Program Files\Java\jdk-11.0.9\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files\Common Files\Oracle\Java\javapath, C:\Program Files\VanDyke Software\Clients\, E:\DevTools\MinGW\installer\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, E:\DevTools\Maven\apache-maven-3.6.3\bin, D:\SoftInstaller\GitExtensionApp\, C:\Program Files (x86)\Inno Setup 5, C:\Program Files (x86)\WiX Toolset v3.11\bin, E:\DevTools\Gradle\gradle-6.5.1\bin, C:\Program Files\MySQL\MySQL Server 8.0\bin, D:\DevToolsUnit\Tool_Node.js\, D:\SoftInstaller\GitApp\Git\cmd, C:\Users\admin\AppData\Local\Microsoft\WindowsApps, D:\SoftInstaller\VSCodeApp\Microsoft VS Code\bin, C:\Users\admin\AppData\Roaming\npm, .], no libtcnative-1 in java.library.path: [C:\Program Files\Java\jdk-11.0.9\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files\Common Files\Oracle\Java\javapath, C:\Program Files\VanDyke Software\Clients\, E:\DevTools\MinGW\installer\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, E:\DevTools\Maven\apache-maven-3.6.3\bin, D:\SoftInstaller\GitExtensionApp\, C:\Program Files (x86)\Inno Setup 5, C:\Program Files (x86)\WiX Toolset v3.11\bin, E:\DevTools\Gradle\gradle-6.5.1\bin, C:\Program Files\MySQL\MySQL Server 8.0\bin, D:\DevToolsUnit\Tool_Node.js\, D:\SoftInstaller\GitApp\Git\cmd, C:\Users\admin\AppData\Local\Microsoft\WindowsApps, D:\SoftInstaller\VSCodeApp\Microsoft VS Code\bin, C:\Users\admin\AppData\Roaming\npm, .]
at org.apache.tomcat.jni.Library.<init>(Library.java:102) ~[tomcat-embed-core-9.0.35.jar:9.0.35]
at org.apache.tomcat.jni.Library.initialize(Library.java:206) ~[tomcat-embed-core-9.0.35.jar:9.0.35]
at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:198) ~[tomcat-embed-core-9.0.35.jar:9.0.35]
at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:107) ~[tomcat-embed-core-9.0.35.jar:9.0.35]
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultLifecycleListeners(TomcatServletWebServerFactory.java:168) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:119) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:75) ~[spring-boot-autoconfigure-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:651) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1338) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1177) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:557) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:207) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:210) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:175) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:158) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:544) ~[spring-context-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at ink.openmind.springbootsamplebaselearnproject.SpringbootSampleBaselearnProjectApplication.main(SpringbootSampleBaselearnProjectApplication.java:28) ~[classes/:na]
2020-11-14 00:02:34.965 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
2020-11-14 00:02:34.965 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
2020-11-14 00:02:34.967 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
2020-11-14 00:02:34.967 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
2020-11-14 00:02:34.970 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:34.983 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
2020-11-14 00:02:35.007 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:35.008 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
2020-11-14 00:02:35.009 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:35.009 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
2020-11-14 00:02:35.010 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
2020-11-14 00:02:35.013 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
2020-11-14 00:02:35.013 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:35.019 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
2020-11-14 00:02:35.019 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
2020-11-14 00:02:35.020 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:35.054 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageCustomizer'
2020-11-14 00:02:35.054 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
2020-11-14 00:02:35.055 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:35.056 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServletRegistration'
2020-11-14 00:02:35.056 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
2020-11-14 00:02:35.057 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServlet'
2020-11-14 00:02:35.057 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
2020-11-14 00:02:35.059 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2020-11-14 00:02:35.065 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2020-11-14 00:02:35.069 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:35.070 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.070 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:35.070 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.071 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.071 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.071 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.071 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.072 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.072 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.072 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:35.073 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:35.073 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.074 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.074 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:35.074 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 5, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:35.074 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:35.075 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.075 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@663e74d8: connectionId=rmi://192.168.2.2 5] closing.
2020-11-14 00:02:35.076 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@663e74d8: connectionId=rmi://192.168.2.2 5] closed.
2020-11-14 00:02:35.089 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
2020-11-14 00:02:35.090 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2020-11-14 00:02:35.092 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartConfigElement'
2020-11-14 00:02:35.093 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
2020-11-14 00:02:35.094 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
2020-11-14 00:02:35.101 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
2020-11-14 00:02:35.117 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
2020-11-14 00:02:35.385 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol port=8081)
2020-11-14 00:02:35.403 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol bindOnInit=false)
2020-11-14 00:02:35.411 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint bindOnInit=false)
2020-11-14 00:02:35.425 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol maxPostSize=2097152)
2020-11-14 00:02:35.427 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint maxPostSize=2097152)
2020-11-14 00:02:35.463 DEBUG 9796 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardHost[localhost] StandardEngine[Tomcat]
2020-11-14 00:02:35.464 DEBUG 9796 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: E:\DevTools\Maven\maven_repository\org\springframework\boot\spring-boot\2.3.0.RELEASE\spring-boot-2.3.0.RELEASE.jar
2020-11-14 00:02:35.464 DEBUG 9796 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: E:\DevTools\Maven\maven_repository\org\springframework\boot\spring-boot\2.3.0.RELEASE\spring-boot-2.3.0.RELEASE.jar
2020-11-14 00:02:35.464 DEBUG 9796 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
2020-11-14 00:02:35.560 DEBUG 9796 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardWrapper[default] TomcatEmbeddedContext[]
2020-11-14 00:02:35.564 DEBUG 9796 --- [main] org.apache.catalina.core.ContainerBase : Add child TomcatEmbeddedContext[] StandardEngine[Tomcat].StandardHost[localhost]
2020-11-14 00:02:35.575 INFO 9796 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2020-11-14 00:02:35.579 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:35.579 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.581 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.581 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.581 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.583 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.583 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.583 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.583 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:35.585 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:35.585 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.586 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.586 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:35.586 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 6, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:35.587 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:35.589 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:35.589 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@7e13c218: connectionId=rmi://192.168.2.2 6] closing.
2020-11-14 00:02:35.589 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@7e13c218: connectionId=rmi://192.168.2.2 6] closed.
2020-11-14 00:02:35.609 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol parseBodyMethods=POST)
2020-11-14 00:02:35.610 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint parseBodyMethods=POST)
2020-11-14 00:02:35.612 INFO 9796 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2020-11-14 00:02:35.613 INFO 9796 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.35]
2020-11-14 00:02:35.618 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Starting ROOT
2020-11-14 00:02:35.632 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Configuring default Resources
2020-11-14 00:02:35.769 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Processing standard container startup
2020-11-14 00:02:35.773 DEBUG 9796 --- [main] org.apache.catalina.loader.WebappLoader : Starting this Loader
2020-11-14 00:02:35.788 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesRmiTargets=false)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopThreads=false)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopTimerThreads=false)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesHttpClientKeepAliveThread=true)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false)
2020-11-14 00:02:35.791 DEBUG 9796 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesThreadLocals=false)
2020-11-14 00:02:35.861 DEBUG 9796 --- [main] o.a.c.authenticator.AuthenticatorBase : No SingleSignOn Valve is present
2020-11-14 00:02:35.863 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
2020-11-14 00:02:35.871 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Configured a manager of class [org.apache.catalina.session.StandardManager]
2020-11-14 00:02:35.884 DEBUG 9796 --- [main] o.a.c.loader.WebappClassLoaderBase : getResourceAsStream(META-INF/services/org.apache.commons.logging.LogFactory)
2020-11-14 00:02:35.884 DEBUG 9796 --- [main] o.a.c.loader.WebappClassLoaderBase : Delegating to parent classloader jdk.internal.loader.ClassLoaders$AppClassLoader@2437c6dc
2020-11-14 00:02:35.885 DEBUG 9796 --- [main] o.a.c.loader.WebappClassLoaderBase : --> Returning stream from parent
2020-11-14 00:02:35.886 INFO 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2020-11-14 00:02:35.886 DEBUG 9796 --- [main] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2020-11-14 00:02:35.886 INFO 9796 --- [main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3951 ms
2020-11-14 00:02:35.892 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestContextFilter'
2020-11-14 00:02:35.895 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'formContentFilter'
2020-11-14 00:02:35.895 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
2020-11-14 00:02:35.901 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'characterEncodingFilter'
2020-11-14 00:02:35.909 DEBUG 9796 --- [main] o.s.b.w.s.ServletContextInitializerBeans : Mapping filters: characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
2020-11-14 00:02:35.909 DEBUG 9796 --- [main] o.s.b.w.s.ServletContextInitializerBeans : Mapping servlets: dispatcherServlet urls=[/]
2020-11-14 00:02:35.910 DEBUG 9796 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardWrapper[dispatcherServlet] StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]
2020-11-14 00:02:35.917 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Configuring application event listeners
2020-11-14 00:02:35.917 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Configuring event listener class 'org.apache.tomcat.websocket.server.WsContextListener'
2020-11-14 00:02:35.919 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Sending application start events
2020-11-14 00:02:35.936 DEBUG 9796 --- [main] o.a.catalina.session.StandardManager : Start: Loading persisted sessions
2020-11-14 00:02:35.936 DEBUG 9796 --- [main] o.a.catalina.session.StandardManager : Loading persisted sessions from [SESSIONS.ser]
2020-11-14 00:02:35.937 DEBUG 9796 --- [main] o.a.catalina.session.StandardManager : No persisted data file found
2020-11-14 00:02:35.937 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filters
2020-11-14 00:02:35.937 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'requestContextFilter'
2020-11-14 00:02:35.940 DEBUG 9796 --- [main] o.s.b.w.s.f.OrderedRequestContextFilter : Filter 'requestContextFilter' configured for use
2020-11-14 00:02:35.940 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'Tomcat WebSocket (JSR356) Filter'
2020-11-14 00:02:35.940 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'characterEncodingFilter'
2020-11-14 00:02:35.940 DEBUG 9796 --- [main] s.b.w.s.f.OrderedCharacterEncodingFilter : Filter 'characterEncodingFilter' configured for use
2020-11-14 00:02:35.940 DEBUG 9796 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'formContentFilter'
2020-11-14 00:02:35.941 DEBUG 9796 --- [main] o.s.b.w.s.f.OrderedFormContentFilter : Filter 'formContentFilter' configured for use
2020-11-14 00:02:35.941 DEBUG 9796 --- [main] o.apache.catalina.core.StandardContext : Starting completed
2020-11-14 00:02:35.944 DEBUG 9796 --- [main] org.apache.catalina.mapper.Mapper : Registered host [localhost]
2020-11-14 00:02:35.944 DEBUG 9796 --- [main] o.apache.catalina.mapper.MapperListener : Register Wrapper [default] in Context [] for service [StandardService[Tomcat]]
2020-11-14 00:02:35.945 DEBUG 9796 --- [main] o.apache.catalina.mapper.MapperListener : Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
2020-11-14 00:02:35.946 DEBUG 9796 --- [main] o.apache.catalina.mapper.MapperListener : Register Context [] for service [StandardService[Tomcat]]
2020-11-14 00:02:35.946 DEBUG 9796 --- [main] o.apache.catalina.mapper.MapperListener : Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
2020-11-14 00:02:35.956 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springbootSampleBaselearnProjectApplication'
2020-11-14 00:02:35.957 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'helloController'
2020-11-14 00:02:35.958 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
2020-11-14 00:02:35.958 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
2020-11-14 00:02:35.959 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
2020-11-14 00:02:35.959 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
2020-11-14 00:02:35.960 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
2020-11-14 00:02:35.960 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'taskExecutorBuilder'
2020-11-14 00:02:35.961 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
2020-11-14 00:02:35.965 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
2020-11-14 00:02:35.967 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
2020-11-14 00:02:35.968 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'error'
2020-11-14 00:02:35.969 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameViewResolver'
2020-11-14 00:02:35.970 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
2020-11-14 00:02:35.972 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
2020-11-14 00:02:35.976 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c'
2020-11-14 00:02:35.976 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
2020-11-14 00:02:35.976 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'conventionErrorViewResolver'
2020-11-14 00:02:35.994 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorAttributes'
2020-11-14 00:02:35.999 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'basicErrorController'
2020-11-14 00:02:36.000 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes'
2020-11-14 00:02:36.011 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
2020-11-14 00:02:36.013 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
2020-11-14 00:02:36.013 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3829ac1'
2020-11-14 00:02:36.030 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
2020-11-14 00:02:36.032 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
2020-11-14 00:02:36.032 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2020-11-14 00:02:36.032 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3829ac1'
2020-11-14 00:02:36.033 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration'
2020-11-14 00:02:36.034 DEBUG 9796 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.data.web.config.SpringDataWebConfiguration$$EnhancerBySpringCGLIB$$5f51b148] - unable to determine constructor/method parameter names
2020-11-14 00:02:36.035 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c'
2020-11-14 00:02:36.038 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pageableCustomizer'
2020-11-14 00:02:36.039 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration'
2020-11-14 00:02:36.039 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
2020-11-14 00:02:36.040 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
2020-11-14 00:02:36.043 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sortCustomizer'
2020-11-14 00:02:36.047 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerAdapter'
2020-11-14 00:02:36.052 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcContentNegotiationManager'
2020-11-14 00:02:36.062 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcConversionService'
2020-11-14 00:02:36.076 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcValidator'
2020-11-14 00:02:36.079 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.079 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.079 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator'
2020-11-14 00:02:36.083 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.083 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.083 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator'
2020-11-14 00:02:36.091 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:36.091 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.092 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:36.093 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.093 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.093 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.093 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.093 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.094 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.094 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.095 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:36.095 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.095 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.095 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:36.095 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 7, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:36.096 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.server.call : RMI TCP Connection(1)-192.168.2.2: [192.168.2.2] exception:
javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na]
at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:637) ~[na:na]
at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1443) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1307) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1399) ~[na:na]
at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:637) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) ~[na:na]
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677) ~[na:na]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
2020-11-14 00:02:36.097 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.097 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@17f6ba7a: connectionId=rmi://192.168.2.2 7] closing.
2020-11-14 00:02:36.097 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@17f6ba7a: connectionId=rmi://192.168.2.2 7] closed.
2020-11-14 00:02:36.109 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'messageConverters'
2020-11-14 00:02:36.109 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
2020-11-14 00:02:36.112 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'stringHttpMessageConverter'
2020-11-14 00:02:36.112 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
2020-11-14 00:02:36.113 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2020-11-14 00:02:36.118 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
2020-11-14 00:02:36.118 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
2020-11-14 00:02:36.119 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonObjectMapper'
2020-11-14 00:02:36.120 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
2020-11-14 00:02:36.120 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
2020-11-14 00:02:36.121 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
2020-11-14 00:02:36.122 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
2020-11-14 00:02:36.123 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
2020-11-14 00:02:36.126 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c'
2020-11-14 00:02:36.126 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
2020-11-14 00:02:36.127 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c'
2020-11-14 00:02:36.127 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
2020-11-14 00:02:36.129 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterNamesModule'
2020-11-14 00:02:36.130 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
2020-11-14 00:02:36.133 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jsonComponentModule'
2020-11-14 00:02:36.133 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
2020-11-14 00:02:36.138 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonGeoModule'
2020-11-14 00:02:36.139 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration'
2020-11-14 00:02:36.145 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
2020-11-14 00:02:36.163 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
2020-11-14 00:02:36.176 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sortResolver'
2020-11-14 00:02:36.202 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pageableResolver'
2020-11-14 00:02:36.211 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'applicationTaskExecutor'
2020-11-14 00:02:36.213 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder'
2020-11-14 00:02:36.222 INFO 9796 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2020-11-14 00:02:36.235 DEBUG 9796 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2020-11-14 00:02:36.260 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerMapping'
2020-11-14 00:02:36.261 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcResourceUrlProvider'
2020-11-14 00:02:36.262 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.262 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.262 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.263 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.263 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.263 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.308 DEBUG 9796 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : 5 mappings in 'requestMappingHandlerMapping'
2020-11-14 00:02:36.309 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'welcomePageHandlerMapping'
2020-11-14 00:02:36.310 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@2d96543c'
2020-11-14 00:02:36.310 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.310 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.316 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcPathMatcher'
2020-11-14 00:02:36.317 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUrlPathHelper'
2020-11-14 00:02:36.318 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewControllerHandlerMapping'
2020-11-14 00:02:36.319 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcPathMatcher'
2020-11-14 00:02:36.319 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcUrlPathHelper'
2020-11-14 00:02:36.319 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.319 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.320 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameHandlerMapping'
2020-11-14 00:02:36.320 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.320 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.323 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'routerFunctionMapping'
2020-11-14 00:02:36.324 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.324 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.326 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'resourceHandlerMapping'
2020-11-14 00:02:36.327 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcUrlPathHelper'
2020-11-14 00:02:36.327 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcPathMatcher'
2020-11-14 00:02:36.328 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.328 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.328 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
2020-11-14 00:02:36.345 DEBUG 9796 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2020-11-14 00:02:36.346 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultServletHandlerMapping'
2020-11-14 00:02:36.347 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'handlerFunctionAdapter'
2020-11-14 00:02:36.350 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUriComponentsContributor'
2020-11-14 00:02:36.351 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService'
2020-11-14 00:02:36.351 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter'
2020-11-14 00:02:36.353 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'httpRequestHandlerAdapter'
2020-11-14 00:02:36.353 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'simpleControllerHandlerAdapter'
2020-11-14 00:02:36.354 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'handlerExceptionResolver'
2020-11-14 00:02:36.354 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.359 DEBUG 9796 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2020-11-14 00:02:36.362 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcViewResolver'
2020-11-14 00:02:36.362 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager'
2020-11-14 00:02:36.364 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultViewResolver'
2020-11-14 00:02:36.370 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewResolver'
2020-11-14 00:02:36.372 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3829ac1'
2020-11-14 00:02:36.374 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration'
2020-11-14 00:02:36.375 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.mybatis.spring.boot.autoconfigure.MybatisLanguageDriverAutoConfiguration'
2020-11-14 00:02:36.376 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration'
2020-11-14 00:02:36.376 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'environment'
2020-11-14 00:02:36.377 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mbeanExporter'
2020-11-14 00:02:36.378 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'objectNamingStrategy'
2020-11-14 00:02:36.381 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy'
2020-11-14 00:02:36.381 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3829ac1'
2020-11-14 00:02:36.387 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mbeanServer'
2020-11-14 00:02:36.390 DEBUG 9796 --- [main] o.springframework.jmx.support.JmxUtils : Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@a74868d
2020-11-14 00:02:36.394 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration'
2020-11-14 00:02:36.395 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springApplicationAdminRegistrar'
2020-11-14 00:02:36.395 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment'
2020-11-14 00:02:36.403 DEBUG 9796 --- [main] inMXBeanRegistrar$SpringApplicationAdmin : Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication'
2020-11-14 00:02:36.403 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration$RabbitConnectionFactoryCreator'
2020-11-14 00:02:36.404 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rabbitConnectionFactory'
2020-11-14 00:02:36.405 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.rabbitmq-org.springframework.boot.autoconfigure.amqp.RabbitProperties'
2020-11-14 00:02:36.413 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitConnectionFactory' via factory method to bean named 'spring.rabbitmq-org.springframework.boot.autoconfigure.amqp.RabbitProperties'
2020-11-14 00:02:36.519 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:570a119742c4e3cc, Subject:CN=Actalis Authentication Root CA, O=Actalis S.p.A./03358520967, L=Milan, C=IT, Issuer:CN=Actalis Authentication Root CA, O=Actalis S.p.A./03358520967, L=Milan, C=IT, Key type:RSA, Length:4096, Cert Id:1729119956, Valid from:2011/9/22 下午7:22, Valid until:2030/9/22 下午7:22
2020-11-14 00:02:36.521 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:1, Subject:CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE, Issuer:CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE, Key type:RSA, Length:2048, Cert Id:-326352672, Valid from:2000/5/30 下午6:48, Valid until:2020/5/30 下午6:48
2020-11-14 00:02:36.522 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:1, Subject:CN=AddTrust Qualified CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE, Issuer:CN=AddTrust Qualified CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE, Key type:RSA, Length:2048, Cert Id:607365522, Valid from:2000/5/30 下午6:44, Valid until:2020/5/30 下午6:44
2020-11-14 00:02:36.524 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:7777062726a9b17c, Subject:CN=AffirmTrust Commercial, O=AffirmTrust, C=US, Issuer:CN=AffirmTrust Commercial, O=AffirmTrust, C=US, Key type:RSA, Length:2048, Cert Id:630485644, Valid from:2010/1/29 下午10:06, Valid until:2030/12/31 下午10:06
2020-11-14 00:02:36.527 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:7c4f04391cd4992d, Subject:CN=AffirmTrust Networking, O=AffirmTrust, C=US, Issuer:CN=AffirmTrust Networking, O=AffirmTrust, C=US, Key type:RSA, Length:2048, Cert Id:651670175, Valid from:2010/1/29 下午10:08, Valid until:2030/12/31 下午10:08
2020-11-14 00:02:36.528 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:6d8c1446b1a60aee, Subject:CN=AffirmTrust Premium, O=AffirmTrust, C=US, Issuer:CN=AffirmTrust Premium, O=AffirmTrust, C=US, Key type:RSA, Length:4096, Cert Id:-2130283955, Valid from:2010/1/29 下午10:10, Valid until:2040/12/31 下午10:10
2020-11-14 00:02:36.530 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:7497258ac73f7a54, Subject:CN=AffirmTrust Premium ECC, O=AffirmTrust, C=US, Issuer:CN=AffirmTrust Premium ECC, O=AffirmTrust, C=US, Key type:EC, Length:384, Cert Id:-2080363786, Valid from:2010/1/29 下午10:20, Valid until:2040/12/31 下午10:20
2020-11-14 00:02:36.533 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:66c9fcf99bf8c0a39e2f0788a43e696365bca, Subject:CN=Amazon Root CA 1, O=Amazon, C=US, Issuer:CN=Amazon Root CA 1, O=Amazon, C=US, Key type:RSA, Length:2048, Cert Id:-1472444962, Valid from:2015/5/26 上午8:00, Valid until:2038/1/17 上午8:00
2020-11-14 00:02:36.534 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:66c9fd29635869f0a0fe58678f85b26bb8a37, Subject:CN=Amazon Root CA 2, O=Amazon, C=US, Issuer:CN=Amazon Root CA 2, O=Amazon, C=US, Key type:RSA, Length:4096, Cert Id:-1766132388, Valid from:2015/5/26 上午8:00, Valid until:2040/5/26 上午8:00
2020-11-14 00:02:36.537 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withECDSA, Serial:66c9fd5749736663f3b0b9ad9e89e7603f24a, Subject:CN=Amazon Root CA 3, O=Amazon, C=US, Issuer:CN=Amazon Root CA 3, O=Amazon, C=US, Key type:EC, Length:256, Cert Id:-1562287523, Valid from:2015/5/26 上午8:00, Valid until:2040/5/26 上午8:00
2020-11-14 00:02:36.538 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:66c9fd7c1bb104c2943e5717b7b2cc81ac10e, Subject:CN=Amazon Root CA 4, O=Amazon, C=US, Issuer:CN=Amazon Root CA 4, O=Amazon, C=US, Key type:EC, Length:384, Cert Id:-1654272513, Valid from:2015/5/26 上午8:00, Valid until:2040/5/26 上午8:00
2020-11-14 00:02:36.539 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:20000b9, Subject:CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE, Issuer:CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE, Key type:RSA, Length:2048, Cert Id:1425294543, Valid from:2000/5/13 上午2:46, Valid until:2025/5/13 上午7:59
2020-11-14 00:02:36.540 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:2, Subject:CN=Buypass Class 2 Root CA, O=Buypass AS-983163327, C=NO, Issuer:CN=Buypass Class 2 Root CA, O=Buypass AS-983163327, C=NO, Key type:RSA, Length:4096, Cert Id:969960563, Valid from:2010/10/26 下午4:38, Valid until:2040/10/26 下午4:38
2020-11-14 00:02:36.541 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:2, Subject:CN=Buypass Class 3 Root CA, O=Buypass AS-983163327, C=NO, Issuer:CN=Buypass Class 3 Root CA, O=Buypass AS-983163327, C=NO, Key type:RSA, Length:4096, Cert Id:1264269967, Valid from:2010/10/26 下午4:28, Valid until:2040/10/26 下午4:28
2020-11-14 00:02:36.543 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:a3da427ea4b1aeda, Subject:CN=Chambers of Commerce Root - 2008, O=AC Camerfirma S.A., SERIALNUMBER=A82743287, L=Madrid (see current address at www.camerfirma.com/address), C=EU, Issuer:CN=Chambers of Commerce Root - 2008, O=AC Camerfirma S.A., SERIALNUMBER=A82743287, L=Madrid (see current address at www.camerfirma.com/address), C=EU, Key type:RSA, Length:4096, Cert Id:-28263924, Valid from:2008/8/1 下午8:29, Valid until:2038/7/31 下午8:29
2020-11-14 00:02:36.547 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:0, Subject:CN=Chambers of Commerce Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU, Issuer:CN=Chambers of Commerce Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU, Key type:RSA, Length:2048, Cert Id:1827306452, Valid from:2003/10/1 上午12:13, Valid until:2037/10/1 上午12:13
2020-11-14 00:02:36.549 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:c9cdd3e9d57d23ce, Subject:CN=Global Chambersign Root - 2008, O=AC Camerfirma S.A., SERIALNUMBER=A82743287, L=Madrid (see current address at www.camerfirma.com/address), C=EU, Issuer:CN=Global Chambersign Root - 2008, O=AC Camerfirma S.A., SERIALNUMBER=A82743287, L=Madrid (see current address at www.camerfirma.com/address), C=EU, Key type:RSA, Length:4096, Cert Id:1271252776, Valid from:2008/8/1 下午8:31, Valid until:2038/7/31 下午8:31
2020-11-14 00:02:36.550 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:10020, Subject:CN=Certum CA, O=Unizeto Sp. z o.o., C=PL, Issuer:CN=Certum CA, O=Unizeto Sp. z o.o., C=PL, Key type:RSA, Length:2048, Cert Id:-744451266, Valid from:2002/6/11 下午6:46, Valid until:2027/6/11 下午6:46
2020-11-14 00:02:36.552 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:444c0, Subject:CN=Certum Trusted Network CA, OU=Certum Certification Authority, O=Unizeto Technologies S.A., C=PL, Issuer:CN=Certum Trusted Network CA, OU=Certum Certification Authority, O=Unizeto Technologies S.A., C=PL, Key type:RSA, Length:2048, Cert Id:2014002193, Valid from:2008/10/22 下午8:07, Valid until:2029/12/31 下午8:07
2020-11-14 00:02:36.554 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:15c8bd65475cafb897005ee406d2bc9d, Subject:OU=ePKI Root Certification Authority, O="Chunghwa Telecom Co., Ltd.", C=TW, Issuer:OU=ePKI Root Certification Authority, O="Chunghwa Telecom Co., Ltd.", C=TW, Key type:RSA, Length:4096, Cert Id:-662636137, Valid from:2004/12/20 上午10:31, Valid until:2034/12/20 上午10:31
2020-11-14 00:02:36.555 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:1, Subject:CN=AAA Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB, Issuer:CN=AAA Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB, Key type:RSA, Length:2048, Cert Id:-1197580894, Valid from:2004/1/1 上午8:00, Valid until:2029/1/1 上午7:59
2020-11-14 00:02:36.556 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:1f47afaa62007050544c019e9b63992a, Subject:CN=COMODO ECC Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB, Issuer:CN=COMODO ECC Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB, Key type:EC, Length:384, Cert Id:1146488932, Valid from:2008/3/6 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.557 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:4caaf9cadb636fe01ff74ed85b03869d, Subject:CN=COMODO RSA Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB, Issuer:CN=COMODO RSA Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB, Key type:RSA, Length:4096, Cert Id:1769425049, Valid from:2010/1/19 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.558 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:b931c3ad63967ea6723bfc3af9af44b, Subject:CN=DigiCert Assured ID Root G2, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Assured ID Root G2, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:2048, Cert Id:-385398383, Valid from:2013/8/1 下午8:00, Valid until:2038/1/15 下午8:00
2020-11-14 00:02:36.559 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:ba15afa1ddfa0b54944afcd24a06cec, Subject:CN=DigiCert Assured ID Root G3, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Assured ID Root G3, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:EC, Length:384, Cert Id:-645537245, Valid from:2013/8/1 下午8:00, Valid until:2038/1/15 下午8:00
2020-11-14 00:02:36.566 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:ce7e0e517d846fe8fe560fc1bf03039, Subject:CN=DigiCert Assured ID Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Assured ID Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:2048, Cert Id:-860404528, Valid from:2006/11/10 上午8:00, Valid until:2031/11/10 上午8:00
2020-11-14 00:02:36.568 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:83be056904246b1a1756ac95991c74a, Subject:CN=DigiCert Global Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Global Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:2048, Cert Id:1341898239, Valid from:2006/11/10 上午8:00, Valid until:2031/11/10 上午8:00
2020-11-14 00:02:36.569 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:33af1e6a711a9a0bb2864b11d09fae5, Subject:CN=DigiCert Global Root G2, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Global Root G2, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:2048, Cert Id:1136084297, Valid from:2013/8/1 下午8:00, Valid until:2038/1/15 下午8:00
2020-11-14 00:02:36.571 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:55556bcf25ea43535c3a40fd5ab4572, Subject:CN=DigiCert Global Root G3, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Global Root G3, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:EC, Length:384, Cert Id:-795968543, Valid from:2013/8/1 下午8:00, Valid until:2038/1/15 下午8:00
2020-11-14 00:02:36.572 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:2ac5c266a0b409b8f0b79f2ae462577, Subject:CN=DigiCert High Assurance EV Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert High Assurance EV Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:2048, Cert Id:-1410680354, Valid from:2006/11/10 上午8:00, Valid until:2031/11/10 上午8:00
2020-11-14 00:02:36.576 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:59b1b579e8e2132e23907bda777755c, Subject:CN=DigiCert Trusted Root G4, OU=www.digicert.com, O=DigiCert Inc, C=US, Issuer:CN=DigiCert Trusted Root G4, OU=www.digicert.com, O=DigiCert Inc, C=US, Key type:RSA, Length:4096, Cert Id:1057369358, Valid from:2013/8/1 下午8:00, Valid until:2038/1/15 下午8:00
2020-11-14 00:02:36.599 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:36.599 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.601 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:36.601 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.601 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.601 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.601 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.602 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.602 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.602 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:36.603 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:36.603 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.603 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.603 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:36.603 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 8, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:36.606 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:36.607 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@1b0423c1: connectionId=rmi://192.168.2.2 8] closing.
2020-11-14 00:02:36.607 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@1b0423c1: connectionId=rmi://192.168.2.2 8] closed.
2020-11-14 00:02:36.607 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:983f3, Subject:CN=D-TRUST Root Class 3 CA 2 2009, O=D-Trust GmbH, C=DE, Issuer:CN=D-TRUST Root Class 3 CA 2 2009, O=D-Trust GmbH, C=DE, Key type:RSA, Length:2048, Cert Id:1430153102, Valid from:2009/11/5 下午4:35, Valid until:2029/11/5 下午4:35
2020-11-14 00:02:36.611 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:983f4, Subject:CN=D-TRUST Root Class 3 CA 2 EV 2009, O=D-Trust GmbH, C=DE, Issuer:CN=D-TRUST Root Class 3 CA 2 EV 2009, O=D-Trust GmbH, C=DE, Key type:RSA, Length:2048, Cert Id:971313728, Valid from:2009/11/5 下午4:50, Valid until:2029/11/5 下午4:50
2020-11-14 00:02:36.613 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:3863def8, Subject:CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net, Issuer:CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net, Key type:RSA, Length:2048, Cert Id:-328536082, Valid from:1999/12/25 上午1:50, Valid until:2029/7/24 下午10:15
2020-11-14 00:02:36.615 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:456b5054, Subject:CN=Entrust Root Certification Authority, OU="(c) 2006 Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, O="Entrust, Inc.", C=US, Issuer:CN=Entrust Root Certification Authority, OU="(c) 2006 Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, O="Entrust, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:-1261404096, Valid from:2006/11/28 上午4:23, Valid until:2026/11/28 上午4:53
2020-11-14 00:02:36.616 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:a68b79290000000050d091f9, Subject:CN=Entrust Root Certification Authority - EC1, OU="(c) 2012 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Issuer:CN=Entrust Root Certification Authority - EC1, OU="(c) 2012 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Key type:EC, Length:384, Cert Id:924514073, Valid from:2012/12/18 下午11:25, Valid until:2037/12/18 下午11:55
2020-11-14 00:02:36.617 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:4a538c28, Subject:CN=Entrust Root Certification Authority - G2, OU="(c) 2009 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Issuer:CN=Entrust Root Certification Authority - G2, OU="(c) 2009 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:1936920337, Valid from:2009/7/8 上午1:25, Valid until:2030/12/8 上午1:55
2020-11-14 00:02:36.617 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:d9b5437fafa9390f000000005565ad58, Subject:CN=Entrust Root Certification Authority - G4, OU="(c) 2015 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Issuer:CN=Entrust Root Certification Authority - G4, OU="(c) 2015 Entrust, Inc. - for authorized use only", OU=See www.entrust.net/legal-terms, O="Entrust, Inc.", C=US, Key type:RSA, Length:4096, Cert Id:1368037548, Valid from:2015/5/27 下午7:11, Valid until:2037/12/27 下午7:41
2020-11-14 00:02:36.618 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:23456, Subject:CN=GeoTrust Global CA, O=GeoTrust Inc., C=US, Issuer:CN=GeoTrust Global CA, O=GeoTrust Inc., C=US, Key type:RSA, Length:2048, Cert Id:-2028617374, Valid from:2002/5/21 下午12:00, Valid until:2022/5/21 下午12:00
2020-11-14 00:02:36.619 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:18acb56afd69b6153a636cafdafac4a1, Subject:CN=GeoTrust Primary Certification Authority, O=GeoTrust Inc., C=US, Issuer:CN=GeoTrust Primary Certification Authority, O=GeoTrust Inc., C=US, Key type:RSA, Length:2048, Cert Id:-965345157, Valid from:2006/11/27 上午8:00, Valid until:2036/7/17 上午7:59
2020-11-14 00:02:36.620 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:3cb2f4480a00e2feeb243b5e603ec36b, Subject:CN=GeoTrust Primary Certification Authority - G2, OU=(c) 2007 GeoTrust Inc. - For authorized use only, O=GeoTrust Inc., C=US, Issuer:CN=GeoTrust Primary Certification Authority - G2, OU=(c) 2007 GeoTrust Inc. - For authorized use only, O=GeoTrust Inc., C=US, Key type:EC, Length:384, Cert Id:-1114303822, Valid from:2007/11/5 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.620 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:15ac6e9419b2794b41f627a9c3180f1f, Subject:CN=GeoTrust Primary Certification Authority - G3, OU=(c) 2008 GeoTrust Inc. - For authorized use only, O=GeoTrust Inc., C=US, Issuer:CN=GeoTrust Primary Certification Authority - G3, OU=(c) 2008 GeoTrust Inc. - For authorized use only, O=GeoTrust Inc., C=US, Key type:RSA, Length:2048, Cert Id:-1330153758, Valid from:2008/4/2 上午8:00, Valid until:2037/12/2 上午7:59
2020-11-14 00:02:36.621 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:1, Subject:CN=GeoTrust Universal CA, O=GeoTrust Inc., C=US, Issuer:CN=GeoTrust Universal CA, O=GeoTrust Inc., C=US, Key type:RSA, Length:4096, Cert Id:313566089, Valid from:2004/3/4 下午1:00, Valid until:2029/3/4 下午1:00
2020-11-14 00:02:36.622 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:40000000001154b5ac394, Subject:CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE, Issuer:CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE, Key type:RSA, Length:2048, Cert Id:536948034, Valid from:1998/9/1 下午8:00, Valid until:2028/1/28 下午8:00
2020-11-14 00:02:36.623 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withECDSA, Serial:2a38a41c960a04de42b228a50be8349802, Subject:CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R4, Issuer:CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R4, Key type:EC, Length:256, Cert Id:-1923273545, Valid from:2012/11/13 上午8:00, Valid until:2038/1/19 上午11:14
2020-11-14 00:02:36.623 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:605949e0262ebb55f90a778a71f94ad86c, Subject:CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R5, Issuer:CN=GlobalSign, O=GlobalSign, OU=GlobalSign ECC Root CA - R5, Key type:EC, Length:384, Cert Id:1997048439, Valid from:2012/11/13 上午8:00, Valid until:2038/1/19 上午11:14
2020-11-14 00:02:36.624 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:400000000010f8626e60d, Subject:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R2, Issuer:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R2, Key type:RSA, Length:2048, Cert Id:7087067, Valid from:2006/12/15 下午4:00, Valid until:2021/12/15 下午4:00
2020-11-14 00:02:36.625 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:4000000000121585308a2, Subject:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R3, Issuer:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R3, Key type:RSA, Length:2048, Cert Id:733875591, Valid from:2009/3/18 下午6:00, Valid until:2029/3/18 下午6:00
2020-11-14 00:02:36.629 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:45e6bb038333c3856548e6ff4551, Subject:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R6, Issuer:CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R6, Key type:RSA, Length:4096, Cert Id:-506627753, Valid from:2014/12/10 上午8:00, Valid until:2034/12/10 上午8:00
2020-11-14 00:02:36.630 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:0, Subject:OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US, Issuer:OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:-271444299, Valid from:2004/6/30 上午1:06, Valid until:2034/6/30 上午1:06
2020-11-14 00:02:36.632 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:0, Subject:CN=Go Daddy Root Certificate Authority - G2, O="GoDaddy.com, Inc.", L=Scottsdale, ST=Arizona, C=US, Issuer:CN=Go Daddy Root Certificate Authority - G2, O="GoDaddy.com, Inc.", L=Scottsdale, ST=Arizona, C=US, Key type:RSA, Length:2048, Cert Id:439600313, Valid from:2009/9/1 上午8:00, Valid until:2038/1/1 上午7:59
2020-11-14 00:02:36.632 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:a0142800000014523c844b500000002, Subject:CN=IdenTrust Commercial Root CA 1, O=IdenTrust, C=US, Issuer:CN=IdenTrust Commercial Root CA 1, O=IdenTrust, C=US, Key type:RSA, Length:4096, Cert Id:1232565210, Valid from:2014/1/17 上午2:12, Valid until:2034/1/17 上午2:12
2020-11-14 00:02:36.633 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:44afb080d6a327ba893039862ef8406b, Subject:CN=DST Root CA X3, O=Digital Signature Trust Co., Issuer:CN=DST Root CA X3, O=Digital Signature Trust Co., Key type:RSA, Length:2048, Cert Id:1007302312, Valid from:2000/10/1 上午5:12, Valid until:2021/9/30 下午10:01
2020-11-14 00:02:36.634 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:a0142800000014523cf467c00000002, Subject:CN=IdenTrust Public Sector Root CA 1, O=IdenTrust, C=US, Issuer:CN=IdenTrust Public Sector Root CA 1, O=IdenTrust, C=US, Key type:RSA, Length:4096, Cert Id:2123370772, Valid from:2014/1/17 上午1:53, Valid until:2034/1/17 上午1:53
2020-11-14 00:02:36.635 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:8210cfb0d240e3594463e0bb63828b00, Subject:CN=ISRG Root X1, O=Internet Security Research Group, C=US, Issuer:CN=ISRG Root X1, O=Internet Security Research Group, C=US, Key type:RSA, Length:4096, Cert Id:1521974916, Valid from:2015/6/4 下午7:04, Valid until:2035/6/4 下午7:04
2020-11-14 00:02:36.635 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:a7ea6df4b449eda6a24859ee6b815d3167fbbb1, Subject:CN=LuxTrust Global Root 2, O=LuxTrust S.A., C=LU, Issuer:CN=LuxTrust Global Root 2, O=LuxTrust S.A., C=LU, Key type:RSA, Length:4096, Cert Id:-1239330694, Valid from:2015/3/5 下午9:21, Valid until:2035/3/5 下午9:21
2020-11-14 00:02:36.636 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:bb8, Subject:CN=LuxTrust Global Root, O=LuxTrust s.a., C=LU, Issuer:CN=LuxTrust Global Root, O=LuxTrust s.a., C=LU, Key type:RSA, Length:2048, Cert Id:1714819687, Valid from:2011/3/17 下午5:51, Valid until:2021/3/17 下午5:51
2020-11-14 00:02:36.638 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:3ab6508b, Subject:CN=QuoVadis Root Certification Authority, OU=Root Certification Authority, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root Certification Authority, OU=Root Certification Authority, O=QuoVadis Limited, C=BM, Key type:RSA, Length:2048, Cert Id:-1882405602, Valid from:2001/3/20 上午2:33, Valid until:2021/3/18 上午2:33
2020-11-14 00:02:36.639 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:78585f2ead2c194be3370735341328b596d46593, Subject:CN=QuoVadis Root CA 1 G3, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root CA 1 G3, O=QuoVadis Limited, C=BM, Key type:RSA, Length:4096, Cert Id:-762436034, Valid from:2012/1/13 上午1:27, Valid until:2042/1/13 上午1:27
2020-11-14 00:02:36.640 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:509, Subject:CN=QuoVadis Root CA 2, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root CA 2, O=QuoVadis Limited, C=BM, Key type:RSA, Length:4096, Cert Id:338250116, Valid from:2006/11/25 上午2:27, Valid until:2031/11/25 上午2:23
2020-11-14 00:02:36.640 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:445734245b81899b35f2ceb82b3b5ba726f07528, Subject:CN=QuoVadis Root CA 2 G3, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root CA 2 G3, O=QuoVadis Limited, C=BM, Key type:RSA, Length:4096, Cert Id:696763521, Valid from:2012/1/13 上午2:59, Valid until:2042/1/13 上午2:59
2020-11-14 00:02:36.641 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:5c6, Subject:CN=QuoVadis Root CA 3, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root CA 3, O=QuoVadis Limited, C=BM, Key type:RSA, Length:4096, Cert Id:1470392860, Valid from:2006/11/25 上午3:11, Valid until:2031/11/25 上午3:06
2020-11-14 00:02:36.643 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:2ef59b0228a7db7affd5a3a9eebd03a0cf126a1d, Subject:CN=QuoVadis Root CA 3 G3, O=QuoVadis Limited, C=BM, Issuer:CN=QuoVadis Root CA 3 G3, O=QuoVadis Limited, C=BM, Key type:RSA, Length:4096, Cert Id:-705622991, Valid from:2012/1/13 上午4:26, Valid until:2042/1/13 上午4:26
2020-11-14 00:02:36.644 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:0, Subject:OU=Security Communication RootCA1, O=SECOM Trust.net, C=JP, Issuer:OU=Security Communication RootCA1, O=SECOM Trust.net, C=JP, Key type:RSA, Length:2048, Cert Id:1802358121, Valid from:2003/9/30 下午12:20, Valid until:2023/9/30 下午12:20
2020-11-14 00:02:36.645 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:0, Subject:OU=Security Communication RootCA2, O="SECOM Trust Systems CO.,LTD.", C=JP, Issuer:OU=Security Communication RootCA2, O="SECOM Trust Systems CO.,LTD.", C=JP, Key type:RSA, Length:2048, Cert Id:1521072570, Valid from:2009/5/29 下午1:00, Valid until:2029/5/29 下午1:00
2020-11-14 00:02:36.646 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:cf08e5c0816a5ad427ff0eb271859d0, Subject:CN=SecureTrust CA, O=SecureTrust Corporation, C=US, Issuer:CN=SecureTrust CA, O=SecureTrust Corporation, C=US, Key type:RSA, Length:2048, Cert Id:2034155325, Valid from:2006/11/8 上午3:31, Valid until:2030/1/1 上午3:40
2020-11-14 00:02:36.647 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:1d, Subject:CN=Sonera Class2 CA, O=Sonera, C=FI, Issuer:CN=Sonera Class2 CA, O=Sonera, C=FI, Key type:RSA, Length:2048, Cert Id:-572101437, Valid from:2001/4/6 下午3:29, Valid until:2021/4/6 下午3:29
2020-11-14 00:02:36.648 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withECDSA, Serial:75e6dfcbc1685ba8, Subject:CN=SSL.com Root Certification Authority ECC, O=SSL Corporation, L=Houston, ST=Texas, C=US, Issuer:CN=SSL.com Root Certification Authority ECC, O=SSL Corporation, L=Houston, ST=Texas, C=US, Key type:EC, Length:384, Cert Id:-1368293613, Valid from:2016/2/13 上午2:14, Valid until:2041/2/13 上午2:14
2020-11-14 00:02:36.649 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:56b629cd34bc78f6, Subject:CN=SSL.com EV Root Certification Authority RSA R2, O=SSL Corporation, L=Houston, ST=Texas, C=US, Issuer:CN=SSL.com EV Root Certification Authority RSA R2, O=SSL Corporation, L=Houston, ST=Texas, C=US, Key type:RSA, Length:4096, Cert Id:1381862403, Valid from:2017/6/1 上午2:14, Valid until:2042/5/31 上午2:14
2020-11-14 00:02:36.650 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:7b2c9bd316803299, Subject:CN=SSL.com Root Certification Authority RSA, O=SSL Corporation, L=Houston, ST=Texas, C=US, Issuer:CN=SSL.com Root Certification Authority RSA, O=SSL Corporation, L=Houston, ST=Texas, C=US, Key type:RSA, Length:4096, Cert Id:156725711, Valid from:2016/2/13 上午1:39, Valid until:2041/2/13 上午1:39
2020-11-14 00:02:36.650 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:0, Subject:OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US, Issuer:OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:1825617644, Valid from:2004/6/30 上午1:39, Valid until:2034/6/30 上午1:39
2020-11-14 00:02:36.651 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:0, Subject:CN=Starfield Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US, Issuer:CN=Starfield Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US, Key type:RSA, Length:2048, Cert Id:-1026641587, Valid from:2009/9/1 上午8:00, Valid until:2038/1/1 上午7:59
2020-11-14 00:02:36.652 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:0, Subject:CN=Starfield Services Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US, Issuer:CN=Starfield Services Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US, Key type:RSA, Length:2048, Cert Id:1964785574, Valid from:2009/9/1 上午8:00, Valid until:2038/1/1 上午7:59
2020-11-14 00:02:36.653 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:bb401c43f55e4fb0, Subject:CN=SwissSign Gold CA - G2, O=SwissSign AG, C=CH, Issuer:CN=SwissSign Gold CA - G2, O=SwissSign AG, C=CH, Key type:RSA, Length:4096, Cert Id:1516221943, Valid from:2006/10/25 下午4:30, Valid until:2036/10/25 下午4:30
2020-11-14 00:02:36.656 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:4eb200670c035d4f, Subject:CN=SwissSign Platinum CA - G2, O=SwissSign AG, C=CH, Issuer:CN=SwissSign Platinum CA - G2, O=SwissSign AG, C=CH, Key type:RSA, Length:4096, Cert Id:771312514, Valid from:2006/10/25 下午4:36, Valid until:2036/10/25 下午4:36
2020-11-14 00:02:36.657 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:4f1bd42f54bb2f4b, Subject:CN=SwissSign Silver CA - G2, O=SwissSign AG, C=CH, Issuer:CN=SwissSign Silver CA - G2, O=SwissSign AG, C=CH, Key type:RSA, Length:4096, Cert Id:126726124, Valid from:2006/10/25 下午4:32, Valid until:2036/10/25 下午4:32
2020-11-14 00:02:36.658 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:95be16a0f72e46f17b398272fa8bcd96, Subject:CN=TeliaSonera Root CA v1, O=TeliaSonera, Issuer:CN=TeliaSonera Root CA v1, O=TeliaSonera, Key type:RSA, Length:4096, Cert Id:1495358374, Valid from:2007/10/18 下午8:00, Valid until:2032/10/18 下午8:00
2020-11-14 00:02:36.659 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:36122296c5e338a520a1d25f4cd70954, Subject:[email protected], CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA, Issuer:[email protected], CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA, Key type:RSA, Length:1024, Cert Id:857909202, Valid from:1996/8/1 上午8:00, Valid until:2021/1/2 上午7:59
2020-11-14 00:02:36.660 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:344ed55720d5edec49f42fce37db2b6d, Subject:CN=thawte Primary Root CA, OU="(c) 2006 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US, Issuer:CN=thawte Primary Root CA, OU="(c) 2006 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:643000026, Valid from:2006/11/17 上午8:00, Valid until:2036/7/17 上午7:59
2020-11-14 00:02:36.662 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:35fc265cd9844fc93d263d579baed756, Subject:CN=thawte Primary Root CA - G2, OU="(c) 2007 thawte, Inc. - For authorized use only", O="thawte, Inc.", C=US, Issuer:CN=thawte Primary Root CA - G2, OU="(c) 2007 thawte, Inc. - For authorized use only", O="thawte, Inc.", C=US, Key type:EC, Length:384, Cert Id:2068083090, Valid from:2007/11/5 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.662 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:600197b746a7eab4b49ad64b2ff790fb, Subject:CN=thawte Primary Root CA - G3, OU="(c) 2008 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US, Issuer:CN=thawte Primary Root CA - G3, OU="(c) 2008 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:1032730720, Valid from:2008/4/2 上午8:00, Valid until:2037/12/2 上午7:59
2020-11-14 00:02:36.663 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:1, Subject:CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE, Issuer:CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE, Key type:RSA, Length:2048, Cert Id:-1238464039, Valid from:2008/10/1 下午6:40, Valid until:2033/10/2 上午7:59
2020-11-14 00:02:36.664 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:1, Subject:CN=T-TeleSec GlobalRoot Class 3, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE, Issuer:CN=T-TeleSec GlobalRoot Class 3, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE, Key type:RSA, Length:2048, Cert Id:1894096264, Valid from:2008/10/1 下午6:29, Valid until:2033/10/2 上午7:59
2020-11-14 00:02:36.666 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:5c8b99c55a94c5d27156decd8980cc26, Subject:CN=USERTrust ECC Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US, Issuer:CN=USERTrust ECC Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US, Key type:EC, Length:384, Cert Id:-965679910, Valid from:2010/2/1 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.667 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withRSA, Serial:1fd6d30fca3ca51a81bbc640e35032d, Subject:CN=USERTrust RSA Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US, Issuer:CN=USERTrust RSA Certification Authority, O=The USERTRUST Network, L=Jersey City, ST=New Jersey, C=US, Key type:RSA, Length:4096, Cert Id:-347365895, Valid from:2010/2/1 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.667 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:44be0c8b500024b411d3362de0b35f1b, Subject:CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US, Issuer:CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US, Key type:RSA, Length:2048, Cert Id:-297053428, Valid from:1999/7/10 上午2:31, Valid until:2019/7/10 上午2:40
2020-11-14 00:02:36.669 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:b92f60cc889fa17a4609b85b706c8aaf, Subject:OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US, Issuer:OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US, Key type:RSA, Length:1024, Cert Id:-1971861053, Valid from:1998/5/18 上午8:00, Valid until:2028/8/2 上午7:59
2020-11-14 00:02:36.674 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:3c9131cb1ff6d01b0e9ab8d044bf12be, Subject:OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US, Issuer:OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US, Key type:RSA, Length:1024, Cert Id:118031811, Valid from:1996/1/29 上午8:00, Valid until:2028/8/3 上午7:59
2020-11-14 00:02:36.675 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:7dd9fe07cfa81eb7107967fba78934c6, Subject:OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US, Issuer:OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US, Key type:RSA, Length:1024, Cert Id:-11071679, Valid from:1998/5/18 上午8:00, Valid until:2028/8/2 上午7:59
2020-11-14 00:02:36.675 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:9b7e0649a33e62b9d5ee90487129ef57, Subject:CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Issuer:CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:2057300190, Valid from:1999/10/1 上午8:00, Valid until:2036/7/17 上午7:59
2020-11-14 00:02:36.676 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA384withECDSA, Serial:2f80fe238c0e220f486712289187acb3, Subject:CN=VeriSign Class 3 Public Primary Certification Authority - G4, OU="(c) 2007 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Issuer:CN=VeriSign Class 3 Public Primary Certification Authority - G4, OU="(c) 2007 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Key type:EC, Length:384, Cert Id:-131493977, Valid from:2007/11/5 上午8:00, Valid until:2038/1/19 上午7:59
2020-11-14 00:02:36.676 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:18dad19e267de8bb4a2158cdcc6b3b4a, Subject:CN=VeriSign Class 3 Public Primary Certification Authority - G5, OU="(c) 2006 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Issuer:CN=VeriSign Class 3 Public Primary Certification Authority - G5, OU="(c) 2006 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:303010488, Valid from:2006/11/8 上午8:00, Valid until:2036/7/17 上午7:59
2020-11-14 00:02:36.678 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:67c8e1e8e3be1cbdfc913b8ea6238749, Subject:CN=Thawte Timestamping CA, OU=Thawte Certification, O=Thawte, L=Durbanville, ST=Western Cape, C=ZA, Issuer:CN=Thawte Timestamping CA, OU=Thawte Certification, O=Thawte, L=Durbanville, ST=Western Cape, C=ZA, Key type:RSA, Length:1024, Cert Id:-1032800436, Valid from:1997/1/1 上午8:00, Valid until:2021/1/2 上午7:59
2020-11-14 00:02:36.678 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA256withRSA, Serial:401ac46421b31321030ebbe4121ac51d, Subject:CN=VeriSign Universal Root Certification Authority, OU="(c) 2008 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Issuer:CN=VeriSign Universal Root Certification Authority, OU="(c) 2008 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US, Key type:RSA, Length:2048, Cert Id:-1976681486, Valid from:2008/4/2 上午8:00, Valid until:2037/12/2 上午7:59
2020-11-14 00:02:36.680 DEBUG 9796 --- [main] jdk.event.security : X509Certificate: Alg:SHA1withRSA, Serial:50946cec18ead59c4dd597ef758fa0ad, Subject:CN=XRamp Global Certification Authority, O=XRamp Security Services Inc, OU=www.xrampsecurity.com, C=US, Issuer:CN=XRamp Global Certification Authority, O=XRamp Security Services Inc, OU=www.xrampsecurity.com, C=US, Key type:RSA, Length:2048, Cert Id:-952474086, Valid from:2004/11/2 上午1:14, Valid until:2035/1/1 下午1:37
2020-11-14 00:02:36.748 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration$RabbitTemplateConfiguration'
2020-11-14 00:02:36.749 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rabbitTemplateConfigurer'
2020-11-14 00:02:36.754 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitTemplateConfigurer' via factory method to bean named 'spring.rabbitmq-org.springframework.boot.autoconfigure.amqp.RabbitProperties'
2020-11-14 00:02:36.755 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rabbitTemplate'
2020-11-14 00:02:36.759 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitTemplate' via factory method to bean named 'rabbitTemplateConfigurer'
2020-11-14 00:02:36.759 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitTemplate' via factory method to bean named 'rabbitConnectionFactory'
2020-11-14 00:02:36.778 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'amqpAdmin'
2020-11-14 00:02:36.778 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'amqpAdmin' via factory method to bean named 'rabbitConnectionFactory'
2020-11-14 00:02:36.793 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration$MessagingTemplateConfiguration'
2020-11-14 00:02:36.793 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rabbitMessagingTemplate'
2020-11-14 00:02:36.794 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitMessagingTemplate' via factory method to bean named 'rabbitTemplate'
2020-11-14 00:02:36.799 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAnnotationDrivenConfiguration$EnableRabbitConfiguration'
2020-11-14 00:02:36.800 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.amqp.rabbit.config.internalRabbitListenerEndpointRegistry'
2020-11-14 00:02:36.806 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAnnotationDrivenConfiguration'
2020-11-14 00:02:36.807 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.amqp.RabbitAnnotationDrivenConfiguration' via constructor to bean named 'spring.rabbitmq-org.springframework.boot.autoconfigure.amqp.RabbitProperties'
2020-11-14 00:02:36.808 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'simpleRabbitListenerContainerFactoryConfigurer'
2020-11-14 00:02:36.811 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rabbitListenerContainerFactory'
2020-11-14 00:02:36.812 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitListenerContainerFactory' via factory method to bean named 'simpleRabbitListenerContainerFactoryConfigurer'
2020-11-14 00:02:36.812 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'rabbitListenerContainerFactory' via factory method to bean named 'rabbitConnectionFactory'
2020-11-14 00:02:36.835 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'directRabbitListenerContainerFactoryConfigurer'
2020-11-14 00:02:36.845 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration'
2020-11-14 00:02:36.854 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration'
2020-11-14 00:02:36.854 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration'
2020-11-14 00:02:36.854 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
2020-11-14 00:02:36.857 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration'
2020-11-14 00:02:36.857 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'applicationAvailability'
2020-11-14 00:02:36.860 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration'
2020-11-14 00:02:36.861 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
2020-11-14 00:02:36.873 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration'
2020-11-14 00:02:36.875 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties'
2020-11-14 00:02:36.882 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' via constructor to bean named 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties'
2020-11-14 00:02:36.883 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'lettuceClientResources'
2020-11-14 00:02:36.889 DEBUG 9796 --- [main] i.n.u.i.logging.InternalLoggerFactory : Using SLF4J as the default logging framework
2020-11-14 00:02:36.892 DEBUG 9796 --- [main] i.l.c.resource.DefaultClientResources : -Dio.netty.eventLoopThreads: 4
2020-11-14 00:02:36.903 DEBUG 9796 --- [main] i.l.c.r.DefaultEventLoopGroupProvider : Creating executor io.netty.util.concurrent.DefaultEventExecutorGroup
2020-11-14 00:02:36.924 DEBUG 9796 --- [main] i.n.u.internal.InternalThreadLocalMap : -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
2020-11-14 00:02:36.924 DEBUG 9796 --- [main] i.n.u.internal.InternalThreadLocalMap : -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
2020-11-14 00:02:36.927 DEBUG 9796 --- [main] io.netty.util.ResourceLeakDetector : -Dio.netty.leakDetection.level: simple
2020-11-14 00:02:36.929 DEBUG 9796 --- [main] io.netty.util.ResourceLeakDetector : -Dio.netty.leakDetection.targetRecords: 4
2020-11-14 00:02:36.930 DEBUG 9796 --- [main] i.n.util.ResourceLeakDetectorFactory : Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@7a083b96
2020-11-14 00:02:36.933 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : Platform: Windows
2020-11-14 00:02:36.934 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : -Dio.netty.noUnsafe: false
2020-11-14 00:02:36.935 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : Java version: 11
2020-11-14 00:02:36.936 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : sun.misc.Unsafe.theUnsafe: available
2020-11-14 00:02:36.937 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : sun.misc.Unsafe.copyMemory: available
2020-11-14 00:02:36.937 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.Buffer.address: available
2020-11-14 00:02:36.938 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : direct buffer constructor: unavailable
java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled
at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.internal.PlatformDependent0$4.run(PlatformDependent0.java:233) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:227) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:289) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:92) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:109) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:218) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:197) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:179) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:163) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.lettuce.core.resource.DefaultClientResources.<init>(DefaultClientResources.java:167) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at io.lettuce.core.resource.DefaultClientResources$Builder.build(DefaultClientResources.java:530) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at io.lettuce.core.resource.DefaultClientResources.create(DefaultClientResources.java:231) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration.lettuceClientResources(LettuceConnectionConfiguration.java:66) ~[spring-boot-autoconfigure-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:651) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:484) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1338) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1177) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:557) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at ink.openmind.springbootsamplebaselearnproject.SpringbootSampleBaselearnProjectApplication.main(SpringbootSampleBaselearnProjectApplication.java:28) ~[classes/:na]
2020-11-14 00:02:36.939 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.Bits.unaligned: available, true
2020-11-14 00:02:36.941 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable
java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @45bf6f39
at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:361) ~[na:na]
at java.base/java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:591) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:558) ~[na:na]
at io.netty.util.internal.PlatformDependent0$6.run(PlatformDependent0.java:347) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at java.base/java.security.AccessController.doPrivileged(Native Method) ~[na:na]
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:338) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:289) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:92) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:109) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:218) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:197) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:179) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.netty.util.HashedWheelTimer.<init>(HashedWheelTimer.java:163) ~[netty-common-4.1.49.Final.jar:4.1.49.Final]
at io.lettuce.core.resource.DefaultClientResources.<init>(DefaultClientResources.java:167) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at io.lettuce.core.resource.DefaultClientResources$Builder.build(DefaultClientResources.java:530) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at io.lettuce.core.resource.DefaultClientResources.create(DefaultClientResources.java:231) ~[lettuce-core-5.3.0.RELEASE.jar:5.3.0.RELEASE]
at org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration.lettuceClientResources(LettuceConnectionConfiguration.java:66) ~[spring-boot-autoconfigure-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:651) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:484) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1338) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1177) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:557) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at ink.openmind.springbootsamplebaselearnproject.SpringbootSampleBaselearnProjectApplication.main(SpringbootSampleBaselearnProjectApplication.java:28) ~[classes/:na]
2020-11-14 00:02:36.941 DEBUG 9796 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.DirectByteBuffer.<init>(long, int): unavailable
2020-11-14 00:02:36.941 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : sun.misc.Unsafe: available
2020-11-14 00:02:36.942 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : maxDirectMemory: 4261412864 bytes (maybe)
2020-11-14 00:02:36.942 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.tmpdir: C:\Users\admin\AppData\Local\Temp (java.io.tmpdir)
2020-11-14 00:02:36.942 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.bitMode: 64 (sun.arch.data.model)
2020-11-14 00:02:36.943 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.maxDirectMemory: -1 bytes
2020-11-14 00:02:36.943 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.uninitializedArrayAllocationThreshold: -1
2020-11-14 00:02:36.944 DEBUG 9796 --- [main] io.netty.util.internal.CleanerJava9 : java.nio.ByteBuffer.cleaner(): available
2020-11-14 00:02:36.944 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.noPreferDirect: false
2020-11-14 00:02:36.946 DEBUG 9796 --- [main] i.netty.util.internal.PlatformDependent : org.jctools-core.MpscChunkedArrayQueue: available
2020-11-14 00:02:36.957 DEBUG 9796 --- [main] reactor.util.Loggers$LoggerFactory : Using Slf4j logging framework
2020-11-14 00:02:36.976 DEBUG 9796 --- [main] i.l.c.resource.DefaultClientResources : LatencyUtils/HdrUtils are not available, metrics are disabled
2020-11-14 00:02:36.978 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'redisConnectionFactory'
2020-11-14 00:02:36.978 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'redisConnectionFactory' via factory method to bean named 'lettuceClientResources'
2020-11-14 00:02:37.047 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.numHeapArenas: 8
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.numDirectArenas: 8
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.pageSize: 8192
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.maxOrder: 11
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.chunkSize: 16777216
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.tinyCacheSize: 512
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.smallCacheSize: 256
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.normalCacheSize: 64
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.maxCachedBufferCapacity: 32768
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.cacheTrimInterval: 8192
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.cacheTrimIntervalMillis: 0
2020-11-14 00:02:37.048 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.useCacheForAllThreads: true
2020-11-14 00:02:37.049 DEBUG 9796 --- [main] io.netty.buffer.PooledByteBufAllocator : -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
2020-11-14 00:02:37.073 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration'
2020-11-14 00:02:37.074 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'redisTemplate'
2020-11-14 00:02:37.074 DEBUG 9796 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'redisTemplate' via factory method to bean named 'redisConnectionFactory'
2020-11-14 00:02:37.108 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:37.109 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:37.109 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 82
2020-11-14 00:02:37.110 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:37.110 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.110 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.110 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.111 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.111 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.111 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6ebfa57a
2020-11-14 00:02:37.111 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 84
2020-11-14 00:02:37.112 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:37.112 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:37.112 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.loader : RMI TCP Connection(1)-192.168.2.2: name = "javax.management.ObjectName", codebase = ""
2020-11-14 00:02:37.112 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : connectionId=rmi://192.168.2.2 9, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
2020-11-14 00:02:37.113 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] sun.rmi.transport.tcp : RMI TCP Connection(1)-192.168.2.2: (port 57841) op = 80
2020-11-14 00:02:37.113 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@49e00d15: connectionId=rmi://192.168.2.2 9] closing.
2020-11-14 00:02:37.113 DEBUG 9796 --- [RMI TCP Connection(1)-192.168.2.2] javax.management.remote.rmi : [javax.management.remote.rmi.RMIConnectionImpl@49e00d15: connectionId=rmi://192.168.2.2 9] closed.
2020-11-14 00:02:37.120 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.String to class [B as writing converter.
2020-11-14 00:02:37.120 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.lang.String as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.Number to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.lang.Number as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.Enum to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.lang.Enum as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.Boolean to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.lang.Boolean as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.util.Date as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.UUID to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.util.UUID as reading converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDateTime to class [B as writing converter.
2020-11-14 00:02:37.121 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDate to class [B as writing converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.LocalDate as reading converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalTime to class [B as writing converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.LocalTime as reading converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.ZonedDateTime to class [B as writing converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.ZonedDateTime as reading converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Instant to class [B as writing converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.Instant as reading converter.
2020-11-14 00:02:37.122 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.ZoneId to class [B as writing converter.
2020-11-14 00:02:37.123 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.ZoneId as reading converter.
2020-11-14 00:02:37.123 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Period to class [B as writing converter.
2020-11-14 00:02:37.123 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.Period as reading converter.
2020-11-14 00:02:37.123 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Duration to class [B as writing converter.
2020-11-14 00:02:37.123 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class [B to class java.time.Duration as reading converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class org.joda.time.LocalDate to class java.util.Date as writing converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class org.joda.time.LocalDateTime to class java.util.Date as writing converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class org.joda.time.DateTime to class java.util.Date as writing converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class org.joda.time.LocalDate as reading converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class org.joda.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class org.joda.time.DateTime as reading converter.
2020-11-14 00:02:37.124 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDateTime to class org.joda.time.DateTime as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Instant to class org.joda.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class org.joda.time.LocalDateTime to class java.time.Instant as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class org.joda.time.LocalDateTime to class java.time.LocalDateTime as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class java.time.LocalDate as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDate to class java.util.Date as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class java.time.LocalTime as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalTime to class java.util.Date as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.util.Date to class java.time.Instant as reading converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Instant to class java.util.Date as writing converter.
2020-11-14 00:02:37.125 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.ZoneId to class java.lang.String as writing converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.String to class java.time.ZoneId as reading converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Duration to class java.lang.String as writing converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.lang.String to class java.time.Duration as reading converter.
2020-11-14 00:02:37.126 DEBUG 9796 --- [main] o.s.data.convert.CustomConversions : Adding converter from class java.time.Period to class java.lang.String as writing converter.