-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhs_err_pid14024.log
1286 lines (1245 loc) · 129 KB
/
hs_err_pid14024.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
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 78118912 bytes for committing reserved memory.
# Possible reasons:
# The system is out of physical RAM or swap space
# In 32 bit mode, the process size limit was hit
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Use 64 bit Java on a 64 bit OS
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_linux.cpp:2657), pid=14024, tid=0x00007fe25daac700
#
# JRE version: OpenJDK Runtime Environment (8.0_181-b13) (build 1.8.0_181-b13)
# Java VM: OpenJDK 64-Bit Server VM (25.181-b13 mixed mode linux-amd64 compressed oops)
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
--------------- T H R E A D ---------------
Current thread (0x00007fe270159000): VMThread [stack: 0x00007fe25d9ad000,0x00007fe25daad000] [id=14031]
Stack: [0x00007fe25d9ad000,0x00007fe25daad000], sp=0x00007fe25daab440, free space=1017k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0xacf34d]
V [libjvm.so+0x4fdeca]
V [libjvm.so+0x8c1838]
V [libjvm.so+0x8bbd4e]
V [libjvm.so+0x934fcb]
V [libjvm.so+0x935ca0]
V [libjvm.so+0x935ffb]
V [libjvm.so+0x93296c]
V [libjvm.so+0x92beb0]
V [libjvm.so+0x48ac83]
V [libjvm.so+0xad0899]
V [libjvm.so+0xad56b7]
V [libjvm.so+0xad3fc8]
V [libjvm.so+0xad4499]
V [libjvm.so+0xad48f1]
V [libjvm.so+0x8beb82]
VM_Operation (0x00007fe27796aad0): CollectForMetadataAllocation, mode: safepoint, requested by thread 0x00007fe27004c800
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00007fe270932000 JavaThread "background-preinit" [_thread_blocked, id=14039, stack(0x00007fe25c1a6000,0x00007fe25c2a7000)]
0x00007fe270598000 JavaThread "Service Thread" daemon [_thread_blocked, id=14037, stack(0x00007fe25c9b2000,0x00007fe25cab3000)]
0x00007fe2704fb800 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=14036, stack(0x00007fe25cab4000,0x00007fe25cbb4000)]
0x00007fe2704f6000 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=14035, stack(0x00007fe25cbb5000,0x00007fe25ccb5000)]
0x00007fe270193800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14034, stack(0x00007fe25d6a9000,0x00007fe25d7aa000)]
0x00007fe270167800 JavaThread "Finalizer" daemon [_thread_blocked, id=14033, stack(0x00007fe25d7aa000,0x00007fe25d8ab000)]
0x00007fe270163000 JavaThread "Reference Handler" daemon [_thread_blocked, id=14032, stack(0x00007fe25d8ab000,0x00007fe25d9ac000)]
0x00007fe27004c800 JavaThread "main" [_thread_blocked, id=14026, stack(0x00007fe27786e000,0x00007fe27796e000)]
Other Threads:
=>0x00007fe270159000 VMThread [stack: 0x00007fe25d9ad000,0x00007fe25daad000] [id=14031]
0x00007fe27059a000 WatcherThread [stack: 0x00007fe25c8b2000,0x00007fe25c9b2000] [id=14038]
VM state:at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007fe270049c30] Threads_lock - owner thread: 0x00007fe270159000
[0x00007fe27004a130] Heap_lock - owner thread: 0x00007fe27004c800
Heap:
PSYoungGen total 125952K, used 4088K [0x00000000ec400000, 0x00000000f4300000, 0x0000000100000000)
eden space 121856K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000f3b00000)
from space 4096K, 99% used [0x00000000f3b00000,0x00000000f3efe048,0x00000000f3f00000)
to space 4096K, 0% used [0x00000000f3f00000,0x00000000f3f00000,0x00000000f4300000)
ParOldGen total 40960K, used 3796K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 9% used [0x00000000c4c00000,0x00000000c4fb5060,0x00000000c7400000)
Metaspace used 21038K, capacity 21152K, committed 21248K, reserved 1069056K
class space used 2203K, capacity 2248K, committed 2304K, reserved 1048576K
Card table byte_map: [0x00007fe274131000,0x00007fe27430c000] byte_map_base: 0x00007fe273b0b000
Marking Bits: (ParMarkBitMap*) 0x00007fe276b2a460
Begin Bits: [0x00007fe25f023000, 0x00007fe25fef3000)
End Bits: [0x00007fe25fef3000, 0x00007fe260dc3000)
Polling page: 0x00007fe277978000
CodeCache: size=245760Kb used=6766Kb max_used=6766Kb free=238993Kb
bounds [0x00007fe261000000, 0x00007fe2616a0000, 0x00007fe270000000]
total_blobs=2039 nmethods=1696 adapters=257
compilation: enabled
Compilation events (250 events):
Event: 2.766 Thread 0x00007fe2704f6000 1436 s! 4 sun.misc.URLClassPath::getLoader (243 bytes)
Event: 2.767 Thread 0x00007fe2704fb800 1607 2 sun.reflect.generics.parser.SignatureParser::parseFieldTypeSignature (6 bytes)
Event: 2.767 Thread 0x00007fe2704fb800 nmethod 1607 0x00007fe2615d0290 code [0x00007fe2615d0400, 0x00007fe2615d0568]
Event: 2.767 Thread 0x00007fe2704fb800 1608 2 sun.reflect.generics.parser.SignatureParser::parseFieldTypeSignature (73 bytes)
Event: 2.767 Thread 0x00007fe2704fb800 nmethod 1608 0x00007fe2615cfad0 code [0x00007fe2615cfca0, 0x00007fe2615d0028]
Event: 2.767 Thread 0x00007fe2704fb800 1609 2 sun.reflect.generics.visitor.Reifier::visitClassTypeSignature (381 bytes)
Event: 2.768 Thread 0x00007fe2704fb800 nmethod 1609 0x00007fe2615cbb50 code [0x00007fe2615cbe40, 0x00007fe2615cca88]
Event: 2.779 Thread 0x00007fe2704fb800 1613 % 3 org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodNode::accept @ 744 (898 bytes)
Event: 2.782 Thread 0x00007fe2704fb800 nmethod 1613% 0x00007fe2615fded0 code [0x00007fe2615fe5e0, 0x00007fe261603428]
Event: 2.782 Thread 0x00007fe2704fb800 1620 2 sun.reflect.UTF8::utf8Length (81 bytes)
Event: 2.782 Thread 0x00007fe2704fb800 nmethod 1620 0x00007fe2615cf490 code [0x00007fe2615cf600, 0x00007fe2615cf8a8]
Event: 2.782 Thread 0x00007fe2704fb800 1622 2 sun.reflect.ClassFileAssembler::emitConstantPoolUTF8 (50 bytes)
Event: 2.783 Thread 0x00007fe2704fb800 nmethod 1622 0x00007fe261605650 code [0x00007fe261605800, 0x00007fe261605bc8]
Event: 2.783 Thread 0x00007fe2704fb800 1623 ! 2 sun.reflect.UTF8::encode (191 bytes)
Event: 2.783 Thread 0x00007fe2704fb800 nmethod 1623 0x00007fe261605f90 code [0x00007fe261606140, 0x00007fe261606668]
Event: 2.783 Thread 0x00007fe2704fb800 1625 ! 2 sun.reflect.annotation.AnnotationInvocationHandler::equalsImpl (161 bytes)
Event: 2.784 Thread 0x00007fe2704fb800 nmethod 1625 0x00007fe261606bd0 code [0x00007fe261606e00, 0x00007fe2616076a8]
Event: 2.784 Thread 0x00007fe2704fb800 1614 2 com.sun.org.apache.xerces.internal.util.XMLChar::isContent (35 bytes)
Event: 2.784 Thread 0x00007fe2704fb800 nmethod 1614 0x00007fe2615cf090 code [0x00007fe2615cf200, 0x00007fe2615cf3b0]
Event: 2.784 Thread 0x00007fe2704fb800 1617 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::checkEntityLimit (50 bytes)
Event: 2.785 Thread 0x00007fe2704fb800 nmethod 1617 0x00007fe261607f10 code [0x00007fe2616080a0, 0x00007fe2616082f8]
Event: 2.785 Thread 0x00007fe2704fb800 1618 2 com.sun.org.apache.xerces.internal.util.XMLChar::isSpace (22 bytes)
Event: 2.785 Thread 0x00007fe2704fb800 nmethod 1618 0x00007fe261608410 code [0x00007fe261608580, 0x00007fe261608710]
Event: 2.785 Thread 0x00007fe2704fb800 1624 2 java.lang.Boolean::valueOf (14 bytes)
Event: 2.785 Thread 0x00007fe2704fb800 nmethod 1624 0x00007fe2616087d0 code [0x00007fe261608920, 0x00007fe261608a70]
Event: 2.785 Thread 0x00007fe2704fb800 1616 2 java.lang.reflect.Proxy::isProxyClass (25 bytes)
Event: 2.785 Thread 0x00007fe2704fb800 nmethod 1616 0x00007fe261608ad0 code [0x00007fe261608c80, 0x00007fe261609068]
Event: 2.785 Thread 0x00007fe2704fb800 1627 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::checkBeforeLoad (140 bytes)
Event: 2.785 Thread 0x00007fe2704fb800 nmethod 1627 0x00007fe2616093d0 code [0x00007fe261609560, 0x00007fe261609998]
Event: 2.785 Thread 0x00007fe2704fb800 1612 2 java.lang.reflect.WeakCache::expungeStaleEntries (31 bytes)
Event: 2.786 Thread 0x00007fe2704fb800 nmethod 1612 0x00007fe261609b50 code [0x00007fe261609ce0, 0x00007fe26160a0d8]
Event: 2.786 Thread 0x00007fe2704fb800 1615 1 java.util.logging.Level::intValue (5 bytes)
Event: 2.786 Thread 0x00007fe2704fb800 nmethod 1615 0x00007fe2615cedd0 code [0x00007fe2615cef20, 0x00007fe2615cf030]
Event: 2.786 Thread 0x00007fe2704fb800 1619 1 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getLength (5 bytes)
Event: 2.786 Thread 0x00007fe2704fb800 nmethod 1619 0x00007fe26160a2d0 code [0x00007fe26160a420, 0x00007fe26160a530]
Event: 2.786 Thread 0x00007fe2704fb800 1626 1 org.xml.sax.helpers.AttributesImpl::getLength (5 bytes)
Event: 2.786 Thread 0x00007fe2704fb800 nmethod 1626 0x00007fe26160a590 code [0x00007fe26160a6e0, 0x00007fe26160a7f0]
Event: 2.788 Thread 0x00007fe2704fb800 1634 ! 2 org.springframework.util.ConcurrentReferenceHashMap$Segment::restructureIfNecessary (637 bytes)
Event: 2.790 Thread 0x00007fe2704fb800 nmethod 1634 0x00007fe26160a850 code [0x00007fe26160ac00, 0x00007fe26160c5b8]
Event: 2.790 Thread 0x00007fe2704fb800 1635 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::skipSpaces (350 bytes)
Event: 2.791 Thread 0x00007fe2704fb800 nmethod 1635 0x00007fe26160f650 code [0x00007fe26160f840, 0x00007fe26160fe48]
Event: 2.791 Thread 0x00007fe2704fb800 1630 2 org.apache.tomcat.util.IntrospectionUtils::$jacocoInit (54 bytes)
Event: 2.791 Thread 0x00007fe2704fb800 nmethod 1630 0x00007fe261610450 code [0x00007fe2616105e0, 0x00007fe261610a58]
Event: 2.791 Thread 0x00007fe2704fb800 1633 2 org.apache.tomcat.util.digester.Digester::$jacocoInit (54 bytes)
Event: 2.792 Thread 0x00007fe2704fb800 nmethod 1633 0x00007fe261610c10 code [0x00007fe261610da0, 0x00007fe261611218]
Event: 2.792 Thread 0x00007fe2704fb800 1629 2 org.apache.juli.logging.DirectJDKLog::$jacocoInit (52 bytes)
Event: 2.792 Thread 0x00007fe2704fb800 nmethod 1629 0x00007fe2616113d0 code [0x00007fe261611560, 0x00007fe2616119b8]
Event: 2.792 Thread 0x00007fe2704fb800 1631 2 java.util.logging.Logger::isLoggable (25 bytes)
Event: 2.792 Thread 0x00007fe2704fb800 nmethod 1631 0x00007fe261611bd0 code [0x00007fe261611d40, 0x00007fe261611ed0]
Event: 2.792 Thread 0x00007fe2704fb800 1632 2 org.apache.juli.logging.DirectJDKLog::isDebugEnabled (19 bytes)
Event: 2.792 Thread 0x00007fe2704fb800 nmethod 1632 0x00007fe261611f90 code [0x00007fe261612100, 0x00007fe2616122e8]
Event: 2.792 Thread 0x00007fe2704fb800 1636 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::peekChar (63 bytes)
Event: 2.792 Thread 0x00007fe2704fb800 nmethod 1636 0x00007fe261612450 code [0x00007fe2616125c0, 0x00007fe2616127c8]
Event: 2.792 Thread 0x00007fe2704fb800 1637 2 java.lang.String::<init> (15 bytes)
Event: 2.793 Thread 0x00007fe2704fb800 nmethod 1637 0x00007fe261612910 code [0x00007fe261612a80, 0x00007fe261612d08]
Event: 2.793 Thread 0x00007fe2704fb800 1628 2 java.util.concurrent.ConcurrentHashMap::containsKey (14 bytes)
Event: 2.793 Thread 0x00007fe2704fb800 nmethod 1628 0x00007fe261612e10 code [0x00007fe261612f80, 0x00007fe261613108]
Event: 2.803 Thread 0x00007fe2704fb800 1638 2 java.util.Calendar::internalGet (7 bytes)
Event: 2.803 Thread 0x00007fe2704fb800 nmethod 1638 0x00007fe261613190 code [0x00007fe261613300, 0x00007fe261613470]
Event: 2.809 Thread 0x00007fe2704fb800 1649 % 3 java.lang.Class$MethodArray::removeByNameAndDescriptor @ 2 (42 bytes)
Event: 2.809 Thread 0x00007fe2704fb800 nmethod 1649% 0x00007fe261613550 code [0x00007fe2616136e0, 0x00007fe261613a78]
Event: 2.809 Thread 0x00007fe2704fb800 1643 2 org.apache.tomcat.util.digester.ArrayStack::$jacocoInit (52 bytes)
Event: 2.809 Thread 0x00007fe2704fb800 nmethod 1643 0x00007fe261613c10 code [0x00007fe261613da0, 0x00007fe2616141f8]
Event: 2.809 Thread 0x00007fe2704fb800 1642 2 com.sun.org.apache.xerces.internal.util.XMLChar::isNameStart (22 bytes)
Event: 2.809 Thread 0x00007fe2704fb800 nmethod 1642 0x00007fe261614410 code [0x00007fe261614580, 0x00007fe261614710]
Event: 2.809 Thread 0x00007fe2704fb800 1644 2 com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer::getTotalValue (7 bytes)
Event: 2.810 Thread 0x00007fe2704fb800 nmethod 1644 0x00007fe2616147d0 code [0x00007fe261614940, 0x00007fe261614ab0]
Event: 2.810 Thread 0x00007fe2704fb800 1647 2 com.sun.org.apache.xerces.internal.utils.XMLSecurityManager::isOverLimit (10 bytes)
Event: 2.810 Thread 0x00007fe2704fb800 nmethod 1647 0x00007fe261614b90 code [0x00007fe261614d00, 0x00007fe261614e88]
Event: 2.810 Thread 0x00007fe2704fb800 1648 2 com.sun.org.apache.xerces.internal.utils.XMLSecurityManager::isOverLimit (111 bytes)
Event: 2.810 Thread 0x00007fe2704fb800 nmethod 1648 0x00007fe261614f50 code [0x00007fe2616150e0, 0x00007fe2616153d0]
Event: 2.810 Thread 0x00007fe2704fb800 1646 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::skipChar (285 bytes)
Event: 2.810 Thread 0x00007fe2704fb800 nmethod 1646 0x00007fe261615810 code [0x00007fe2616159c0, 0x00007fe261615da8]
Event: 2.810 Thread 0x00007fe2704fb800 1645 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanChar (236 bytes)
Event: 2.811 Thread 0x00007fe2704fb800 nmethod 1645 0x00007fe261616110 code [0x00007fe2616162c0, 0x00007fe261616658]
Event: 2.811 Thread 0x00007fe2704fb800 1641 2 sun.reflect.ClassFileAssembler::setStack (25 bytes)
Event: 2.811 Thread 0x00007fe2704fb800 nmethod 1641 0x00007fe261616990 code [0x00007fe261616ae0, 0x00007fe261616c50]
Event: 2.811 Thread 0x00007fe2704fb800 1639 2 sun.reflect.AccessorGenerator::sub (5 bytes)
Event: 2.811 Thread 0x00007fe2704fb800 nmethod 1639 0x00007fe261616cd0 code [0x00007fe261616e20, 0x00007fe261616f50]
Event: 2.811 Thread 0x00007fe2704fb800 1640 2 sun.reflect.ClassFileAssembler::emitConstantPoolMethodref (28 bytes)
Event: 2.811 Thread 0x00007fe2704fb800 nmethod 1640 0x00007fe261616fd0 code [0x00007fe261617180, 0x00007fe261617508]
Event: 2.816 Thread 0x00007fe2704f6000 nmethod 1436 0x00007fe26161c1d0 code [0x00007fe26161c480, 0x00007fe26161e0e0]
Event: 2.816 Thread 0x00007fe2704f6000 1611 % 4 org.jacoco.agent.rt.internal_8ff85ea.asm.ClassReader::readCode @ 74 (3587 bytes)
Event: 2.830 Thread 0x00007fe2704fb800 1650 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanLiteral (755 bytes)
Event: 2.831 Thread 0x00007fe2704fb800 nmethod 1650 0x00007fe26161ab50 code [0x00007fe26161ad80, 0x00007fe26161b6e8]
Event: 2.831 Thread 0x00007fe2704fb800 1652 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanName (305 bytes)
Event: 2.832 Thread 0x00007fe2704fb800 nmethod 1652 0x00007fe261619c10 code [0x00007fe261619e20, 0x00007fe26161a428]
Event: 2.832 Thread 0x00007fe2704fb800 1659 2 com.sun.org.apache.xerces.internal.util.SymbolTable::hash (53 bytes)
Event: 2.832 Thread 0x00007fe2704fb800 nmethod 1659 0x00007fe261619710 code [0x00007fe261619880, 0x00007fe261619aa8]
Event: 2.832 Thread 0x00007fe2704fb800 1654 2 org.xml.sax.helpers.AttributesImpl::getValue (25 bytes)
Event: 2.832 Thread 0x00007fe2704fb800 nmethod 1654 0x00007fe261619310 code [0x00007fe261619480, 0x00007fe261619630]
Event: 2.832 Thread 0x00007fe2704fb800 1657 2 com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer::addValue (11 bytes)
Event: 2.832 Thread 0x00007fe2704fb800 nmethod 1657 0x00007fe261618f50 code [0x00007fe2616190c0, 0x00007fe261619228]
Event: 2.832 Thread 0x00007fe2704fb800 1655 2 org.apache.tomcat.util.digester.Rule::$jacocoInit (52 bytes)
Event: 2.833 Thread 0x00007fe2704fb800 nmethod 1655 0x00007fe261618750 code [0x00007fe2616188e0, 0x00007fe261618d38]
Event: 2.833 Thread 0x00007fe2704fb800 1658 2 com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer::addValue (260 bytes)
Event: 2.833 Thread 0x00007fe2704fb800 nmethod 1658 0x00007fe26161f450 code [0x00007fe26161f6a0, 0x00007fe26161fee8]
Event: 2.833 Thread 0x00007fe2704fb800 1653 2 com.sun.org.apache.xerces.internal.xni.XMLString::setValues (16 bytes)
Event: 2.834 Thread 0x00007fe2704fb800 nmethod 1653 0x00007fe261618410 code [0x00007fe261618560, 0x00007fe2616186d0]
Event: 2.834 Thread 0x00007fe2704fb800 1651 2 com.sun.org.apache.xerces.internal.impl.XMLScanner::isValidNameStartChar (5 bytes)
Event: 2.834 Thread 0x00007fe2704fb800 nmethod 1651 0x00007fe261617fd0 code [0x00007fe261618140, 0x00007fe2616182f0]
Event: 2.834 Thread 0x00007fe2704fb800 1660 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::setScannerState (6 bytes)
Event: 2.834 Thread 0x00007fe2704fb800 nmethod 1660 0x00007fe261617cd0 code [0x00007fe261617e20, 0x00007fe261617f70]
Event: 2.834 Thread 0x00007fe2704fb800 1656 1 sun.reflect.ClassFileAssembler::getStack (5 bytes)
Event: 2.834 Thread 0x00007fe2704fb800 nmethod 1656 0x00007fe261617a10 code [0x00007fe261617b60, 0x00007fe261617c70]
Event: 2.856 Thread 0x00007fe2704fb800 1672 % 3 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanLiteral @ 501 (755 bytes)
Event: 2.858 Thread 0x00007fe2704fb800 nmethod 1672% 0x00007fe2616209d0 code [0x00007fe261620ca0, 0x00007fe2616223e8]
Event: 2.858 Thread 0x00007fe2704fb800 1669 ! 2 org.apache.tomcat.util.IntrospectionUtils::setProperty (1356 bytes)
Event: 2.865 Thread 0x00007fe2704fb800 nmethod 1669 0x00007fe261622fd0 code [0x00007fe2616238c0, 0x00007fe261627228]
Event: 2.865 Thread 0x00007fe2704fb800 1670 2 com.sun.org.apache.xerces.internal.util.SymbolTable::addSymbol (110 bytes)
Event: 2.865 Thread 0x00007fe2704fb800 nmethod 1670 0x00007fe26162ec50 code [0x00007fe26162ede0, 0x00007fe26162f138]
Event: 2.865 Thread 0x00007fe2704fb800 1668 2 com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer::clear (41 bytes)
Event: 2.865 Thread 0x00007fe2704fb800 nmethod 1668 0x00007fe26162f490 code [0x00007fe26162f600, 0x00007fe26162f830]
Event: 2.865 Thread 0x00007fe2704fb800 1661 2 org.apache.tomcat.util.modeler.FeatureInfo::$jacocoInit (52 bytes)
Event: 2.865 Thread 0x00007fe2704fb800 nmethod 1661 0x00007fe26162f950 code [0x00007fe26162fae0, 0x00007fe26162ff38]
Event: 2.865 Thread 0x00007fe2704fb800 1662 2 com.sun.org.apache.xerces.internal.xni.QName::setValues (22 bytes)
Event: 2.865 Thread 0x00007fe2704fb800 nmethod 1662 0x00007fe261630150 code [0x00007fe2616302a0, 0x00007fe261630430]
Event: 2.866 Thread 0x00007fe2704fb800 1663 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::seekCloseOfStartTag (136 bytes)
Event: 2.866 Thread 0x00007fe2704fb800 nmethod 1663 0x00007fe2616304d0 code [0x00007fe2616306c0, 0x00007fe261630ce8]
Event: 2.866 Thread 0x00007fe2704fb800 1664 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::checkLimit (253 bytes)
Event: 2.869 Thread 0x00007fe2704fb800 nmethod 1664 0x00007fe2616311d0 code [0x00007fe2616314c0, 0x00007fe261632568]
Event: 2.869 Thread 0x00007fe2704fb800 1665 2 org.apache.tomcat.util.IntrospectionUtils::replaceProperties (481 bytes)
Event: 2.870 Thread 0x00007fe2704fb800 nmethod 1665 0x00007fe261634110 code [0x00007fe261634460, 0x00007fe261635858]
Event: 2.870 Thread 0x00007fe2704fb800 1666 2 org.apache.tomcat.util.IntrospectionUtils::findMethods (55 bytes)
Event: 2.871 Thread 0x00007fe2704fb800 nmethod 1666 0x00007fe261636fd0 code [0x00007fe2616371a0, 0x00007fe2616374c8]
Event: 2.871 Thread 0x00007fe2704fb800 1671 2 com.sun.org.apache.xerces.internal.xni.XMLString::toString (32 bytes)
Event: 2.871 Thread 0x00007fe2704fb800 nmethod 1671 0x00007fe261637790 code [0x00007fe261637900, 0x00007fe261637b08]
Event: 2.871 Thread 0x00007fe2704fb800 1667 2 com.sun.org.apache.xerces.internal.util.AugmentationsImpl::removeAllItems (8 bytes)
Event: 2.871 Thread 0x00007fe2704fb800 nmethod 1667 0x00007fe261637bd0 code [0x00007fe261637d40, 0x00007fe261637ec8]
Event: 2.887 Thread 0x00007fe2704fb800 1673 2 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanContent (690 bytes)
Event: 2.888 Thread 0x00007fe2704fb800 nmethod 1673 0x00007fe261637f50 code [0x00007fe261638180, 0x00007fe261638ae8]
Event: 2.888 Thread 0x00007fe2704fb800 1680 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getIndexFast (38 bytes)
Event: 2.888 Thread 0x00007fe2704fb800 nmethod 1680 0x00007fe261639550 code [0x00007fe2616396c0, 0x00007fe2616398d0]
Event: 2.888 Thread 0x00007fe2704fb800 1679 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::addAttribute (681 bytes)
Event: 2.890 Thread 0x00007fe2704fb800 nmethod 1679 0x00007fe261639a50 code [0x00007fe261639d60, 0x00007fe26163b6f8]
Event: 2.890 Thread 0x00007fe2704fb800 1675 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::scanAttribute (247 bytes)
Event: 2.891 Thread 0x00007fe2704fb800 nmethod 1675 0x00007fe26163d050 code [0x00007fe26163d2a0, 0x00007fe26163dc58]
Event: 2.891 Thread 0x00007fe2704fb800 1676 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::getString (76 bytes)
Event: 2.891 Thread 0x00007fe2704fb800 nmethod 1676 0x00007fe26163e550 code [0x00007fe26163e6e0, 0x00007fe26163ea48]
Event: 2.891 Thread 0x00007fe2704fb800 1677 2 com.sun.org.apache.xerces.internal.impl.XMLScanner::scanAttributeValue (991 bytes)
Event: 2.894 Thread 0x00007fe2704fb800 nmethod 1677 0x00007fe26163ed10 code [0x00007fe26163f200, 0x00007fe2616410d8]
Event: 2.894 Thread 0x00007fe2704fb800 1678 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::addAttribute (9 bytes)
Event: 2.894 Thread 0x00007fe2704fb800 nmethod 1678 0x00007fe261643750 code [0x00007fe2616438c0, 0x00007fe261643a48]
Event: 2.895 Thread 0x00007fe2704fb800 1681 2 com.sun.org.apache.xerces.internal.xni.QName::setValues (33 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1681 0x00007fe261643b10 code [0x00007fe261643c60, 0x00007fe261643e10]
Event: 2.895 Thread 0x00007fe2704fb800 1682 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::setValue (27 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1682 0x00007fe261643ed0 code [0x00007fe261644040, 0x00007fe2616441f0]
Event: 2.895 Thread 0x00007fe2704fb800 1683 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::setSpecified (11 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1683 0x00007fe261644310 code [0x00007fe261644480, 0x00007fe2616445f0]
Event: 2.895 Thread 0x00007fe2704fb800 1684 2 com.sun.org.apache.xerces.internal.utils.XMLSecurityManager::isNoLimit (10 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1684 0x00007fe261644710 code [0x00007fe261644860, 0x00007fe2616449d0]
Event: 2.895 Thread 0x00007fe2704fb800 1685 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getURI (22 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1685 0x00007fe261644a50 code [0x00007fe261644bc0, 0x00007fe261644db0]
Event: 2.895 Thread 0x00007fe2704fb800 1686 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getURI (29 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1686 0x00007fe261644f90 code [0x00007fe261645100, 0x00007fe2616452b0]
Event: 2.895 Thread 0x00007fe2704fb800 1687 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getLocalName (11 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1687 0x00007fe2616453d0 code [0x00007fe261645540, 0x00007fe2616456e8]
Event: 2.895 Thread 0x00007fe2704fb800 1690 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getLocalName (37 bytes)
Event: 2.895 Thread 0x00007fe2704fb800 nmethod 1690 0x00007fe2616457d0 code [0x00007fe261645940, 0x00007fe261645b10]
Event: 2.895 Thread 0x00007fe2704fb800 1674 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getValue (69 bytes)
Event: 2.896 Thread 0x00007fe2704fb800 nmethod 1674 0x00007fe261645c50 code [0x00007fe261645de0, 0x00007fe2616460a8]
Event: 2.896 Thread 0x00007fe2704fb800 1689 2 org.apache.tomcat.util.IntrospectionUtils::capitalize (79 bytes)
Event: 2.896 Thread 0x00007fe2704fb800 nmethod 1689 0x00007fe2616462d0 code [0x00007fe2616464a0, 0x00007fe261646a68]
Event: 2.896 Thread 0x00007fe2704fb800 1691 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getQName (11 bytes)
Event: 2.896 Thread 0x00007fe2704fb800 nmethod 1691 0x00007fe261646ed0 code [0x00007fe261647040, 0x00007fe2616471e8]
Event: 2.896 Thread 0x00007fe2704fb800 1692 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getQName (38 bytes)
Event: 2.896 Thread 0x00007fe2704fb800 nmethod 1692 0x00007fe2616472d0 code [0x00007fe261647440, 0x00007fe261647610]
Event: 2.896 Thread 0x00007fe2704fb800 1693 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getType (11 bytes)
Event: 2.897 Thread 0x00007fe2704fb800 nmethod 1693 0x00007fe261647750 code [0x00007fe2616478c0, 0x00007fe261647ae8]
Event: 2.897 Thread 0x00007fe2704fb800 1695 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getType (28 bytes)
Event: 2.897 Thread 0x00007fe2704fb800 nmethod 1695 0x00007fe261647cd0 code [0x00007fe261647e60, 0x00007fe2616480c8]
Event: 2.897 Thread 0x00007fe2704fb800 1696 2 com.sun.org.apache.xerces.internal.util.XMLAttributesImpl::getReportableType (15 bytes)
Event: 2.897 Thread 0x00007fe2704fb800 nmethod 1696 0x00007fe261648310 code [0x00007fe261648480, 0x00007fe2616486a8]
Event: 2.897 Thread 0x00007fe2704fb800 1697 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getValue (11 bytes)
Event: 2.897 Thread 0x00007fe2704fb800 nmethod 1697 0x00007fe261648810 code [0x00007fe261648980, 0x00007fe261648b28]
Event: 2.897 Thread 0x00007fe2704fb800 1698 2 org.xml.sax.helpers.AttributesImpl::getLocalName (25 bytes)
Event: 2.899 Thread 0x00007fe2704fb800 nmethod 1698 0x00007fe261648c10 code [0x00007fe261648d80, 0x00007fe261648f30]
Event: 2.899 Thread 0x00007fe2704fb800 1702 3 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanLiteral (755 bytes)
Event: 2.900 Thread 0x00007fe2704fb800 nmethod 1702 0x00007fe261649010 code [0x00007fe2616492e0, 0x00007fe26164a828]
Event: 2.900 Thread 0x00007fe2704fb800 1704 2 org.apache.tomcat.util.IntrospectionUtils::setProperty (16 bytes)
Event: 2.900 Thread 0x00007fe2704fb800 nmethod 1704 0x00007fe26164b3d0 code [0x00007fe26164b540, 0x00007fe26164b6f8]
Event: 2.900 Thread 0x00007fe2704fb800 1699 2 org.apache.tomcat.util.digester.Digester::isFakeAttribute (101 bytes)
Event: 2.901 Thread 0x00007fe2704fb800 nmethod 1699 0x00007fe26164b850 code [0x00007fe26164ba00, 0x00007fe26164bdf8]
Event: 2.901 Thread 0x00007fe2704fb800 1700 ! 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser::characters (78 bytes)
Event: 2.901 Thread 0x00007fe2704fb800 nmethod 1700 0x00007fe26164c150 code [0x00007fe26164c2e0, 0x00007fe26164c588]
Event: 2.901 Thread 0x00007fe2704fb800 1701 2 org.apache.tomcat.util.digester.Digester::characters (98 bytes)
Event: 2.902 Thread 0x00007fe2704fb800 nmethod 1701 0x00007fe26164c750 code [0x00007fe26164c960, 0x00007fe26164d038]
Event: 2.902 Thread 0x00007fe2704fb800 1703 2 org.apache.tomcat.util.modeler.ManagedBean::$jacocoInit (54 bytes)
Event: 2.902 Thread 0x00007fe2704fb800 nmethod 1703 0x00007fe26164d7d0 code [0x00007fe26164d960, 0x00007fe26164ddd8]
Event: 2.902 Thread 0x00007fe2704fb800 1688 1 java.util.concurrent.locks.ReentrantReadWriteLock::writeLock (5 bytes)
Event: 2.902 Thread 0x00007fe2704fb800 nmethod 1688 0x00007fe26164df90 code [0x00007fe26164e0e0, 0x00007fe26164e1f0]
Event: 2.902 Thread 0x00007fe2704fb800 1694 1 java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync::writerShouldBlock (2 bytes)
Event: 2.902 Thread 0x00007fe2704fb800 nmethod 1694 0x00007fe26164e250 code [0x00007fe26164e3a0, 0x00007fe26164e4b0]
Event: 2.908 Thread 0x00007fe2704fb800 1710 % 3 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::skipSpaces @ 67 (350 bytes)
Event: 2.909 Thread 0x00007fe2704fb800 nmethod 1710% 0x00007fe26164e510 code [0x00007fe26164e740, 0x00007fe26164f468]
Event: 2.909 Thread 0x00007fe2704fb800 1723 % ! 3 org.apache.tomcat.util.IntrospectionUtils::setProperty @ 140 (1356 bytes)
Event: 2.919 Thread 0x00007fe2704fb800 nmethod 1723% 0x00007fe26164fb50 code [0x00007fe261650b20, 0x00007fe261666e08]
Event: 2.919 Thread 0x00007fe2704fb800 1711 % 3 sun.reflect.UTF8::utf8Length @ 9 (81 bytes)
Event: 2.929 Thread 0x00007fe2704fb800 nmethod 1711% 0x00007fe261672310 code [0x00007fe2616724c0, 0x00007fe261672b48]
Event: 2.929 Thread 0x00007fe2704fb800 1725 % 3 com.sun.org.apache.xerces.internal.util.SymbolTable::hash @ 13 (53 bytes)
Event: 2.929 Thread 0x00007fe2704fb800 nmethod 1725% 0x00007fe261672e10 code [0x00007fe261672fa0, 0x00007fe2616732c8]
Event: 2.929 Thread 0x00007fe2704fb800 1712 % ! 3 sun.reflect.UTF8::encode @ 17 (191 bytes)
Event: 2.930 Thread 0x00007fe2704fb800 nmethod 1712% 0x00007fe261673450 code [0x00007fe261673640, 0x00007fe2616740a8]
Event: 2.930 Thread 0x00007fe2704fb800 1713 % 3 sun.reflect.ClassFileAssembler::emitConstantPoolUTF8 @ 19 (50 bytes)
Event: 2.930 Thread 0x00007fe2704fb800 nmethod 1713% 0x00007fe261674850 code [0x00007fe261674a60, 0x00007fe261675188]
Event: 2.930 Thread 0x00007fe2704fb800 1707 1 sun.reflect.ByteVectorImpl::getLength (7 bytes)
Event: 2.930 Thread 0x00007fe2704fb800 nmethod 1707 0x00007fe261675710 code [0x00007fe261675860, 0x00007fe261675970]
Event: 2.930 Thread 0x00007fe2704fb800 1720 1 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::setScannerState (6 bytes)
Event: 2.931 Thread 0x00007fe2704fb800 nmethod 1720 0x00007fe2616759d0 code [0x00007fe261675b20, 0x00007fe261675c30]
Event: 2.931 Thread 0x00007fe2704fb800 1708 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl::scanStartElement (446 bytes)
Event: 2.932 Thread 0x00007fe2704fb800 nmethod 1708 0x00007fe261675c90 code [0x00007fe261675f20, 0x00007fe261676ab8]
Event: 2.932 Thread 0x00007fe2704fb800 1714 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl::next (10 bytes)
Event: 2.932 Thread 0x00007fe2704fb800 nmethod 1714 0x00007fe261677490 code [0x00007fe261677600, 0x00007fe261677788]
Event: 2.932 Thread 0x00007fe2704fb800 1715 ! 2 com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver::next (2346 bytes)
Event: 2.936 Thread 0x00007fe2704fb800 nmethod 1715 0x00007fe261677810 code [0x00007fe261677e60, 0x00007fe26167a118]
Event: 2.936 Thread 0x00007fe2704fb800 1726 % 3 sun.reflect.generics.parser.SignatureParser::parseIdentifier @ 8 (115 bytes)
Event: 2.937 Thread 0x00007fe2704fb800 nmethod 1726% 0x00007fe26167d750 code [0x00007fe26167d9e0, 0x00007fe26167e908]
Event: 2.937 Thread 0x00007fe2704fb800 1717 2 org.apache.tomcat.util.digester.ArrayStack::pop (44 bytes)
Event: 2.937 Thread 0x00007fe2704fb800 nmethod 1717 0x00007fe26167f1d0 code [0x00007fe26167f360, 0x00007fe26167f628]
Event: 2.937 Thread 0x00007fe2704fb800 1718 2 org.apache.tomcat.util.digester.Rule::body (12 bytes)
Event: 2.937 Thread 0x00007fe2704fb800 nmethod 1718 0x00007fe26167f850 code [0x00007fe26167f9c0, 0x00007fe26167fb68]
Event: 2.937 Thread 0x00007fe2704fb800 1716 2 org.apache.tomcat.util.digester.ArrayStack::push (17 bytes)
Event: 2.938 Thread 0x00007fe2704fb800 nmethod 1716 0x00007fe26167fc90 code [0x00007fe26167fe20, 0x00007fe261680118]
Event: 2.938 Thread 0x00007fe2704fb800 1719 2 org.apache.tomcat.util.digester.RulesBase::$jacocoInit (52 bytes)
Event: 2.938 Thread 0x00007fe2704fb800 nmethod 1719 0x00007fe2616803d0 code [0x00007fe261680560, 0x00007fe2616809b8]
Event: 2.938 Thread 0x00007fe2704fb800 1721 2 org.apache.tomcat.util.digester.ObjectCreateRule::$jacocoInit (52 bytes)
Event: 2.938 Thread 0x00007fe2704fb800 nmethod 1721 0x00007fe261680bd0 code [0x00007fe261680d60, 0x00007fe2616811b8]
Event: 2.938 Thread 0x00007fe2704fb800 1722 2 com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy::getLength (10 bytes)
Event: 2.938 Thread 0x00007fe2704fb800 nmethod 1722 0x00007fe2616813d0 code [0x00007fe261681540, 0x00007fe2616816d0]
Event: 2.938 Thread 0x00007fe2704fb800 1709 ! 2 sun.reflect.GeneratedMethodAccessor3::invoke (66 bytes)
Event: 2.939 Thread 0x00007fe2704fb800 nmethod 1709 0x00007fe261681790 code [0x00007fe261681960, 0x00007fe261681e58]
Event: 2.939 Thread 0x00007fe2704fb800 1724 1 java.util.concurrent.locks.ReentrantReadWriteLock::readLock (5 bytes)
Event: 2.939 Thread 0x00007fe2704fb800 nmethod 1724 0x00007fe261682210 code [0x00007fe261682360, 0x00007fe261682470]
Event: 2.939 Thread 0x00007fe2704fb800 1706 2 sun.reflect.ClassFileAssembler::emitConstantPoolNameAndType (28 bytes)
Event: 2.939 Thread 0x00007fe2704fb800 nmethod 1706 0x00007fe2616824d0 code [0x00007fe261682680, 0x00007fe261682a08]
Event: 2.939 Thread 0x00007fe2704fb800 1705 2 sun.reflect.ClassFileAssembler::getLength (11 bytes)
Event: 2.940 Thread 0x00007fe2704fb800 nmethod 1705 0x00007fe261682e10 code [0x00007fe261682f80, 0x00007fe261683110]
Event: 2.941 Thread 0x00007fe2704fb800 1727 2 org.springframework.beans.factory.support.AbstractBeanDefinition::$jacocoInit (54 bytes)
Event: 2.942 Thread 0x00007fe2704fb800 nmethod 1727 0x00007fe2616831d0 code [0x00007fe261683360, 0x00007fe2616837d8]
Event: 2.953 Thread 0x00007fe2704fb800 1739 3 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::skipSpaces (350 bytes)
Event: 2.954 Thread 0x00007fe2704fb800 nmethod 1739 0x00007fe261683990 code [0x00007fe261683bc0, 0x00007fe261684868]
Event: 2.954 Thread 0x00007fe2704fb800 1743 ! 3 org.apache.tomcat.util.IntrospectionUtils::setProperty (1356 bytes)
Event: 2.963 Thread 0x00007fe2704fb800 nmethod 1743 0x00007fe261684ed0 code [0x00007fe261685e00, 0x00007fe261691928]
Event: 2.963 Thread 0x00007fe2704fb800 1744 % 3 com.sun.org.apache.xerces.internal.util.SymbolTable::addSymbol @ 44 (110 bytes)
Event: 2.964 Thread 0x00007fe2704fb800 nmethod 1744% 0x00007fe26169c190 code [0x00007fe26169c360, 0x00007fe26169c8d8]
Event: 2.964 Thread 0x00007fe2704fb800 1741 % 3 com.sun.org.apache.xerces.internal.impl.XMLEntityScanner::scanName @ 144 (305 bytes)
Event: 2.976 Thread 0x00007fe2704fb800 nmethod 1741% 0x00007fe26169cd50 code [0x00007fe26169cfc0, 0x00007fe26169dcc8]
Event: 2.976 Thread 0x00007fe2704fb800 1745 1 java.util.HashMap::afterNodeAccess (1 bytes)
Event: 2.976 Thread 0x00007fe2704fb800 nmethod 1745 0x00007fe26169e4d0 code [0x00007fe26169e620, 0x00007fe26169e730]
Event: 2.976 Thread 0x00007fe2704fb800 1730 % 3 com.sun.org.apache.xerces.internal.impl.io.UTF8Reader::read @ 113 (1443 bytes)
GC Heap History (17 events):
Event: 0.420 GC heap before
{Heap before GC invocations=1 (full 0):
PSYoungGen total 17920K, used 15360K [0x00000000ec400000, 0x00000000ed800000, 0x0000000100000000)
eden space 15360K, 100% used [0x00000000ec400000,0x00000000ed300000,0x00000000ed300000)
from space 2560K, 0% used [0x00000000ed580000,0x00000000ed580000,0x00000000ed800000)
to space 2560K, 0% used [0x00000000ed300000,0x00000000ed300000,0x00000000ed580000)
ParOldGen total 40960K, used 0K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c00000,0x00000000c7400000)
Metaspace used 4963K, capacity 5536K, committed 5760K, reserved 1056768K
class space used 509K, capacity 528K, committed 640K, reserved 1048576K
Event: 0.423 GC heap after
Heap after GC invocations=1 (full 0):
PSYoungGen total 17920K, used 1749K [0x00000000ec400000, 0x00000000ed800000, 0x0000000100000000)
eden space 15360K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ed300000)
from space 2560K, 68% used [0x00000000ed300000,0x00000000ed4b57a8,0x00000000ed580000)
to space 2560K, 0% used [0x00000000ed580000,0x00000000ed580000,0x00000000ed800000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 4963K, capacity 5536K, committed 5760K, reserved 1056768K
class space used 509K, capacity 528K, committed 640K, reserved 1048576K
}
Event: 0.729 GC heap before
{Heap before GC invocations=2 (full 0):
PSYoungGen total 17920K, used 17109K [0x00000000ec400000, 0x00000000ed800000, 0x0000000100000000)
eden space 15360K, 100% used [0x00000000ec400000,0x00000000ed300000,0x00000000ed300000)
from space 2560K, 68% used [0x00000000ed300000,0x00000000ed4b57a8,0x00000000ed580000)
to space 2560K, 0% used [0x00000000ed580000,0x00000000ed580000,0x00000000ed800000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 7191K, capacity 7318K, committed 7424K, reserved 1056768K
class space used 727K, capacity 753K, committed 768K, reserved 1048576K
Event: 0.734 GC heap after
Heap after GC invocations=2 (full 0):
PSYoungGen total 17920K, used 1824K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 15360K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ed300000)
from space 2560K, 71% used [0x00000000ed580000,0x00000000ed748000,0x00000000ed800000)
to space 2560K, 0% used [0x00000000ed300000,0x00000000ed300000,0x00000000ed580000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 7191K, capacity 7318K, committed 7424K, reserved 1056768K
class space used 727K, capacity 753K, committed 768K, reserved 1048576K
}
Event: 0.901 GC heap before
{Heap before GC invocations=3 (full 0):
PSYoungGen total 17920K, used 17184K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 15360K, 100% used [0x00000000ec400000,0x00000000ed300000,0x00000000ed300000)
from space 2560K, 71% used [0x00000000ed580000,0x00000000ed748000,0x00000000ed800000)
to space 2560K, 0% used [0x00000000ed300000,0x00000000ed300000,0x00000000ed580000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 8044K, capacity 8118K, committed 8320K, reserved 1056768K
class space used 820K, capacity 849K, committed 896K, reserved 1048576K
Event: 0.905 GC heap after
Heap after GC invocations=3 (full 0):
PSYoungGen total 17920K, used 1969K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 15360K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ed300000)
from space 2560K, 76% used [0x00000000ed300000,0x00000000ed4ec608,0x00000000ed580000)
to space 2560K, 0% used [0x00000000ee480000,0x00000000ee480000,0x00000000ee700000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 8044K, capacity 8118K, committed 8320K, reserved 1056768K
class space used 820K, capacity 849K, committed 896K, reserved 1048576K
}
Event: 1.041 GC heap before
{Heap before GC invocations=4 (full 0):
PSYoungGen total 17920K, used 17329K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 15360K, 100% used [0x00000000ec400000,0x00000000ed300000,0x00000000ed300000)
from space 2560K, 76% used [0x00000000ed300000,0x00000000ed4ec608,0x00000000ed580000)
to space 2560K, 0% used [0x00000000ee480000,0x00000000ee480000,0x00000000ee700000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 8696K, capacity 8822K, committed 8960K, reserved 1056768K
class space used 894K, capacity 913K, committed 1024K, reserved 1048576K
Event: 1.045 GC heap after
Heap after GC invocations=4 (full 0):
PSYoungGen total 33280K, used 2144K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 30720K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ee200000)
from space 2560K, 83% used [0x00000000ee480000,0x00000000ee698128,0x00000000ee700000)
to space 2560K, 0% used [0x00000000ee200000,0x00000000ee200000,0x00000000ee480000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 8696K, capacity 8822K, committed 8960K, reserved 1056768K
class space used 894K, capacity 913K, committed 1024K, reserved 1048576K
}
Event: 1.290 GC heap before
{Heap before GC invocations=5 (full 0):
PSYoungGen total 33280K, used 32864K [0x00000000ec400000, 0x00000000ee700000, 0x0000000100000000)
eden space 30720K, 100% used [0x00000000ec400000,0x00000000ee200000,0x00000000ee200000)
from space 2560K, 83% used [0x00000000ee480000,0x00000000ee698128,0x00000000ee700000)
to space 2560K, 0% used [0x00000000ee200000,0x00000000ee200000,0x00000000ee480000)
ParOldGen total 40960K, used 8K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 0% used [0x00000000c4c00000,0x00000000c4c02000,0x00000000c7400000)
Metaspace used 9868K, capacity 9948K, committed 10112K, reserved 1058816K
class space used 1027K, capacity 1074K, committed 1152K, reserved 1048576K
Event: 1.295 GC heap after
Heap after GC invocations=5 (full 0):
PSYoungGen total 33280K, used 2533K [0x00000000ec400000, 0x00000000f0600000, 0x0000000100000000)
eden space 30720K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ee200000)
from space 2560K, 98% used [0x00000000ee200000,0x00000000ee479408,0x00000000ee480000)
to space 3072K, 0% used [0x00000000f0300000,0x00000000f0300000,0x00000000f0600000)
ParOldGen total 40960K, used 433K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 1% used [0x00000000c4c00000,0x00000000c4c6c6c8,0x00000000c7400000)
Metaspace used 9868K, capacity 9948K, committed 10112K, reserved 1058816K
class space used 1027K, capacity 1074K, committed 1152K, reserved 1048576K
}
Event: 1.511 GC heap before
{Heap before GC invocations=6 (full 0):
PSYoungGen total 33280K, used 33253K [0x00000000ec400000, 0x00000000f0600000, 0x0000000100000000)
eden space 30720K, 100% used [0x00000000ec400000,0x00000000ee200000,0x00000000ee200000)
from space 2560K, 98% used [0x00000000ee200000,0x00000000ee479408,0x00000000ee480000)
to space 3072K, 0% used [0x00000000f0300000,0x00000000f0300000,0x00000000f0600000)
ParOldGen total 40960K, used 433K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 1% used [0x00000000c4c00000,0x00000000c4c6c6c8,0x00000000c7400000)
Metaspace used 11380K, capacity 11470K, committed 11776K, reserved 1060864K
class space used 1202K, capacity 1237K, committed 1280K, reserved 1048576K
Event: 1.519 GC heap after
Heap after GC invocations=6 (full 0):
PSYoungGen total 64000K, used 3058K [0x00000000ec400000, 0x00000000f0700000, 0x0000000100000000)
eden space 60928K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000eff80000)
from space 3072K, 99% used [0x00000000f0300000,0x00000000f05fc948,0x00000000f0600000)
to space 3584K, 0% used [0x00000000eff80000,0x00000000eff80000,0x00000000f0300000)
ParOldGen total 40960K, used 505K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 1% used [0x00000000c4c00000,0x00000000c4c7e6c0,0x00000000c7400000)
Metaspace used 11380K, capacity 11470K, committed 11776K, reserved 1060864K
class space used 1202K, capacity 1237K, committed 1280K, reserved 1048576K
}
Event: 1.988 GC heap before
{Heap before GC invocations=7 (full 0):
PSYoungGen total 64000K, used 63986K [0x00000000ec400000, 0x00000000f0700000, 0x0000000100000000)
eden space 60928K, 100% used [0x00000000ec400000,0x00000000eff80000,0x00000000eff80000)
from space 3072K, 99% used [0x00000000f0300000,0x00000000f05fc948,0x00000000f0600000)
to space 3584K, 0% used [0x00000000eff80000,0x00000000eff80000,0x00000000f0300000)
ParOldGen total 40960K, used 505K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 1% used [0x00000000c4c00000,0x00000000c4c7e6c0,0x00000000c7400000)
Metaspace used 14018K, capacity 14062K, committed 14336K, reserved 1062912K
class space used 1519K, capacity 1525K, committed 1536K, reserved 1048576K
Event: 2.005 GC heap after
Heap after GC invocations=7 (full 0):
PSYoungGen total 64512K, used 3340K [0x00000000ec400000, 0x00000000f4300000, 0x0000000100000000)
eden space 60928K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000eff80000)
from space 3584K, 93% used [0x00000000eff80000,0x00000000f02c3120,0x00000000f0300000)
to space 4096K, 0% used [0x00000000f3f00000,0x00000000f3f00000,0x00000000f4300000)
ParOldGen total 40960K, used 1718K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 4% used [0x00000000c4c00000,0x00000000c4dad828,0x00000000c7400000)
Metaspace used 14018K, capacity 14062K, committed 14336K, reserved 1062912K
class space used 1519K, capacity 1525K, committed 1536K, reserved 1048576K
}
Event: 2.286 GC heap before
{Heap before GC invocations=8 (full 0):
PSYoungGen total 64512K, used 64268K [0x00000000ec400000, 0x00000000f4300000, 0x0000000100000000)
eden space 60928K, 100% used [0x00000000ec400000,0x00000000eff80000,0x00000000eff80000)
from space 3584K, 93% used [0x00000000eff80000,0x00000000f02c3120,0x00000000f0300000)
to space 4096K, 0% used [0x00000000f3f00000,0x00000000f3f00000,0x00000000f4300000)
ParOldGen total 40960K, used 1718K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 4% used [0x00000000c4c00000,0x00000000c4dad828,0x00000000c7400000)
Metaspace used 16525K, capacity 16622K, committed 16896K, reserved 1064960K
class space used 1751K, capacity 1781K, committed 1792K, reserved 1048576K
Event: 2.295 GC heap after
Heap after GC invocations=8 (full 0):
PSYoungGen total 125952K, used 3579K [0x00000000ec400000, 0x00000000f4300000, 0x0000000100000000)
eden space 121856K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000f3b00000)
from space 4096K, 87% used [0x00000000f3f00000,0x00000000f427efe8,0x00000000f4300000)
to space 4096K, 0% used [0x00000000f3b00000,0x00000000f3b00000,0x00000000f3f00000)
ParOldGen total 40960K, used 2014K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 4% used [0x00000000c4c00000,0x00000000c4df7828,0x00000000c7400000)
Metaspace used 16525K, capacity 16622K, committed 16896K, reserved 1064960K
class space used 1751K, capacity 1781K, committed 1792K, reserved 1048576K
}
Event: 2.979 GC heap before
{Heap before GC invocations=9 (full 0):
PSYoungGen total 125952K, used 84260K [0x00000000ec400000, 0x00000000f4300000, 0x0000000100000000)
eden space 121856K, 66% used [0x00000000ec400000,0x00000000f12ca240,0x00000000f3b00000)
from space 4096K, 87% used [0x00000000f3f00000,0x00000000f427efe8,0x00000000f4300000)
to space 4096K, 0% used [0x00000000f3b00000,0x00000000f3b00000,0x00000000f3f00000)
ParOldGen total 40960K, used 2014K [0x00000000c4c00000, 0x00000000c7400000, 0x00000000ec400000)
object space 40960K, 4% used [0x00000000c4c00000,0x00000000c4df7828,0x00000000c7400000)
Metaspace used 21038K, capacity 21152K, committed 21248K, reserved 1069056K
class space used 2203K, capacity 2248K, committed 2304K, reserved 1048576K
Deoptimization events (30 events):
Event: 0.423 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe2611e954c method=org.jacoco.agent.rt.internal_8ff85ea.asm.Type.getType([CI)Lorg/jacoco/agent/rt/internal_8ff85ea/asm/Type; @ 181
Event: 0.423 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe2611b5e1c method=org.jacoco.agent.rt.internal_8ff85ea.asm.Type.getType([CI)Lorg/jacoco/agent/rt/internal_8ff85ea/asm/Type; @ 181
Event: 0.441 Thread 0x00007fe27004c800 Uncommon trap: reason=null_check action=make_not_entrant pc=0x00007fe26115d42c method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
Event: 0.500 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26122e0a8 method=org.jacoco.agent.rt.internal_8ff85ea.asm.ByteVector.putUTF8(Ljava/lang/String;)Lorg/jacoco/agent/rt/internal_8ff85ea/asm/ByteVector; @ 34
Event: 0.569 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26115cb44 method=java.lang.String.indexOf([CII[CIII)I @ 123
Event: 0.569 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26113be20 method=java.lang.String.indexOf([CII[CIII)I @ 123
Event: 0.571 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26121ba28 method=sun.misc.URLClassPath.getLoader(I)Lsun/misc/URLClassPath$Loader; @ 36
Event: 0.571 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26119e43c method=sun.misc.URLClassPath.getLoader(I)Lsun/misc/URLClassPath$Loader; @ 36
Event: 0.571 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe2611b48f4 method=sun.misc.URLClassPath$JarLoader.ensureOpen()V @ 4
Event: 0.821 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe2612672e4 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 129
Event: 0.992 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe2611b7098 method=org.jacoco.agent.rt.internal_8ff85ea.asm.Item.isEqualTo(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/Item;)Z @ 345
Event: 1.079 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26136b5d0 method=java.lang.String.indexOf([CII[CIII)I @ 3
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613710cc method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.LabelNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 5
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26121db10 method=org.jacoco.agent.rt.internal_8ff85ea.asm.MethodVisitor.visitLineNumber(ILorg/jacoco/agent/rt/internal_8ff85ea/asm/Label;)V @ 4
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613a66ec method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodInsnNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 21
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26136aed4 method=org.jacoco.agent.rt.internal_8ff85ea.asm.MethodVisitor.visitMethodInsn(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V @ 50
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613a66ec method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodInsnNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 21
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613a66ec method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodInsnNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 21
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613a66ec method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodInsnNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 21
Event: 1.190 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613710cc method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.LabelNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 5
Event: 1.278 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613710cc method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.LabelNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 5
Event: 1.286 Thread 0x00007fe27004c800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007fe2613710cc method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.LabelNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 5
Event: 1.533 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26144a934 method=org.jacoco.agent.rt.internal_8ff85ea.asm.ClassReader.readCode(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;Lorg/jacoco/agent/rt/internal_8ff85ea/asm/Context;I)V @
Event: 1.675 Thread 0x00007fe27004c800 Uncommon trap: reason=range_check action=make_not_entrant pc=0x00007fe2614f4e40 method=sun.reflect.generics.parser.SignatureParser.current()C @ 34
Event: 1.902 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe26119d3c0 method=org.jacoco.agent.rt.internal_8ff85ea.asm.ClassReader.readUTF(II[C)Ljava/lang/String; @ 77
Event: 1.902 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe261189ac4 method=org.jacoco.agent.rt.internal_8ff85ea.asm.ClassReader.readUTF(II[C)Ljava/lang/String; @ 77
Event: 2.032 Thread 0x00007fe27004c800 Uncommon trap: reason=null_assert action=make_not_entrant pc=0x00007fe261487f68 method=java.util.zip.ZipEntry.<init>(Ljava/util/zip/ZipEntry;)V @ 70
Event: 2.046 Thread 0x00007fe270932000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe261283c0c method=org.jacoco.agent.rt.internal_8ff85ea.asm.Type.getType([CI)Lorg/jacoco/agent/rt/internal_8ff85ea/asm/Type; @ 165
Event: 2.129 Thread 0x00007fe270932000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe261353040 method=org.jacoco.agent.rt.internal_8ff85ea.asm.commons.AnalyzerAdapter.pop(Ljava/lang/String;)V @ 65
Event: 2.455 Thread 0x00007fe27004c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fe261544e50 method=org.jacoco.agent.rt.internal_8ff85ea.asm.tree.MethodNode.accept(Lorg/jacoco/agent/rt/internal_8ff85ea/asm/MethodVisitor;)V @ 376
Classes redefined (0 events):
No events
Internal exceptions (84 events):
Event: 0.024 Thread 0x00007fe27004c800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000ec407cb0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64
Event: 0.024 Thread 0x00007fe27004c800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000ec407f98) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/s
Event: 0.441 Thread 0x00007fe27004c800 Implicit null exception at 0x00007fe26115d262 to 0x00007fe26115d41d
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecaf8500) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecaf88f8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecafb5b8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecafb9b0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecafca78) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.571 Thread 0x00007fe27004c800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ecafce70) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jvm.cpp, line 1445]
Event: 0.653 Thread 0x00007fe27004c800 Exception <a 'java/io/FileNotFoundException'> (0x00000000ecf77328) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/prims/jni.cpp, line 710]
Event: 0.854 Thread 0x00007fe27004c800 Exception <a 'java/lang/NoSuchMethodError': org.slf4j.impl.StaticMDCBinder.getSingleton()Lorg/slf4j/impl/StaticMDCBinder;> (0x00000000ece86928) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/i
Event: 1.222 Thread 0x00007fe27004c800 Exception <a 'java/lang/NoClassDefFoundError': org/springframework/transaction/interceptor/TransactionAttribute> (0x00000000eda1d4d0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/s
Event: 1.223 Thread 0x00007fe27004c800 Exception <a 'java/lang/NoClassDefFoundError': org/springframework/transaction/TransactionDefinition> (0x00000000eda28ad8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictio
Event: 1.308 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec610f38) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.308 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec613620) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.308 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec615c80) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.316 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec7487b8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.318 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec793178) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.318 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec794498) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.319 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec7a7a18) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.320 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec7ba7a8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.321 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec7d5660) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.322 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec7ebef8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.323 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec815e10) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.324 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec818c00) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.325 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec82d238) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.326 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec841ab8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.327 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec854878) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.328 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec867788) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.331 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec87a538) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.332 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec8916b0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.333 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec8aa420) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.334 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ec8c12c8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.349 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecb6c730) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.355 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecb7f7a8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.356 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecb941e8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.418 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed458470) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.418 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed459940) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.424 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed4e3978) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.424 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed4e5d70) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.424 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed4e8000) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.424 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed4e9f58) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.424 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed4eca80) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.425 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed5041c0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.425 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed510950) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.425 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ed512800) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.485 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eddd5698) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.485 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eddd6a60) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.485 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eddd83a8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.485 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eddd9998) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.485 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000edddace8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.609 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eca4a360) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.609 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000eca5c928) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.656 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': java/lang/ObjectCustomizer> (0x00000000ecef7b20) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210]
Event: 1.661 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf07e58) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.661 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf0a988) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': org/springframework/boot/SpringApplicationCustomizer> (0x00000000ecf29348) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDicti
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf2c258) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf2d7e8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf2ea50) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf30270) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf31b68) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf331e0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf365e0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.665 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf37928) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.666 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf39ff0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.666 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf3dcf0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.666 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf41330) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.666 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf43248) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.666 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf46110) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.667 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf48318) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.667 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000ecf4a820) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 619]
Event: 1.675 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException': 90> (0x00000000ed042590) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp, line 369]
Event: 1.676 Thread 0x00007fe27004c800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException': 80> (0x00000000ed045780) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp, line 369]
Event: 2.723 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': groovy/lang/ExpandoMetaClassBeanInfo> (0x00000000f034db38) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line
Event: 2.723 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': groovy/lang/MetaClassImplBeanInfo> (0x00000000f035a8e8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210
Event: 2.723 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': java/lang/ObjectBeanInfo> (0x00000000f03605a0) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210]
Event: 2.723 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': java/lang/ObjectCustomizer> (0x00000000f0366220) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210]
Event: 2.724 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': groovy/lang/MetaClassImplCustomizer> (0x00000000f03786b8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 2
Event: 2.726 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': groovy/lang/ExpandoMetaClassCustomizer> (0x00000000f03ad768) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, lin
Event: 2.750 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo> (0x00000000f0641f28) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share/v
Event: 2.751 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo> (0x00000000f06583e8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/shar
Event: 2.751 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer> (0x00000000f066f0a8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/sh
Event: 2.752 Thread 0x00007fe27004c800 Exception <a 'java/lang/ClassNotFoundException': org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer> (0x00000000f069a0f8) thrown at [/builddir/build/BUILD/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/openjdk/hotspot/src/share
Events (250 events):
Event: 2.748 loading class java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock done
Event: 2.748 loading class org/apache/tomcat/util/modeler/NotificationInfo
Event: 2.748 loading class org/apache/tomcat/util/modeler/NotificationInfo done
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo done
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo done
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo
Event: 2.750 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderBeanInfo done
Event: 2.750 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo
Event: 2.750 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo done
Event: 2.750 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo
Event: 2.750 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo done
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderBeanInfo done
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer done
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer done
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer
Event: 2.751 loading class org/springframework/beans/factory/support/AbstractBeanDefinitionReaderCustomizer done
Event: 2.751 loading class sun/reflect/generics/tree/IntSignature
Event: 2.751 loading class sun/reflect/generics/tree/IntSignature done
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer done
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer done
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer
Event: 2.752 loading class org/springframework/beans/factory/groovy/GroovyBeanDefinitionReaderCustomizer done
Event: 2.753 loading class org/apache/tomcat/util/modeler/FeatureInfo
Event: 2.753 loading class org/apache/tomcat/util/modeler/FeatureInfo done
Event: 2.753 loading class org/apache/tomcat/util/modeler/AttributeInfo
Event: 2.753 loading class org/apache/tomcat/util/modeler/AttributeInfo done
Event: 2.754 loading class javax/management/MBeanFeatureInfo
Event: 2.754 loading class javax/management/DescriptorRead
Event: 2.754 loading class javax/management/DescriptorRead done
Event: 2.754 loading class javax/management/MBeanFeatureInfo done
Event: 2.754 loading class javax/management/MBeanAttributeInfo
Event: 2.760 loading class org/springframework/context/annotation/ClassPathBeanDefinitionScanner
Event: 2.760 loading class org/springframework/context/annotation/ClassPathBeanDefinitionScanner done
Event: 2.760 loading class javax/management/MBeanAttributeInfo done
Event: 2.761 loading class org/apache/tomcat/util/modeler/BaseModelMBean
Event: 2.761 loading class org/apache/tomcat/util/modeler/BaseModelMBean done
Event: 2.764 loading class org/springframework/context/annotation/ConflictingBeanDefinitionException
Event: 2.764 loading class org/springframework/context/annotation/ConflictingBeanDefinitionException done
Event: 2.764 loading class org/springframework/beans/factory/support/BeanDefinitionDefaults
Event: 2.764 loading class org/springframework/beans/factory/support/BeanDefinitionDefaults done
Event: 2.765 loading class javax/annotation/ManagedBean
Event: 2.765 loading class javax/annotation/ManagedBean done
Event: 2.766 loading class javax/inject/Named
Event: 2.766 loading class javax/inject/Named done
Event: 2.766 loading class javax/inject$Named
Event: 2.766 loading class javax/inject$Named done
Event: 2.766 loading class org/springframework/boot/BeanDefinitionLoader$ClassExcludeFilter
Event: 2.766 loading class org/springframework/boot/BeanDefinitionLoader$ClassExcludeFilter done
Event: 2.767 loading class org/springframework/boot/BeanDefinitionLoader$GroovyBeanDefinitionSource
Event: 2.767 loading class org/springframework/boot/BeanDefinitionLoader$GroovyBeanDefinitionSource done
Event: 2.769 loading class javax/management/modelmbean/ModelMBeanNotificationBroadcaster
Event: 2.769 loading class javax/management/NotificationBroadcaster
Event: 2.769 loading class javax/management/NotificationBroadcaster done
Event: 2.769 loading class javax/management/modelmbean/ModelMBeanNotificationBroadcaster done
Event: 2.769 loading class org/apache/tomcat/util/modeler/OperationInfo
Event: 2.769 loading class org/apache/tomcat/util/modeler/OperationInfo done
Event: 2.770 loading class org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration
Event: 2.770 loading class org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration done
Event: 2.770 loading class javax/management/MBeanOperationInfo
Event: 2.770 loading class javax/management/MBeanOperationInfo done
Event: 2.771 loading class org/springframework/beans/factory/annotation/AnnotatedGenericBeanDefinition
Event: 2.771 loading class org/springframework/beans/factory/annotation/AnnotatedGenericBeanDefinition done
Event: 2.771 loading class org/apache/tomcat/util/modeler/ParameterInfo
Event: 2.771 loading class org/apache/tomcat/util/modeler/ParameterInfo done
Event: 2.771 loading class org/springframework/core/type/StandardAnnotationMetadata
Event: 2.771 loading class org/springframework/core/type/StandardAnnotationMetadata done
Event: 2.771 loading class javax/management/MBeanParameterInfo
Event: 2.771 loading class javax/management/MBeanParameterInfo done
Event: 2.772 loading class org/springframework/core/type/StandardClassMetadata
Event: 2.772 loading class org/springframework/core/type/StandardClassMetadata done
Event: 2.772 loading class org/apache/tomcat/util/modeler/ManagedBean$1
Event: 2.772 loading class org/apache/tomcat/util/modeler/ManagedBean$1 done
Event: 2.773 loading class org/apache/tomcat/util/buf/StringUtils
Event: 2.773 loading class org/apache/tomcat/util/buf/StringUtils done
Event: 2.774 loading class org/springframework/context/annotation/ScopeMetadata
Event: 2.774 loading class org/springframework/context/annotation/ScopeMetadata done
Event: 2.775 loading class org/springframework/core/annotation/AnnotatedElementUtils$2
Event: 2.775 loading class org/springframework/core/annotation/AnnotatedElementUtils$2 done
Event: 2.776 loading class org/springframework/context/annotation/Lazy
Event: 2.776 loading class org/springframework/context/annotation/Lazy done
Event: 2.777 loading class org/springframework/context/annotation/Primary
Event: 2.777 loading class org/springframework/context/annotation/Primary done
Event: 2.777 loading class org/springframework/context/annotation/DependsOn
Event: 2.777 loading class org/springframework/context/annotation/DependsOn done
Event: 2.778 loading class org/springframework/context/annotation/Role
Event: 2.778 loading class org/springframework/context/annotation/Role done
Event: 2.779 loading class org/springframework/context/annotation/Description
Event: 2.779 loading class org/springframework/context/annotation/Description done
Event: 2.786 loading class org/springframework/beans/factory/support/BeanDefinitionReaderUtils
Event: 2.786 loading class org/springframework/beans/factory/support/BeanDefinitionReaderUtils done
Event: 2.788 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver
Event: 2.788 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver done
Event: 2.794 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$ResourcePatternResolverFactory
Event: 2.794 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$ResourcePatternResolverFactory done
Event: 2.794 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$WebResourcePatternResolverFactory
Event: 2.794 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$WebResourcePatternResolverFactory done
Event: 2.795 loading class org/springframework/boot/devtools/restart/classloader/ClassLoaderFileURLStreamHandler
Event: 2.795 loading class org/springframework/boot/devtools/restart/classloader/ClassLoaderFileURLStreamHandler done
Event: 2.796 loading class sun/reflect/UnsafeObjectFieldAccessorImpl
Event: 2.796 loading class sun/reflect/UnsafeObjectFieldAccessorImpl done
Event: 2.796 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$WebApplicationContextResourceLoader
Event: 2.796 loading class org/springframework/boot/devtools/restart/ClassLoaderFilesResourcePatternResolver$WebApplicationContextResourceLoader done
Event: 2.797 loading class org/springframework/boot/logging/DeferredLog$1
Event: 2.797 loading class org/springframework/boot/logging/DeferredLog$1 done
Event: 2.798 loading class org/springframework/boot/context/config/ConfigFileApplicationListener$PropertySourceOrderingPostProcessor
Event: 2.798 loading class org/springframework/boot/context/config/ConfigFileApplicationListener$PropertySourceOrderingPostProcessor done
Event: 2.798 loading class sun/util/locale/provider/TimeZoneNameUtility
Event: 2.799 loading class sun/util/locale/provider/TimeZoneNameUtility done
Event: 2.799 loading class sun/util/locale/provider/TimeZoneNameProviderImpl
Event: 2.799 loading class sun/util/locale/provider/TimeZoneNameProviderImpl done
Event: 2.799 loading class sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter
Event: 2.799 loading class sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter done
Event: 2.799 loading class sun/util/resources/TimeZoneNames
Event: 2.801 loading class sun/util/resources/TimeZoneNamesBundle
Event: 2.801 loading class sun/util/resources/TimeZoneNamesBundle done
Event: 2.801 loading class sun/util/resources/TimeZoneNames done
Event: 2.801 loading class sun/util/resources/en/TimeZoneNames_en
Event: 2.801 loading class sun/util/resources/en/TimeZoneNames_en done
Event: 2.802 loading class org/springframework/web/context/ConfigurableWebEnvironment
Event: 2.802 loading class org/springframework/web/context/ConfigurableWebEnvironment done
Event: 2.803 loading class org/springframework/context/expression/StandardBeanExpressionResolver
Event: 2.803 loading class org/springframework/context/expression/StandardBeanExpressionResolver done
Event: 2.804 loading class org/springframework/expression/PropertyAccessor
Event: 2.804 loading class org/springframework/expression/PropertyAccessor done
Event: 2.805 loading class org/springframework/expression/BeanResolver
Event: 2.805 loading class org/springframework/expression/BeanResolver done
Event: 2.812 loading class org/springframework/expression/TypeLocator
Event: 2.812 loading class org/springframework/expression/TypeLocator done
Event: 2.812 loading class org/springframework/expression/TypeConverter
Event: 2.812 loading class org/springframework/expression/TypeConverter done
Event: 2.812 loading class org/springframework/expression/EvaluationContext
Event: 2.812 loading class org/springframework/expression/EvaluationContext done
Event: 2.813 loading class org/springframework/beans/factory/BeanExpressionException
Event: 2.813 loading class org/springframework/beans/factory/BeanExpressionException done
Event: 2.814 loading class org/springframework/expression/ParserContext
Event: 2.814 loading class org/springframework/expression/ParserContext done
Event: 2.814 loading class org/springframework/expression/ExpressionParser
Event: 2.814 loading class org/springframework/expression/ExpressionParser done
Event: 2.814 loading class org/springframework/context/expression/StandardBeanExpressionResolver$1
Event: 2.814 loading class org/springframework/context/expression/StandardBeanExpressionResolver$1 done
Event: 2.815 loading class org/springframework/expression/spel/standard/SpelExpressionParser
Event: 2.815 loading class org/springframework/expression/spel/standard/SpelExpressionParser done
Event: 2.816 loading class org/springframework/expression/common/TemplateAwareExpressionParser
Event: 2.816 loading class org/springframework/expression/common/TemplateAwareExpressionParser done
Event: 2.817 loading class org/springframework/expression/Expression
Event: 2.817 loading class org/springframework/expression/Expression done
Event: 2.817 loading class org/springframework/expression/ParseException
Event: 2.817 loading class org/springframework/expression/ParseException done
Event: 2.818 loading class org/springframework/expression/ExpressionException
Event: 2.818 loading class org/springframework/expression/ExpressionException done
Event: 2.818 loading class org/springframework/expression/common/TemplateAwareExpressionParser$1
Event: 2.818 loading class org/springframework/expression/common/TemplateAwareExpressionParser$1 done
Event: 2.819 loading class org/springframework/expression/spel/SpelParserConfiguration
Event: 2.819 loading class org/springframework/expression/spel/SpelParserConfiguration done
Event: 2.819 loading class org/springframework/expression/spel/SpelCompilerMode
Event: 2.819 loading class org/springframework/expression/spel/SpelCompilerMode done
Event: 2.820 loading class org/springframework/beans/support/ResourceEditorRegistrar
Event: 2.820 loading class org/springframework/beans/support/ResourceEditorRegistrar done
Event: 2.821 loading class org/springframework/context/support/ApplicationContextAwareProcessor
Event: 2.821 loading class org/springframework/context/support/ApplicationContextAwareProcessor done
Event: 2.836 loading class org/springframework/beans/factory/config/EmbeddedValueResolver
Event: 2.836 loading class org/springframework/beans/factory/config/EmbeddedValueResolver done
Event: 2.836 loading class org/springframework/beans/factory/config/BeanExpressionContext
Event: 2.836 loading class org/springframework/beans/factory/config/BeanExpressionContext done
Event: 2.837 loading class org/springframework/context/EmbeddedValueResolverAware
Event: 2.837 loading class org/springframework/context/EmbeddedValueResolverAware done
Event: 2.837 loading class org/springframework/context/ApplicationEventPublisherAware
Event: 2.837 loading class org/springframework/context/ApplicationEventPublisherAware done
Event: 2.837 loading class org/springframework/context/support/ApplicationListenerDetector
Event: 2.837 loading class org/springframework/context/support/ApplicationListenerDetector done
Event: 2.843 loading class org/springframework/web/context/support/ServletContextAwareProcessor
Event: 2.843 loading class org/springframework/web/context/support/ServletContextAwareProcessor done
Event: 2.844 loading class org/springframework/web/context/ServletContextAware
Event: 2.844 loading class org/springframework/web/context/ServletContextAware done
Event: 2.844 loading class org/springframework/web/context/support/WebApplicationContextUtils
Event: 2.844 loading class org/springframework/web/context/support/WebApplicationContextUtils done
Event: 2.846 loading class org/springframework/web/context/support/ServletContextPropertySource
Event: 2.846 loading class org/springframework/web/context/support/ServletContextPropertySource done
Event: 2.868 loading class org/springframework/web/context/support/ServletConfigPropertySource
Event: 2.868 loading class org/springframework/web/context/support/ServletConfigPropertySource done
Event: 2.868 loading class org/springframework/web/context/request/RequestContextHolder
Event: 2.868 loading class org/springframework/web/context/request/RequestContextHolder done
Event: 2.883 loading class javax/faces/context/FacesContext
Event: 2.883 loading class javax/faces/context/FacesContext done
Event: 2.883 loading class javax/faces/context$FacesContext
Event: 2.883 loading class javax/faces/context$FacesContext done
Event: 2.883 loading class org/springframework/web/context/request/RequestScope
Event: 2.883 loading class org/springframework/web/context/request/RequestScope done
Event: 2.883 loading class org/springframework/web/context/request/AbstractRequestAttributesScope
Event: 2.883 loading class org/springframework/web/context/request/AbstractRequestAttributesScope done
Event: 2.884 loading class org/springframework/web/context/request/SessionScope
Event: 2.884 loading class org/springframework/web/context/request/SessionScope done
Event: 2.891 loading class org/springframework/web/context/support/ServletContextScope
Event: 2.891 loading class org/springframework/web/context/support/ServletContextScope done
Event: 2.898 Thread 0x00007fe270932000 DEOPT PACKING pc=0x00007fe26161b55c sp=0x00007fe25c2a42d0
Event: 2.898 Thread 0x00007fe270932000 DEOPT UNPACKING pc=0x00007fe2610474c4 sp=0x00007fe25c2a4038 mode 0
Event: 2.902 loading class org/springframework/web/context/support/WebApplicationContextUtils$RequestObjectFactory
Event: 2.902 loading class org/springframework/web/context/support/WebApplicationContextUtils$RequestObjectFactory done
Event: 2.902 loading class org/springframework/web/context/support/WebApplicationContextUtils$ResponseObjectFactory
Event: 2.902 loading class org/springframework/web/context/support/WebApplicationContextUtils$ResponseObjectFactory done
Event: 2.903 loading class javax/servlet/http/HttpSession
Event: 2.903 loading class javax/servlet/http/HttpSession done
Event: 2.909 loading class org/springframework/web/context/support/WebApplicationContextUtils$SessionObjectFactory
Event: 2.909 loading class org/springframework/web/context/support/WebApplicationContextUtils$SessionObjectFactory done
Event: 2.920 loading class org/springframework/web/context/request/WebRequest
Event: 2.920 loading class org/springframework/web/context/request/WebRequest done
Event: 2.921 loading class org/springframework/web/context/support/WebApplicationContextUtils$WebRequestObjectFactory
Event: 2.921 loading class org/springframework/web/context/support/WebApplicationContextUtils$WebRequestObjectFactory done
Event: 2.921 loading class org/springframework/context/support/PostProcessorRegistrationDelegate
Event: 2.921 loading class org/springframework/context/support/PostProcessorRegistrationDelegate done
Event: 2.934 loading class org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer$SharedMetadataReaderFactoryBean
Event: 2.934 loading class org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer$SharedMetadataReaderFactoryBean done
Event: 2.941 loading class org/springframework/beans/factory/support/AbstractBeanFactory$1
Event: 2.941 loading class org/springframework/beans/factory/support/AbstractBeanFactory$1 done
Event: 2.946 loading class org/springframework/beans/factory/parsing/PassThroughSourceExtractor
Event: 2.946 loading class org/springframework/beans/factory/parsing/PassThroughSourceExtractor done
Event: 2.947 loading class org/springframework/context/annotation/ConfigurationClassPostProcessor$1
Event: 2.947 loading class org/springframework/context/annotation/ConfigurationClassPostProcessor$1 done
Event: 2.947 loading class org/springframework/core/io/ResourceEditor
Event: 2.947 loading class org/springframework/core/io/ResourceEditor done
Event: 2.955 loading class org/springframework/beans/propertyeditors/InputStreamEditor
Event: 2.955 loading class org/springframework/beans/propertyeditors/InputStreamEditor done
Event: 2.955 loading class org/springframework/beans/propertyeditors/InputSourceEditor
Event: 2.955 loading class org/springframework/beans/propertyeditors/InputSourceEditor done
Event: 2.956 loading class org/springframework/beans/propertyeditors/FileEditor
Event: 2.956 loading class org/springframework/beans/propertyeditors/FileEditor done
Event: 2.957 loading class org/springframework/beans/propertyeditors/PathEditor
Event: 2.957 loading class org/springframework/beans/propertyeditors/PathEditor done
Event: 2.957 loading class java/nio/file/FileSystemNotFoundException
Event: 2.974 loading class java/nio/file/FileSystemNotFoundException done
Event: 2.974 loading class org/springframework/beans/propertyeditors/ReaderEditor
Event: 2.974 loading class org/springframework/beans/propertyeditors/ReaderEditor done
Event: 2.975 loading class org/springframework/beans/propertyeditors/URLEditor
Event: 2.975 loading class org/springframework/beans/propertyeditors/URLEditor done
Event: 2.975 loading class org/springframework/beans/propertyeditors/URIEditor
Event: 2.975 loading class org/springframework/beans/propertyeditors/URIEditor done
Event: 2.976 loading class org/springframework/beans/propertyeditors/ClassEditor
Event: 2.976 loading class org/springframework/beans/propertyeditors/ClassEditor done
Event: 2.977 loading class org/springframework/beans/propertyeditors/ClassArrayEditor
Event: 2.977 loading class org/springframework/beans/propertyeditors/ClassArrayEditor done
Event: 2.977 loading class org/springframework/core/io/support/ResourceArrayPropertyEditor
Event: 2.977 loading class org/springframework/core/io/support/ResourceArrayPropertyEditor done
Event: 2.978 Executing VM operation: CollectForMetadataAllocation
Dynamic libraries:
00400000-00401000 r-xp 00000000 ca:02 20975318 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/bin/java
00600000-00601000 r--p 00000000 ca:02 20975318 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/bin/java
00601000-00602000 rw-p 00001000 ca:02 20975318 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/bin/java
01e4a000-01e6b000 rw-p 00000000 00:00 0 [heap]
c4c00000-c7400000 rw-p 00000000 00:00 0
c7400000-ec400000 ---p 00000000 00:00 0
ec400000-f4300000 rw-p 00000000 00:00 0
f8d80000-100000000 ---p 00000000 00:00 0
100000000-100240000 rw-p 00000000 00:00 0
100240000-140000000 ---p 00000000 00:00 0
7fe224000000-7fe224168000 rw-p 00000000 00:00 0
7fe224168000-7fe228000000 ---p 00000000 00:00 0
7fe22c000000-7fe22c021000 rw-p 00000000 00:00 0
7fe22c021000-7fe230000000 ---p 00000000 00:00 0
7fe230000000-7fe230021000 rw-p 00000000 00:00 0
7fe230021000-7fe234000000 ---p 00000000 00:00 0
7fe234000000-7fe235749000 rw-p 00000000 00:00 0
7fe235749000-7fe238000000 ---p 00000000 00:00 0
7fe238000000-7fe238d13000 rw-p 00000000 00:00 0
7fe238d13000-7fe23c000000 ---p 00000000 00:00 0
7fe23c000000-7fe23c021000 rw-p 00000000 00:00 0
7fe23c021000-7fe240000000 ---p 00000000 00:00 0
7fe241269000-7fe241469000 rw-p 00000000 00:00 0
7fe2414d7000-7fe241557000 rw-p 00000000 00:00 0
7fe241557000-7fe2416d7000 ---p 00000000 00:00 0
7fe2416d7000-7fe2418d7000 rw-p 00000000 00:00 0
7fe2418d7000-7fe241ad7000 rw-p 00000000 00:00 0
7fe241ad7000-7fe248000000 r--p 00000000 ca:02 8422996 /usr/lib/locale/locale-archive
7fe248000000-7fe248021000 rw-p 00000000 00:00 0
7fe248021000-7fe24c000000 ---p 00000000 00:00 0
7fe24c000000-7fe24c021000 rw-p 00000000 00:00 0
7fe24c021000-7fe250000000 ---p 00000000 00:00 0
7fe250000000-7fe250021000 rw-p 00000000 00:00 0
7fe250021000-7fe254000000 ---p 00000000 00:00 0
7fe254000000-7fe254021000 rw-p 00000000 00:00 0
7fe254021000-7fe258000000 ---p 00000000 00:00 0
7fe258000000-7fe258021000 rw-p 00000000 00:00 0
7fe258021000-7fe25c000000 ---p 00000000 00:00 0
7fe25c1a6000-7fe25c1a9000 ---p 00000000 00:00 0
7fe25c1a9000-7fe25c2a7000 rw-p 00000000 00:00 0
7fe25c2a7000-7fe25c2b0000 r-xp 00000000 ca:02 629239 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libmanagement.so
7fe25c2b0000-7fe25c4af000 ---p 00009000 ca:02 629239 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libmanagement.so
7fe25c4af000-7fe25c4b0000 r--p 00008000 ca:02 629239 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libmanagement.so
7fe25c4b0000-7fe25c4b1000 rw-p 00009000 ca:02 629239 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libmanagement.so
7fe25c4b1000-7fe25c6b1000 rw-p 00000000 00:00 0
7fe25c6b1000-7fe25c8b1000 rw-p 00000000 00:00 0
7fe25c8b1000-7fe25c8b2000 ---p 00000000 00:00 0
7fe25c8b2000-7fe25c9b2000 rw-p 00000000 00:00 0
7fe25c9b2000-7fe25c9b5000 ---p 00000000 00:00 0
7fe25c9b5000-7fe25cab3000 rw-p 00000000 00:00 0
7fe25cab3000-7fe25cab7000 ---p 00000000 00:00 0
7fe25cab7000-7fe25cbb4000 rw-p 00000000 00:00 0
7fe25cbb4000-7fe25cbb8000 ---p 00000000 00:00 0
7fe25cbb8000-7fe25ccb5000 rw-p 00000000 00:00 0
7fe25ccb5000-7fe25ccc7000 r-xp 00000000 ca:02 629242 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnio.so
7fe25ccc7000-7fe25cec6000 ---p 00012000 ca:02 629242 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnio.so
7fe25cec6000-7fe25cec7000 r--p 00011000 ca:02 629242 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnio.so
7fe25cec7000-7fe25cec8000 rw-p 00012000 ca:02 629242 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnio.so
7fe25cec8000-7fe25cede000 r-xp 00000000 ca:02 50820 /usr/lib64/libresolv-2.17.so
7fe25cede000-7fe25d0dd000 ---p 00016000 ca:02 50820 /usr/lib64/libresolv-2.17.so
7fe25d0dd000-7fe25d0de000 r--p 00015000 ca:02 50820 /usr/lib64/libresolv-2.17.so
7fe25d0de000-7fe25d0df000 rw-p 00016000 ca:02 50820 /usr/lib64/libresolv-2.17.so
7fe25d0df000-7fe25d0e1000 rw-p 00000000 00:00 0
7fe25d0e1000-7fe25d0e6000 r-xp 00000000 ca:02 50808 /usr/lib64/libnss_dns-2.17.so
7fe25d0e6000-7fe25d2e6000 ---p 00005000 ca:02 50808 /usr/lib64/libnss_dns-2.17.so
7fe25d2e6000-7fe25d2e7000 r--p 00005000 ca:02 50808 /usr/lib64/libnss_dns-2.17.so
7fe25d2e7000-7fe25d2e8000 rw-p 00006000 ca:02 50808 /usr/lib64/libnss_dns-2.17.so
7fe25d2ed000-7fe25d2ee000 rw-p 00000000 00:00 0
7fe25d2ee000-7fe25d305000 r-xp 00000000 ca:02 629241 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnet.so
7fe25d305000-7fe25d504000 ---p 00017000 ca:02 629241 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnet.so
7fe25d504000-7fe25d505000 r--p 00016000 ca:02 629241 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnet.so
7fe25d505000-7fe25d506000 rw-p 00017000 ca:02 629241 /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/lib/amd64/libnet.so
7fe25d506000-7fe25d50c000 r--s 0003a000 ca:02 9215039 /root/.m2/repository/org/jacoco/org.jacoco.agent/0.7.9/org.jacoco.agent-0.7.9-runtime.jar
7fe25d50c000-7fe25d50e000 r--s 0000e000 ca:02 16934283 /root/.m2/repository/org/apache/maven/surefire/surefire-junit4/2.17/surefire-junit4-2.17.jar
7fe25d50e000-7fe25d52f000 r--s 000e5000 ca:02 25883537 /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.6.RELEASE/spring-boot-autoconfigure-1.5.6.RELEASE.jar
7fe25d52f000-7fe25d53f000 r--s 00095000 ca:02 4833657 /root/.m2/repository/org/springframework/boot/spring-boot/1.5.6.RELEASE/spring-boot-1.5.6.RELEASE.jar
7fe25d53f000-7fe25d545000 r--s 0002f000 ca:02 16933584 /root/.m2/repository/org/springframework/boot/spring-boot-devtools/1.5.6.RELEASE/spring-boot-devtools-1.5.6.RELEASE.jar
7fe25d545000-7fe25d553000 r--s 00085000 ca:02 9214762 /root/.m2/repository/org/springframework/spring-test/4.3.10.RELEASE/spring-test-4.3.10.RELEASE.jar
7fe25d553000-7fe25d56a000 r--s 000fc000 ca:02 13437521 /root/.m2/repository/org/springframework/spring-core/4.3.10.RELEASE/spring-core-4.3.10.RELEASE.jar
7fe25d56a000-7fe25d56b000 r--s 00004000 ca:02 952664 /root/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar
7fe25d56b000-7fe25d56d000 r--s 00006000 ca:02 9214760 /root/.m2/repository/org/skyscreamer/jsonassert/1.4.0/jsonassert-1.4.0.jar
7fe25d56d000-7fe25d56e000 r--s 0000c000 ca:02 25883535 /root/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar
7fe25d56e000-7fe25d570000 r--s 00009000 ca:02 13437519 /root/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
7fe25d570000-7fe25d572000 r--s 00009000 ca:02 9214758 /root/.m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar
7fe25d572000-7fe25d58e000 r--s 00103000 ca:02 25883533 /root/.m2/repository/org/mockito/mockito-core/1.10.19/mockito-core-1.10.19.jar
7fe25d58e000-7fe25d5a2000 r--s 000dc000 ca:02 4833655 /root/.m2/repository/org/assertj/assertj-core/2.6.0/assertj-core-2.6.0.jar
7fe25d5a2000-7fe25d5aa000 r--s 00045000 ca:02 952663 /root/.m2/repository/junit/junit/4.12/junit-4.12.jar
7fe25d5aa000-7fe25d5ab000 r--s 0000c000 ca:02 952657 /root/.m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar
7fe25d5ab000-7fe25d5ad000 r--s 00012000 ca:02 4833653 /root/.m2/repository/net/minidev/accessors-smart/1.1/accessors-smart-1.1.jar
7fe25d5ad000-7fe25d5b0000 r--s 0001b000 ca:02 25883531 /root/.m2/repository/net/minidev/json-smart/2.2.1/json-smart-2.2.1.jar
7fe25d5b0000-7fe25d5b5000 r--s 0002e000 ca:02 9214756 /root/.m2/repository/com/jayway/jsonpath/json-path/2.2.0/json-path-2.2.0.jar
7fe25d5b5000-7fe25d5ba000 r--s 00019000 ca:02 21282482 /root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/1.5.6.RELEASE/spring-boot-test-autoconfigure-1.5.6.RELEASE.jar
7fe25d5ba000-7fe25d5be000 r--s 00020000 ca:02 13437517 /root/.m2/repository/org/springframework/boot/spring-boot-test/1.5.6.RELEASE/spring-boot-test-1.5.6.RELEASE.jar
7fe25d5be000-7fe25d5bf000 r--s 00000000 ca:02 4833651 /root/.m2/repository/org/springframework/boot/spring-boot-starter-test/1.5.6.RELEASE/spring-boot-starter-test-1.5.6.RELEASE.jar
7fe25d5bf000-7fe25d5c5000 r--s 00037000 ca:02 4833649 /root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.16/tomcat-embed-websocket-8.5.16.jar
7fe25d5c5000-7fe25d5ca000 r--s 00036000 ca:02 25883529 /root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.16/tomcat-embed-el-8.5.16.jar
7fe25d5ca000-7fe25d5f3000 r--s 002c2000 ca:02 16933582 /root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.16/tomcat-embed-core-8.5.16.jar
7fe25d5f3000-7fe25d5f5000 r--s 00004000 ca:02 952656 /root/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar