-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapi.log
3155 lines (3155 loc) · 529 KB
/
api.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
WARN : System properties and/or JVM args set. Consider using --dry-run or --exec
2023-07-17 17:45:43.827:INFO::main: Logging initialized @429ms to org.eclipse.jetty.util.log.StdErrLog
2023-07-17 17:45:43.958:WARN:oejs.HomeBaseWarning:main: This instance of Jetty is not running from a separate {jetty.base} directory, this is not recommended. See documentation at http://www.eclipse.org/jetty/documentation/current/startup.html
2023-07-17 17:45:44.019:INFO:oejs.Server:main: jetty-9.4.17.v20190418; built: 2019-04-18T19:45:35.259Z; git: aa1c656c315c011c01e7b21aabb04066635b9f67; jvm 1.8.0_282-b08
STOP.PORT=45515
STOP.KEY=2hxirc0n5wcg
2023-07-17 17:45:44.032:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:///home/ksamaras/tools/jetty/webapps/] at interval 1
2023-07-17 17:45:44.993:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.AnnotationVisitor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/AnnotationVisitor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/AnnotationVisitor.class
2023-07-17 17:45:44.993:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.AnnotationWriter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/AnnotationWriter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/AnnotationWriter.class
2023-07-17 17:45:44.993:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Attribute scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Attribute.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Attribute.class
2023-07-17 17:45:44.993:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.ByteVector scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ByteVector.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ByteVector.class
2023-07-17 17:45:44.994:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.ClassReader scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassReader.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassReader.class
2023-07-17 17:45:44.994:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.ClassVisitor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassVisitor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassVisitor.class
2023-07-17 17:45:44.994:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.ClassWriter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassWriter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassWriter.class
2023-07-17 17:45:44.995:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Edge scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Edge.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Edge.class
2023-07-17 17:45:44.995:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.FieldVisitor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/FieldVisitor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/FieldVisitor.class
2023-07-17 17:45:44.995:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.FieldWriter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/FieldWriter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/FieldWriter.class
2023-07-17 17:45:44.995:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Frame scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Frame.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Frame.class
2023-07-17 17:45:44.996:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Handler scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Handler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Handler.class
2023-07-17 17:45:44.996:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Item scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Item.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Item.class
2023-07-17 17:45:44.996:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Label scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Label.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Label.class
2023-07-17 17:45:44.996:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.MethodVisitor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/MethodVisitor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/MethodVisitor.class
2023-07-17 17:45:44.996:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.MethodWriter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/MethodWriter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/MethodWriter.class
2023-07-17 17:45:44.997:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Opcodes scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Opcodes.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Opcodes.class
2023-07-17 17:45:44.998:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.Type scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Type.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Type.class
2023-07-17 17:45:44.998:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.signature.SignatureReader scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureReader.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureReader.class
2023-07-17 17:45:44.998:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.signature.SignatureVisitor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureVisitor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureVisitor.class
2023-07-17 17:45:44.999:WARN:oeja.AnnotationParser:qtp1468177767-34: org.objectweb.asm.signature.SignatureWriter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureWriter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureWriter.class
2023-07-17 17:45:45.046:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcDeclareAnnotation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareAnnotation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareAnnotation.class
2023-07-17 17:45:45.046:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcDeclareEoW scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareEoW.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareEoW.class
2023-07-17 17:45:45.046:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcDeclareParents scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareParents.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareParents.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcDeclarePrecedence scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclarePrecedence.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclarePrecedence.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcDeclareSoft scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareSoft.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareSoft.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcITD scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcITD.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcITD.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.annotation.ajcPrivileged scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcPrivileged.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcPrivileged.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.AdviceImpl$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl$1.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.AdviceImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl.class
2023-07-17 17:45:45.047:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.AjTypeImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AjTypeImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AjTypeImpl.class
2023-07-17 17:45:45.048:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclareAnnotationImpl$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl$1.class
2023-07-17 17:45:45.048:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclareAnnotationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl.class
2023-07-17 17:45:45.048:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclareErrorOrWarningImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareErrorOrWarningImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareErrorOrWarningImpl.class
2023-07-17 17:45:45.048:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclareParentsImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareParentsImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareParentsImpl.class
2023-07-17 17:45:45.048:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclarePrecedenceImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclarePrecedenceImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclarePrecedenceImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.DeclareSoftImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareSoftImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareSoftImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.InterTypeConstructorDeclarationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeConstructorDeclarationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeConstructorDeclarationImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.InterTypeDeclarationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeDeclarationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeDeclarationImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.InterTypeFieldDeclarationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeFieldDeclarationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeFieldDeclarationImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.InterTypeMethodDeclarationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeMethodDeclarationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeMethodDeclarationImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.PerClauseImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PerClauseImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PerClauseImpl.class
2023-07-17 17:45:45.049:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.PointcutBasedPerClauseImpl$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl$1.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.ArrayStack scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/ArrayStack.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/ArrayStack.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.Buffer scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/Buffer.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/Buffer.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.BufferUnderflowException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/BufferUnderflowException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/BufferUnderflowException.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$1.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$CollectionView$CollectionViewIterator.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$CollectionView$CollectionViewIterator.class
2023-07-17 17:45:45.089:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$CollectionView scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$CollectionView.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$CollectionView.class
2023-07-17 17:45:45.090:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$EntrySet scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$EntrySet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$EntrySet.class
2023-07-17 17:45:45.090:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$KeySet scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$KeySet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$KeySet.class
2023-07-17 17:45:45.090:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap$Values scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$Values.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$Values.class
2023-07-17 17:45:45.090:WARN:oeja.AnnotationParser:qtp1468177767-34: org.apache.commons.collections.FastHashMap scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap.class
2023-07-17 17:45:45.098:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.PointcutBasedPerClauseImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl.class
2023-07-17 17:45:45.098:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.PointcutExpressionImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutExpressionImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutExpressionImpl.class
2023-07-17 17:45:45.098:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.PointcutImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutImpl.class
2023-07-17 17:45:45.098:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.SignaturePatternImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/SignaturePatternImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/SignaturePatternImpl.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.StringToType$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType$1.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.StringToType scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.TypePatternBasedPerClauseImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternBasedPerClauseImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternBasedPerClauseImpl.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.internal.lang.reflect.TypePatternImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternImpl.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.Aspects scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Aspects.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Aspects.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.Aspects14 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Aspects14.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Aspects14.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.JoinPoint$EnclosingStaticPart scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint$EnclosingStaticPart.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint$EnclosingStaticPart.class
2023-07-17 17:45:45.099:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.JoinPoint$StaticPart scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint$StaticPart.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint$StaticPart.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.JoinPoint scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.NoAspectBoundException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/NoAspectBoundException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/NoAspectBoundException.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.ProceedingJoinPoint scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/ProceedingJoinPoint.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/ProceedingJoinPoint.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.Signature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Signature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Signature.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.SoftException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/SoftException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/SoftException.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.AdviceName scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AdviceName.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AdviceName.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.After scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/After.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/After.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.AfterReturning scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AfterReturning.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AfterReturning.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.AfterThrowing scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AfterThrowing.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AfterThrowing.class
2023-07-17 17:45:45.100:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.Around scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Around.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Around.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.Aspect scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Aspect.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Aspect.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.Before scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Before.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Before.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclareAnnotation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareAnnotation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareAnnotation.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclareError scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareError.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareError.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclareMixin scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareMixin.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareMixin.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclareParents scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareParents.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareParents.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclarePrecedence scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclarePrecedence.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclarePrecedence.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.DeclareWarning scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareWarning.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareWarning.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.Pointcut scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Pointcut.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Pointcut.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.annotation.SuppressAjWarnings scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/SuppressAjWarnings.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/SuppressAjWarnings.class
2023-07-17 17:45:45.101:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.internal.lang.PlaceHolder scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/internal/lang/PlaceHolder.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/internal/lang/PlaceHolder.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.Advice scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/Advice.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/Advice.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.AdviceKind scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AdviceKind.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AdviceKind.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.AdviceSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AdviceSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AdviceSignature.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.AjType scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AjType.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AjType.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.AjTypeSystem scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AjTypeSystem.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AjTypeSystem.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.CatchClauseSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/CatchClauseSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/CatchClauseSignature.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.CodeSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/CodeSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/CodeSignature.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.ConstructorSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/ConstructorSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/ConstructorSignature.class
2023-07-17 17:45:45.102:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclareAnnotation$Kind scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation$Kind.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation$Kind.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclareAnnotation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclareErrorOrWarning scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareErrorOrWarning.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareErrorOrWarning.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclareParents scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareParents.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareParents.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclarePrecedence scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclarePrecedence.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclarePrecedence.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.DeclareSoft scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareSoft.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareSoft.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.FieldSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/FieldSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/FieldSignature.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.InitializerSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InitializerSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InitializerSignature.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.InterTypeConstructorDeclaration scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeConstructorDeclaration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeConstructorDeclaration.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.InterTypeDeclaration scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeDeclaration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeDeclaration.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.InterTypeFieldDeclaration scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeFieldDeclaration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeFieldDeclaration.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.InterTypeMethodDeclaration scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeMethodDeclaration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeMethodDeclaration.class
2023-07-17 17:45:45.103:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.LockSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/LockSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/LockSignature.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.MemberSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/MemberSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/MemberSignature.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.MethodSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/MethodSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/MethodSignature.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.NoSuchAdviceException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchAdviceException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchAdviceException.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.NoSuchPointcutException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchPointcutException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchPointcutException.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.PerClause scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PerClause.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PerClause.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.PerClauseKind scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PerClauseKind.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PerClauseKind.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.Pointcut scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/Pointcut.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/Pointcut.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.PointcutBasedPerClause scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PointcutBasedPerClause.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PointcutBasedPerClause.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.PointcutExpression scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PointcutExpression.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PointcutExpression.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.SignaturePattern scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/SignaturePattern.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/SignaturePattern.class
2023-07-17 17:45:45.104:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.SourceLocation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/SourceLocation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/SourceLocation.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.TypePattern scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/TypePattern.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/TypePattern.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.TypePatternBasedPerClause scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/TypePatternBasedPerClause.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/TypePatternBasedPerClause.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.lang.reflect.UnlockSignature scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/UnlockSignature.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/UnlockSignature.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.CFlow scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/CFlow.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/CFlow.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.AroundClosure scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/AroundClosure.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/AroundClosure.class
2023-07-17 17:45:45.105:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.CFlowCounter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowCounter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowCounter.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.CFlowPlusState scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowPlusState.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowPlusState.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.CFlowStack scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowStack.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowStack.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.Conversions scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/Conversions.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/Conversions.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.PerObjectMap scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/PerObjectMap.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/PerObjectMap.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadCounter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounter.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadCounterImpl11$Counter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11$Counter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11$Counter.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadCounterImpl11 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStack scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStack.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStack.class
2023-07-17 17:45:45.106:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactory scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactory.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactory.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$1.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadCounterImpl$Counter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl$Counter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl$Counter.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadCounterImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadStackImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadStackImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadStackImpl.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl11 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl11.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl11.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.internal.cflowstack.ThreadStackImpl11 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackImpl11.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackImpl11.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.AdviceSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/AdviceSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/AdviceSignatureImpl.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.CatchClauseSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/CatchClauseSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/CatchClauseSignatureImpl.class
2023-07-17 17:45:45.107:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.CodeSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/CodeSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/CodeSignatureImpl.class
2023-07-17 17:45:45.108:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.ConstructorSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/ConstructorSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/ConstructorSignatureImpl.class
2023-07-17 17:45:45.108:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.Factory scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/Factory.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/Factory.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.FieldSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/FieldSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/FieldSignatureImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.InitializerSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/InitializerSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/InitializerSignatureImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.JoinPointImpl$EnclosingStaticPartImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$EnclosingStaticPartImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$EnclosingStaticPartImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.JoinPointImpl$StaticPartImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$StaticPartImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$StaticPartImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.JoinPointImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.LockSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/LockSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/LockSignatureImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.MemberSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/MemberSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/MemberSignatureImpl.class
2023-07-17 17:45:45.117:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.MethodSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/MethodSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/MethodSignatureImpl.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.SignatureImpl$Cache scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$Cache.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$Cache.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.SignatureImpl$CacheImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$CacheImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$CacheImpl.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.SignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.SourceLocationImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SourceLocationImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SourceLocationImpl.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.StringMaker scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/StringMaker.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/StringMaker.class
2023-07-17 17:45:45.118:WARN:oeja.AnnotationParser:qtp1468177767-25: org.aspectj.runtime.reflect.UnlockSignatureImpl scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/UnlockSignatureImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/UnlockSignatureImpl.class
2023-07-17 17:45:45.225:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.AsyncContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncContext.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncContext.class
2023-07-17 17:45:45.285:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.AsyncEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncEvent.class
2023-07-17 17:45:45.285:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.AsyncListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncListener.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.DispatcherType scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/DispatcherType.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/DispatcherType.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.Filter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Filter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Filter.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.FilterChain scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterChain.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterChain.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.FilterConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterConfig.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.FilterRegistration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterRegistration$Dynamic.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterRegistration$Dynamic.class
2023-07-17 17:45:45.286:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.FilterRegistration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterRegistration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterRegistration.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.GenericServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/GenericServlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/GenericServlet.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.HttpConstraintElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/HttpConstraintElement.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/HttpConstraintElement.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.HttpMethodConstraintElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/HttpMethodConstraintElement.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/HttpMethodConstraintElement.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.MultipartConfigElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/MultipartConfigElement.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/MultipartConfigElement.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.Registration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Registration$Dynamic.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Registration$Dynamic.class
2023-07-17 17:45:45.287:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.Registration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Registration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Registration.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.RequestDispatcher scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/RequestDispatcher.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/RequestDispatcher.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.Servlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Servlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Servlet.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletConfig.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContainerInitializer scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContainerInitializer.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContainerInitializer.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContext.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContext.class
2023-07-17 17:45:45.288:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContextAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextAttributeEvent.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContextAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextAttributeListener.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContextEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextEvent.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletContextListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextListener.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletException.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletInputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletInputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletInputStream.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletOutputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletOutputStream.class
2023-07-17 17:45:45.289:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.Log scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/Log.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/Log.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRegistration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRegistration$Dynamic.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRegistration$Dynamic.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.LogConfigurationException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/LogConfigurationException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/LogConfigurationException.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.LogFactory scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/LogFactory.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/LogFactory.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRegistration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRegistration.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRegistration.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.impl.NoOpLog scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/NoOpLog.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/NoOpLog.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequest.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequest.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequestAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestAttributeEvent.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.impl.SimpleLog$1 scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/SimpleLog$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/SimpleLog$1.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequestAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestAttributeListener.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-27: org.apache.commons.logging.impl.SimpleLog scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/SimpleLog.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/SimpleLog.class
2023-07-17 17:45:45.290:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequestEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestEvent.class
2023-07-17 17:45:45.291:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequestListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestListener.class
2023-07-17 17:45:45.291:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestWrapper.class
2023-07-17 17:45:45.291:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletResponse.class
2023-07-17 17:45:45.291:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponseWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletResponseWrapper.class
2023-07-17 17:45:45.291:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.ServletSecurityElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletSecurityElement.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletSecurityElement.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.SessionCookieConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SessionCookieConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SessionCookieConfig.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.SessionTrackingMode scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SessionTrackingMode.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SessionTrackingMode.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.SingleThreadModel scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SingleThreadModel.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SingleThreadModel.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.UnavailableException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/UnavailableException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/UnavailableException.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.HandlesTypes scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HandlesTypes.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HandlesTypes.class
2023-07-17 17:45:45.292:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.HttpConstraint scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpConstraint.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HttpConstraint.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.HttpMethodConstraint scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpMethodConstraint.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HttpMethodConstraint.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.MultipartConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/MultipartConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/MultipartConfig.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.ServletSecurity$EmptyRoleSemantic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.ServletSecurity$TransportGuarantee scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.ServletSecurity scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity.class
2023-07-17 17:45:45.293:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.WebFilter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebFilter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebFilter.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.WebInitParam scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebInitParam.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebInitParam.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.WebListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebListener.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.annotation.WebServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebServlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebServlet.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.descriptor.JspConfigDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspConfigDescriptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/JspConfigDescriptor.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.descriptor.JspPropertyGroupDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.descriptor.TaglibDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/TaglibDescriptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/TaglibDescriptor.class
2023-07-17 17:45:45.294:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.Cookie scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Cookie.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/Cookie.class
2023-07-17 17:45:45.295:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServlet.class
2023-07-17 17:45:45.295:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequest.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletRequest.class
2023-07-17 17:45:45.295:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequestWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletRequestWrapper.class
2023-07-17 17:45:45.295:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletResponse.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponseWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletResponseWrapper.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSession scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSession.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSession.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionActivationListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionActivationListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionActivationListener.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionAttributeListener.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionBindingEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionBindingEvent.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionBindingListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionBindingListener.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionContext.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionContext.class
2023-07-17 17:45:45.296:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionEvent.class
2023-07-17 17:45:45.297:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpSessionListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionListener.class
2023-07-17 17:45:45.297:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.HttpUtils scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUtils.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpUtils.class
2023-07-17 17:45:45.297:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.NoBodyOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyOutputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/NoBodyOutputStream.class
2023-07-17 17:45:45.297:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.NoBodyResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/NoBodyResponse.class
2023-07-17 17:45:45.297:WARN:oeja.AnnotationParser:qtp1468177767-30: javax.servlet.http.Part scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Part.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/Part.class
2023-07-17 17:45:45.341:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.Version scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/Version.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/Version.class
2023-07-17 17:45:45.342:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.functions.Functions scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/functions/Functions.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/functions/Functions.class
2023-07-17 17:45:45.348:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.resources.Resources scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/resources/Resources.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/resources/Resources.class
2023-07-17 17:45:45.349:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.CatchTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/CatchTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/CatchTag.class
2023-07-17 17:45:45.349:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ChooseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ChooseTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ChooseTag.class
2023-07-17 17:45:45.349:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.DeclareTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/DeclareTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/DeclareTag.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ForEachSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ForEachSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ForEachSupport.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ForTokensSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ForTokensSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ForTokensSupport.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ImportSupport$ImportResponseWrapper$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper$1.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ImportSupport$ImportResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ImportSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.NullAttributeException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/NullAttributeException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/NullAttributeException.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.OtherwiseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class
2023-07-17 17:45:45.350:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.OutSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/OutSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/OutSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ParamParent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamParent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamParent.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ParamSupport$ParamManager scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport$ParamManager.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport$ParamManager.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.RedirectSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/RedirectSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/RedirectSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.RemoveTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/RemoveTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/RemoveTag.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.SetSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/SetSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/SetSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.UrlSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/UrlSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/UrlSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.Util scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/Util.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/Util.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.core.WhenTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class
2023-07-17 17:45:45.351:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.BundleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/BundleSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/BundleSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.FormatDateSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatDateSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatDateSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.FormatNumberSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatNumberSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatNumberSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.MessageSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/MessageSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/MessageSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParamSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParamSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.ParseDateSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseDateSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseDateSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.ParseNumberSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseNumberSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseNumberSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.RequestEncodingSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/RequestEncodingSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/RequestEncodingSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.SetBundleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetBundleSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetBundleSupport.class
2023-07-17 17:45:45.352:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.SetLocaleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetLocaleSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetLocaleSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.SetTimeZoneSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetTimeZoneSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetTimeZoneSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.fmt.TimeZoneSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/TimeZoneSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/TimeZoneSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.DataSourceUtil scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceUtil.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceUtil.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.DataSourceWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.DateParamTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DateParamTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DateParamTagSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.ParamTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/ParamTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/ParamTagSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.QueryTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/QueryTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/QueryTagSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.ResultImpl scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/ResultImpl.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/ResultImpl.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/SetDataSourceTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/SetDataSourceTagSupport.class
2023-07-17 17:45:45.353:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.TransactionTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/TransactionTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/TransactionTagSupport.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.sql.UpdateTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/UpdateTagSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/UpdateTagSupport.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.ExprSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ExprSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ExprSupport.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.ForEachTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ForEachTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ForEachTag.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.IfTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/IfTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/IfTag.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ParamSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ParamSupport.class
2023-07-17 17:45:45.354:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.ParseSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ParseSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ParseSupport.class
2023-07-17 17:45:45.355:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.SetTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/SetTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/SetTag.class
2023-07-17 17:45:45.355:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.TransformSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/TransformSupport.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/TransformSupport.class
2023-07-17 17:45:45.355:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.common.xml.WhenTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/WhenTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/WhenTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.ForEachTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ForEachTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ForEachTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.ForTokensTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ForTokensTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ForTokensTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.IfTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/IfTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/IfTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.ImportTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ImportTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ImportTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.OutTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/OutTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/OutTag.class
2023-07-17 17:45:45.357:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ParamTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ParamTag.class
2023-07-17 17:45:45.358:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.RedirectTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/RedirectTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/RedirectTag.class
2023-07-17 17:45:45.358:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.SetTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/SetTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/SetTag.class
2023-07-17 17:45:45.358:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.UrlTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/UrlTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/UrlTag.class
2023-07-17 17:45:45.358:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.core.WhenTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/WhenTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/WhenTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.BundleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/BundleTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/BundleTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatNumberTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatNumberTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.MessageTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/MessageTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/MessageTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParamTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParamTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseDateTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseDateTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseNumberTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseNumberTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/RequestEncodingTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/RequestEncodingTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetBundleTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetBundleTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetLocaleTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetLocaleTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetTimeZoneTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetTimeZoneTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/TimeZoneTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/TimeZoneTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.DateParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/DateParamTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/DateParamTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/ParamTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/ParamTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.QueryTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/QueryTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/QueryTag.class
2023-07-17 17:45:45.359:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/SetDataSourceTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/SetDataSourceTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.TransactionTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/TransactionTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/TransactionTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.sql.UpdateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/UpdateTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/UpdateTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.xml.ExprTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ExprTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ExprTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.xml.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ParamTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ParamTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.xml.ParseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ParseTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ParseTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tag.rt.xml.TransformTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/TransformTag.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/TransformTag.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.DeclareTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/DeclareTEI.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/DeclareTEI.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.ForEachTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/ForEachTEI.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/ForEachTEI.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.ImportTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/ImportTEI.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/ImportTEI.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.Util scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/Util.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/Util.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.XmlParseTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/XmlParseTEI.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/XmlParseTEI.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tei.XmlTransformTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/XmlTransformTEI.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/XmlTransformTEI.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlBaseTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlBaseTLV.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlBaseTLV.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlCoreTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$1.class
2023-07-17 17:45:45.360:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlCoreTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$Handler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$Handler.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlCoreTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlFmtTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$1.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlFmtTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$Handler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$Handler.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlFmtTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlSqlTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$1.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlSqlTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$Handler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$Handler.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlSqlTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlXmlTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$1.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$1.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlXmlTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$Handler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$Handler.class
2023-07-17 17:45:45.361:WARN:oeja.AnnotationParser:qtp1468177767-28: org.apache.taglibs.standard.tlv.JstlXmlTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.Filter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Filter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/Filter.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.FilterChain scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterChain.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/FilterChain.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.FilterConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/FilterConfig.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.GenericServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/GenericServlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/GenericServlet.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.RequestDispatcher scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/RequestDispatcher.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/RequestDispatcher.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.Servlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Servlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/Servlet.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletConfig.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletConfig.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContext.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContext.class
2023-07-17 17:45:45.605:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletContextAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextAttributeEvent.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletContextAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextAttributeListener.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletContextEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextEvent.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletContextListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextListener.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletException.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletInputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletInputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletInputStream.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletOutputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletOutputStream.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequest.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequest.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequestAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestAttributeEvent.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequestAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestAttributeListener.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequestEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestEvent.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequestListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestListener.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestWrapper.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletResponse.class
2023-07-17 17:45:45.606:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.ServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponseWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletResponseWrapper.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.SingleThreadModel scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SingleThreadModel.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/SingleThreadModel.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.UnavailableException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/UnavailableException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/UnavailableException.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.Cookie scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Cookie.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/Cookie.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServlet.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServlet.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequest.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletRequest.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequestWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletRequestWrapper.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletResponse.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponseWrapper.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletResponseWrapper.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSession scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSession.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSession.class
2023-07-17 17:45:45.607:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionActivationListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionActivationListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionActivationListener.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionAttributeListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionAttributeListener.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionBindingEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionBindingEvent.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionBindingListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionBindingListener.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionContext.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionContext.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionEvent.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionEvent.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpSessionListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionListener.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionListener.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.HttpUtils scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUtils.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpUtils.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.NoBodyOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyOutputStream.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/NoBodyOutputStream.class
2023-07-17 17:45:45.608:WARN:oeja.AnnotationParser:qtp1468177767-32: javax.servlet.http.NoBodyResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyResponse.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/NoBodyResponse.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.aop.Advice scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/aop/Advice.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/aop/Advice.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.aop.AspectException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/aop/AspectException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/aop/AspectException.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.ConstructorInterceptor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/ConstructorInterceptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/ConstructorInterceptor.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.ConstructorInvocation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/ConstructorInvocation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/ConstructorInvocation.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.Interceptor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Interceptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Interceptor.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.Invocation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Invocation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Invocation.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.Joinpoint scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Joinpoint.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Joinpoint.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.MethodInterceptor scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/MethodInterceptor.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/MethodInterceptor.class
2023-07-17 17:45:45.610:WARN:oeja.AnnotationParser:qtp1468177767-30: org.aopalliance.intercept.MethodInvocation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/MethodInvocation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/MethodInvocation.class
2023-07-17 17:45:45.712:WARN:oeja.AnnotationParser:qtp1468177767-32: org.xmlpull.v1.XmlPullParser scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParser.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParser.class
2023-07-17 17:45:45.712:WARN:oeja.AnnotationParser:qtp1468177767-32: org.xmlpull.v1.XmlPullParserException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParserException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserException.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Attr scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Attr.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Attr.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.CDATASection scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/CDATASection.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/CDATASection.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.CharacterData scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/CharacterData.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/CharacterData.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Comment scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Comment.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Comment.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.DOMException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DOMException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DOMException.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.DOMImplementation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DOMImplementation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DOMImplementation.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Document scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Document.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Document.class
2023-07-17 17:45:45.719:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.DocumentFragment scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DocumentFragment.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DocumentFragment.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.DocumentType scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DocumentType.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DocumentType.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Element scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Element.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Element.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Entity scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Entity.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Entity.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.EntityReference scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/EntityReference.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/EntityReference.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.NamedNodeMap scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/NamedNodeMap.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/NamedNodeMap.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Node scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Node.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Node.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.NodeList scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/NodeList.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/NodeList.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Notation scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Notation.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Notation.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.ProcessingInstruction scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/ProcessingInstruction.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/ProcessingInstruction.class
2023-07-17 17:45:45.720:WARN:oeja.AnnotationParser:qtp1468177767-23: org.w3c.dom.Text scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Text.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Text.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.AttributeList scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/AttributeList.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/AttributeList.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.Attributes scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Attributes.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Attributes.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.ContentHandler scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/ContentHandler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/ContentHandler.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.DTDHandler scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/DTDHandler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/DTDHandler.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.DocumentHandler scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/DocumentHandler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/DocumentHandler.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.EntityResolver scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/EntityResolver.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/EntityResolver.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.ErrorHandler scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/ErrorHandler.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/ErrorHandler.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.HandlerBase scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/HandlerBase.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/HandlerBase.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.InputSource scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/InputSource.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/InputSource.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.Locator scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Locator.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Locator.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.Parser scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Parser.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Parser.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.SAXException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXException.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.SAXNotRecognizedException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXNotRecognizedException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXNotRecognizedException.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.SAXNotSupportedException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXNotSupportedException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXNotSupportedException.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.SAXParseException scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXParseException.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXParseException.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.XMLFilter scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/XMLFilter.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/XMLFilter.class
2023-07-17 17:45:45.725:WARN:oeja.AnnotationParser:qtp1468177767-23: org.xml.sax.XMLReader scanned from multiple locations: jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/XMLReader.class, jar:file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/XMLReader.class
2023-07-17 17:45:45.906:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=930ms
2023-07-17 17:45:46.093:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0
2023-07-17 17:45:46.093:INFO:oejs.session:main: No SessionScavenger set, using defaults
2023-07-17 17:45:46.094:INFO:oejs.session:main: node0 Scavenging every 660000ms
log4j: reset attribute= "false".
log4j: Threshold ="null".
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.springframework] additivity to [true].
log4j: Level value for org.springframework is [WARN].
log4j: org.springframework level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.solr] additivity to [true].
log4j: Level value for org.nextprot.api.solr is [WARN].
log4j: org.nextprot.api.solr level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.web] additivity to [true].
log4j: Level value for org.nextprot.api.web is [WARN].
log4j: org.nextprot.api.web level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [net.sf.ehcache.constructs.web.GenericResponseWrapper] additivity to [true].
log4j: Level value for net.sf.ehcache.constructs.web.GenericResponseWrapper is [ERROR].
log4j: net.sf.ehcache.constructs.web.GenericResponseWrapper level set to ERROR
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.web.CorsFilter] additivity to [true].
log4j: Level value for org.nextprot.api.web.CorsFilter is [INFO].
log4j: org.nextprot.api.web.CorsFilter level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.core.service.impl.ProteinExistenceInferenceServiceImpl] additivity to [true].
log4j: Level value for org.nextprot.api.core.service.impl.ProteinExistenceInferenceServiceImpl is [INFO].
log4j: org.nextprot.api.core.service.impl.ProteinExistenceInferenceServiceImpl level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.rdf] additivity to [true].
log4j: Level value for org.nextprot.api.rdf is [INFO].
log4j: org.nextprot.api.rdf level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [net.sf.ehcache] additivity to [true].
log4j: Level value for net.sf.ehcache is [INFO].
log4j: net.sf.ehcache level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.apache.velocity] additivity to [true].
log4j: Level value for org.apache.velocity is [FATAL].
log4j: org.apache.velocity level set to FATAL
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.auth.server.controller] additivity to [true].
log4j: Level value for org.nextprot.auth.server.controller is [INFO].
log4j: org.nextprot.auth.server.controller level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.isoform.mapper.service.impl.RegionIsoformMappingServiceImpl] additivity to [true].
log4j: Level value for org.nextprot.api.isoform.mapper.service.impl.RegionIsoformMappingServiceImpl is [INFO].
log4j: org.nextprot.api.isoform.mapper.service.impl.RegionIsoformMappingServiceImpl level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.web.GoogleAnalyticsFilter] additivity to [true].
log4j: Level value for org.nextprot.api.web.GoogleAnalyticsFilter is [INFO].
log4j: org.nextprot.api.web.GoogleAnalyticsFilter level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.apache.solr] additivity to [true].
log4j: Level value for org.apache.solr is [WARN].
log4j: org.apache.solr level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.reflections.Reflections] additivity to [true].
log4j: Level value for org.reflections.Reflections is [WARN].
log4j: org.reflections.Reflections level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.apache.solr.client.solrj.impl.HttpSolrServer] additivity to [true].
log4j: Level value for org.apache.solr.client.solrj.impl.HttpSolrServer is [INFO].
log4j: org.apache.solr.client.solrj.impl.HttpSolrServer level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [com.hp.hpl.jena.sparql.engine.http] additivity to [true].
log4j: Level value for com.hp.hpl.jena.sparql.engine.http is [DEBUG].
log4j: com.hp.hpl.jena.sparql.engine.http level set to DEBUG
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.tasks.solr.docfactory.entryfield.PublicationsSolrFieldCollector] additivity to [true].
log4j: Level value for org.nextprot.api.tasks.solr.docfactory.entryfield.PublicationsSolrFieldCollector is [WARN].
log4j: org.nextprot.api.tasks.solr.docfactory.entryfield.PublicationsSolrFieldCollector level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.tasks.solr.docfactory.entryfield.CVSolrFieldCollector] additivity to [true].
log4j: Level value for org.nextprot.api.tasks.solr.docfactory.entryfield.CVSolrFieldCollector is [DEBUG].
log4j: org.nextprot.api.tasks.solr.docfactory.entryfield.CVSolrFieldCollector level set to DEBUG
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.etl] additivity to [true].
log4j: Level value for org.nextprot.api.etl is [INFO].
log4j: org.nextprot.api.etl level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.apache.http] additivity to [true].
log4j: Level value for org.apache.http is [INFO].
log4j: org.apache.http level set to INFO
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.core.aop.InstrumentationAspect] additivity to [false].
log4j: Level value for org.nextprot.api.core.aop.InstrumentationAspect is [INFO].
log4j: org.nextprot.api.core.aop.InstrumentationAspect level set to INFO
log4j: Class name: [org.apache.log4j.RollingFileAppender]
log4j: Setting property [file] to [log/requests.log].
log4j: Setting property [maxFileSize] to [200MB].
log4j: Setting property [maxBackupIndex] to [10].
log4j: Parsing layout of class: "org.apache.log4j.PatternLayout"
log4j: Setting property [conversionPattern] to [%d %m%n].
log4j: setFile called: log/requests.log, true
log4j: setFile ended
log4j: Adding appender named [requestsFileAppender] to category [org.nextprot.api.core.aop.InstrumentationAspect].
log4j: Level value for root is [INFO].
log4j: root level set to INFO
log4j: Class name: [org.apache.log4j.ConsoleAppender]
log4j: Parsing layout of class: "org.apache.log4j.PatternLayout"
log4j: Setting property [conversionPattern] to [%d{dd MMM yyyy HH:mm:ss} %5p %c{1} - %m%n].
2023-07-17 17:45:46.442:INFO:oejshC.nextprot_api_web:main: Initializing Spring root WebApplicationContext
log4j: Adding appender named [consoleAppender] to category [root].
17 Jul 2023 17:45:47 INFO ApplicationContextProvider - Give access to application context Root WebApplicationContext from class ApplicationContextProvider
17 Jul 2023 17:45:47 INFO MLog - MLog clients using slf4j logging.
17 Jul 2023 17:45:47 INFO C3P0Registry - Initializing c3p0-0.9.5.5 [built 11-December-2019 22:18:33 -0800; debug? true; trace: 10]
17 Jul 2023 17:45:48 INFO AbstractPoolBackedDataSource - Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, contextClassLoaderSource -> caller, dataSourceName -> 2ryrifaxrw5p11lclzcl|4e3e11b9, debugUnreturnedConnectionStackTraces -> false, description -> null, driverClass -> org.postgresql.Driver, extensions -> {}, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, forceSynchronousCheckins -> false, forceUseNamedDriverClass -> false, identityToken -> 2ryrifaxrw5p11lclzcl|4e3e11b9, idleConnectionTestPeriod -> 0, initialPoolSize -> 1, jdbcUrl -> jdbc:postgresql://kant:5432/nextprot_preprod, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 0, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 1, maxStatements -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 1, numHelperThreads -> 3, preferredTestQuery -> null, privilegeSpawnedThreads -> false, properties -> {user=******, password=******}, propertyCycle -> 0, statementCacheNumDeferredCloseThreads -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> true, unreturnedConnectionTimeout -> 0, userOverrides -> {}, usesTraditionalReflectiveProxies -> false ]
17 Jul 2023 17:45:49 INFO RdfHelpServiceImpl - Dereferencing queires loaded: 4
17 Jul 2023 17:45:50 INFO GoogleAnalyticsFilter - Google Analytics not initialized because -DGATrackingId=UA-17852148-* system property was not found. Place it in the start.ini of the jetty application.
2023-07-17 17:45:50.974:INFO:oejshC.nextprot_api_web:main: Initializing Spring FrameworkServlet 'nextprotApi'
2023-07-17 17:45:50.992:INFO:oejsh.ContextHandler:main: Started o.e.j.w.WebAppContext@545997b1{nextprot-api,/nextprot-api-web,file:///tmp/jetty-0.0.0.0-8080-nextprot-api-web.war-_nextprot-api-web-any-5759465812610199738.dir/webapp/,AVAILABLE}{/nextprot-api-web.war}
2023-07-17 17:45:51.003:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:///tmp/context567deploy/] at interval 1
2023-07-17 17:45:51.019:INFO:oejs.AbstractConnector:main: Started ServerConnector@536aaa8d{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}
2023-07-17 17:45:51.019:INFO:oejs.Server:main: Started @7621ms
Connected to server
2023-07-17 17:45:51.140:INFO:oejshC.nextprot_api_web:RMI TCP Connection(4)-10.2.2.199: Destroying Spring FrameworkServlet 'nextprotApi'
2023-07-17 17:45:51.141:INFO:oejshC.nextprot_api_web:RMI TCP Connection(4)-10.2.2.199: Closing Spring root WebApplicationContext
2023-07-17 17:45:51.218:INFO:oejsl.ELContextCleaner:RMI TCP Connection(4)-10.2.2.199: Not cleaning cached beans: no such field javax.el.BeanELResolver.properties
2023-07-17 17:45:51.232:INFO:oejsh.ContextHandler:RMI TCP Connection(4)-10.2.2.199: Stopped o.e.j.w.WebAppContext@545997b1{nextprot-api,/nextprot-api-web,null,UNAVAILABLE}{/nextprot-api-web.war}
2023-07-17 17:45:53.668:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.AnnotationVisitor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/AnnotationVisitor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/AnnotationVisitor.class
2023-07-17 17:45:53.668:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.AnnotationWriter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/AnnotationWriter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/AnnotationWriter.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Attribute scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Attribute.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Attribute.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.ByteVector scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ByteVector.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ByteVector.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.ClassReader scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassReader.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassReader.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.ClassVisitor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassVisitor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassVisitor.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.ClassWriter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/ClassWriter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/ClassWriter.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Edge scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Edge.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Edge.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.FieldVisitor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/FieldVisitor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/FieldVisitor.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.FieldWriter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/FieldWriter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/FieldWriter.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Frame scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Frame.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Frame.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Handler scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Handler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Handler.class
2023-07-17 17:45:53.669:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Item scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Item.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Item.class
2023-07-17 17:45:53.670:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Label scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Label.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Label.class
2023-07-17 17:45:53.670:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.MethodVisitor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/MethodVisitor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/MethodVisitor.class
2023-07-17 17:45:53.670:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.MethodWriter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/MethodWriter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/MethodWriter.class
2023-07-17 17:45:53.670:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Opcodes scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Opcodes.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Opcodes.class
2023-07-17 17:45:53.670:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.Type scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/Type.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/Type.class
2023-07-17 17:45:53.671:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.signature.SignatureReader scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureReader.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureReader.class
2023-07-17 17:45:53.671:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.signature.SignatureVisitor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureVisitor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureVisitor.class
2023-07-17 17:45:53.671:WARN:oeja.AnnotationParser:qtp1468177767-28: org.objectweb.asm.signature.SignatureWriter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-3.3.1.jar!/org/objectweb/asm/signature/SignatureWriter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/asm-5.0.4.jar!/org/objectweb/asm/signature/SignatureWriter.class
2023-07-17 17:45:53.685:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcDeclareAnnotation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareAnnotation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareAnnotation.class
2023-07-17 17:45:53.685:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcDeclareEoW scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareEoW.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareEoW.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcDeclareParents scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareParents.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareParents.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcDeclarePrecedence scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclarePrecedence.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclarePrecedence.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcDeclareSoft scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareSoft.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcDeclareSoft.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcITD scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcITD.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcITD.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.annotation.ajcPrivileged scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcPrivileged.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/annotation/ajcPrivileged.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.AdviceImpl$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl$1.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.AdviceImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AdviceImpl.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.AjTypeImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/AjTypeImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/AjTypeImpl.class
2023-07-17 17:45:53.686:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclareAnnotationImpl$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl$1.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclareAnnotationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareAnnotationImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclareErrorOrWarningImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareErrorOrWarningImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareErrorOrWarningImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclareParentsImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareParentsImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareParentsImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclarePrecedenceImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclarePrecedenceImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclarePrecedenceImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.DeclareSoftImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareSoftImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/DeclareSoftImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.InterTypeConstructorDeclarationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeConstructorDeclarationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeConstructorDeclarationImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.InterTypeDeclarationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeDeclarationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeDeclarationImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.InterTypeFieldDeclarationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeFieldDeclarationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeFieldDeclarationImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.InterTypeMethodDeclarationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeMethodDeclarationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/InterTypeMethodDeclarationImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.PerClauseImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PerClauseImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PerClauseImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.PointcutBasedPerClauseImpl$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl$1.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.PointcutBasedPerClauseImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutBasedPerClauseImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.PointcutExpressionImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutExpressionImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutExpressionImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.PointcutImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/PointcutImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.SignaturePatternImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/SignaturePatternImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/SignaturePatternImpl.class
2023-07-17 17:45:53.687:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.StringToType$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType$1.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.StringToType scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/StringToType.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.TypePatternBasedPerClauseImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternBasedPerClauseImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternBasedPerClauseImpl.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.internal.lang.reflect.TypePatternImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/internal/lang/reflect/TypePatternImpl.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.Aspects scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Aspects.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Aspects.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.Aspects14 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Aspects14.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Aspects14.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.JoinPoint$EnclosingStaticPart scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint$EnclosingStaticPart.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint$EnclosingStaticPart.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.JoinPoint$StaticPart scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint$StaticPart.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint$StaticPart.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.JoinPoint scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/JoinPoint.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/JoinPoint.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.NoAspectBoundException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/NoAspectBoundException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/NoAspectBoundException.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.ProceedingJoinPoint scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/ProceedingJoinPoint.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/ProceedingJoinPoint.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.Signature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/Signature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/Signature.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.SoftException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/SoftException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/SoftException.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.AdviceName scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AdviceName.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AdviceName.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.After scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/After.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/After.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.AfterReturning scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AfterReturning.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AfterReturning.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.AfterThrowing scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/AfterThrowing.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/AfterThrowing.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.Around scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Around.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Around.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.Aspect scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Aspect.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Aspect.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.Before scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Before.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Before.class
2023-07-17 17:45:53.688:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclareAnnotation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareAnnotation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareAnnotation.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclareError scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareError.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareError.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclareMixin scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareMixin.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareMixin.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclareParents scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareParents.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareParents.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclarePrecedence scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclarePrecedence.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclarePrecedence.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.DeclareWarning scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/DeclareWarning.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/DeclareWarning.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.Pointcut scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/Pointcut.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/Pointcut.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.annotation.SuppressAjWarnings scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/annotation/SuppressAjWarnings.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/annotation/SuppressAjWarnings.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.internal.lang.PlaceHolder scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/internal/lang/PlaceHolder.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/internal/lang/PlaceHolder.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.Advice scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/Advice.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/Advice.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.AdviceKind scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AdviceKind.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AdviceKind.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.AdviceSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AdviceSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AdviceSignature.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.AjType scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AjType.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AjType.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.AjTypeSystem scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/AjTypeSystem.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/AjTypeSystem.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.CatchClauseSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/CatchClauseSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/CatchClauseSignature.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.CodeSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/CodeSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/CodeSignature.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.ConstructorSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/ConstructorSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/ConstructorSignature.class
2023-07-17 17:45:53.689:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclareAnnotation$Kind scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation$Kind.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation$Kind.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclareAnnotation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareAnnotation.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclareErrorOrWarning scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareErrorOrWarning.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareErrorOrWarning.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.ArrayStack scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/ArrayStack.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/ArrayStack.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclareParents scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareParents.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareParents.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclarePrecedence scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclarePrecedence.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclarePrecedence.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.DeclareSoft scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/DeclareSoft.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/DeclareSoft.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.FieldSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/FieldSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/FieldSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.InitializerSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InitializerSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InitializerSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.InterTypeConstructorDeclaration scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeConstructorDeclaration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeConstructorDeclaration.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.InterTypeDeclaration scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeDeclaration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeDeclaration.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.InterTypeFieldDeclaration scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeFieldDeclaration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeFieldDeclaration.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.InterTypeMethodDeclaration scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeMethodDeclaration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/InterTypeMethodDeclaration.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.LockSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/LockSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/LockSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.MemberSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/MemberSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/MemberSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.MethodSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/MethodSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/MethodSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.NoSuchAdviceException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchAdviceException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchAdviceException.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.NoSuchPointcutException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchPointcutException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/NoSuchPointcutException.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.PerClause scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PerClause.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PerClause.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.PerClauseKind scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PerClauseKind.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PerClauseKind.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.Pointcut scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/Pointcut.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/Pointcut.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.PointcutBasedPerClause scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PointcutBasedPerClause.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PointcutBasedPerClause.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.PointcutExpression scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/PointcutExpression.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/PointcutExpression.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.SignaturePattern scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/SignaturePattern.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/SignaturePattern.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.SourceLocation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/SourceLocation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/SourceLocation.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.TypePattern scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/TypePattern.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/TypePattern.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.TypePatternBasedPerClause scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/TypePatternBasedPerClause.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/TypePatternBasedPerClause.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.lang.reflect.UnlockSignature scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/lang/reflect/UnlockSignature.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/lang/reflect/UnlockSignature.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.CFlow scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/CFlow.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/CFlow.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.AroundClosure scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/AroundClosure.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/AroundClosure.class
2023-07-17 17:45:53.690:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.CFlowCounter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowCounter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowCounter.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.CFlowPlusState scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowPlusState.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowPlusState.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.CFlowStack scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/CFlowStack.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/CFlowStack.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.Conversions scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/Conversions.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/Conversions.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.Buffer scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/Buffer.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/Buffer.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.PerObjectMap scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/PerObjectMap.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/PerObjectMap.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadCounter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounter.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.BufferUnderflowException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/BufferUnderflowException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/BufferUnderflowException.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadCounterImpl11$Counter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11$Counter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11$Counter.class
2023-07-17 17:45:53.691:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadCounterImpl11 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadCounterImpl11.class
2023-07-17 17:45:53.693:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStack scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStack.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStack.class
2023-07-17 17:45:53.693:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactory scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactory.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactory.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$1.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$1.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadCounterImpl$Counter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl$Counter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl$Counter.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$CollectionView$CollectionViewIterator.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$CollectionView$CollectionViewIterator.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadCounterImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadCounterImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$CollectionView scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$CollectionView.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$CollectionView.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl$ThreadStackImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadStackImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl$ThreadStackImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$EntrySet scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$EntrySet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$EntrySet.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackFactoryImpl11 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl11.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackFactoryImpl11.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$KeySet scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$KeySet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$KeySet.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.internal.cflowstack.ThreadStackImpl11 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackImpl11.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/internal/cflowstack/ThreadStackImpl11.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap$Values scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap$Values.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap$Values.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.AdviceSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/AdviceSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/AdviceSignatureImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-68: org.apache.commons.collections.FastHashMap scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-beanutils-1.7.0.jar!/org/apache/commons/collections/FastHashMap.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-collections-3.2.1.jar!/org/apache/commons/collections/FastHashMap.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.CatchClauseSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/CatchClauseSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/CatchClauseSignatureImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.CodeSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/CodeSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/CodeSignatureImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.ConstructorSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/ConstructorSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/ConstructorSignatureImpl.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.Factory scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/Factory.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/Factory.class
2023-07-17 17:45:53.694:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.FieldSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/FieldSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/FieldSignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.InitializerSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/InitializerSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/InitializerSignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.JoinPointImpl$EnclosingStaticPartImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$EnclosingStaticPartImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$EnclosingStaticPartImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.JoinPointImpl$StaticPartImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$StaticPartImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl$StaticPartImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.JoinPointImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/JoinPointImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.LockSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/LockSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/LockSignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.MemberSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/MemberSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/MemberSignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.MethodSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/MethodSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/MethodSignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.SignatureImpl$Cache scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$Cache.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$Cache.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.SignatureImpl$CacheImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$CacheImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl$CacheImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.SignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SignatureImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.SourceLocationImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/SourceLocationImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/SourceLocationImpl.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.StringMaker scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/StringMaker.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/StringMaker.class
2023-07-17 17:45:53.695:WARN:oeja.AnnotationParser:qtp1468177767-34: org.aspectj.runtime.reflect.UnlockSignatureImpl scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjrt-1.6.11.jar!/org/aspectj/runtime/reflect/UnlockSignatureImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aspectjweaver-1.6.11.jar!/org/aspectj/runtime/reflect/UnlockSignatureImpl.class
2023-07-17 17:45:53.824:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.AsyncContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncContext.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncContext.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.AsyncEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncEvent.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.AsyncListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/AsyncListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/AsyncListener.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.DispatcherType scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/DispatcherType.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/DispatcherType.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.Filter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Filter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Filter.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.FilterChain scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterChain.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterChain.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.FilterConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterConfig.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.FilterRegistration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterRegistration$Dynamic.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterRegistration$Dynamic.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.FilterRegistration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterRegistration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/FilterRegistration.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.GenericServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/GenericServlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/GenericServlet.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.HttpConstraintElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/HttpConstraintElement.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/HttpConstraintElement.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.HttpMethodConstraintElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/HttpMethodConstraintElement.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/HttpMethodConstraintElement.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.MultipartConfigElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/MultipartConfigElement.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/MultipartConfigElement.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.Registration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Registration$Dynamic.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Registration$Dynamic.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.Registration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Registration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Registration.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.RequestDispatcher scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/RequestDispatcher.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/RequestDispatcher.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.Servlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Servlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/Servlet.class
2023-07-17 17:45:53.827:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletConfig.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContainerInitializer scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContainerInitializer.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContainerInitializer.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContext.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContext.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContextAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextAttributeEvent.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContextAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextAttributeListener.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContextEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextEvent.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletContextListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletContextListener.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletException.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletInputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletInputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletInputStream.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletOutputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletOutputStream.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRegistration$Dynamic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRegistration$Dynamic.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRegistration$Dynamic.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRegistration scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRegistration.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRegistration.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequest.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequest.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequestAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestAttributeEvent.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequestAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestAttributeListener.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequestEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestEvent.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequestListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestListener.class
2023-07-17 17:45:53.828:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletRequestWrapper.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletResponse.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponseWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletResponseWrapper.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.ServletSecurityElement scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletSecurityElement.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/ServletSecurityElement.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.SessionCookieConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SessionCookieConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SessionCookieConfig.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.SessionTrackingMode scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SessionTrackingMode.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SessionTrackingMode.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.SingleThreadModel scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SingleThreadModel.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/SingleThreadModel.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.UnavailableException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/UnavailableException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/UnavailableException.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.HandlesTypes scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HandlesTypes.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HandlesTypes.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.HttpConstraint scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpConstraint.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HttpConstraint.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.HttpMethodConstraint scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/HttpMethodConstraint.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/HttpMethodConstraint.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.MultipartConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/MultipartConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/MultipartConfig.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.ServletSecurity$EmptyRoleSemantic scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity$EmptyRoleSemantic.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.ServletSecurity$TransportGuarantee scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity$TransportGuarantee.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.ServletSecurity scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/ServletSecurity.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/ServletSecurity.class
2023-07-17 17:45:53.829:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.WebFilter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebFilter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebFilter.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.WebInitParam scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebInitParam.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebInitParam.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.WebListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebListener.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.annotation.WebServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/annotation/WebServlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/annotation/WebServlet.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.descriptor.JspConfigDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspConfigDescriptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/JspConfigDescriptor.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.descriptor.JspPropertyGroupDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/JspPropertyGroupDescriptor.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.descriptor.TaglibDescriptor scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/descriptor/TaglibDescriptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/descriptor/TaglibDescriptor.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.Cookie scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Cookie.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/Cookie.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServlet.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequest.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletRequest.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequestWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletRequestWrapper.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletResponse.class
2023-07-17 17:45:53.830:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponseWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpServletResponseWrapper.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSession scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSession.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSession.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionActivationListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionActivationListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionActivationListener.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionAttributeListener.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionBindingEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionBindingEvent.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionBindingListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionBindingListener.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionContext.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionContext.class
2023-07-17 17:45:53.831:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionEvent.class
2023-07-17 17:45:53.833:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpSessionListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpSessionListener.class
2023-07-17 17:45:53.833:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.HttpUtils scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUtils.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/HttpUtils.class
2023-07-17 17:45:53.833:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.NoBodyOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyOutputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/NoBodyOutputStream.class
2023-07-17 17:45:53.833:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.NoBodyResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/NoBodyResponse.class
2023-07-17 17:45:53.833:WARN:oeja.AnnotationParser:qtp1468177767-29: javax.servlet.http.Part scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Part.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/javax.servlet-3.0.0.v201112011016.jar!/javax/servlet/http/Part.class
2023-07-17 17:45:53.843:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.Log scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/Log.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/Log.class
2023-07-17 17:45:53.843:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.LogConfigurationException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/LogConfigurationException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/LogConfigurationException.class
2023-07-17 17:45:53.843:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.LogFactory scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/LogFactory.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/LogFactory.class
2023-07-17 17:45:53.843:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.impl.NoOpLog scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/NoOpLog.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/NoOpLog.class
2023-07-17 17:45:53.844:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.impl.SimpleLog$1 scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/SimpleLog$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/SimpleLog$1.class
2023-07-17 17:45:53.844:WARN:oeja.AnnotationParser:qtp1468177767-69: org.apache.commons.logging.impl.SimpleLog scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/commons-logging-1.1.jar!/org/apache/commons/logging/impl/SimpleLog.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jcl-over-slf4j-1.6.4.jar!/org/apache/commons/logging/impl/SimpleLog.class
2023-07-17 17:45:53.892:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.Version scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/Version.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/Version.class
2023-07-17 17:45:53.893:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.functions.Functions scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/functions/Functions.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/functions/Functions.class
2023-07-17 17:45:53.898:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.resources.Resources scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/resources/Resources.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/resources/Resources.class
2023-07-17 17:45:53.898:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.CatchTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/CatchTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/CatchTag.class
2023-07-17 17:45:53.898:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ChooseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ChooseTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ChooseTag.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.DeclareTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/DeclareTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/DeclareTag.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ForEachSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ForEachSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ForEachSupport.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ForTokensSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ForTokensSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ForTokensSupport.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ImportSupport$ImportResponseWrapper$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper$1.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ImportSupport$ImportResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport$ImportResponseWrapper.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ImportSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ImportSupport.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.NullAttributeException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/NullAttributeException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/NullAttributeException.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.OtherwiseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.OutSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/OutSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/OutSupport.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ParamParent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamParent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamParent.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ParamSupport$ParamManager scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport$ParamManager.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport$ParamManager.class
2023-07-17 17:45:53.899:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/ParamSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.RedirectSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/RedirectSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/RedirectSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.RemoveTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/RemoveTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/RemoveTag.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.SetSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/SetSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/SetSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.UrlSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/UrlSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/UrlSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.Util scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/Util.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/Util.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.core.WhenTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.BundleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/BundleSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/BundleSupport.class
2023-07-17 17:45:53.900:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.FormatDateSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatDateSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatDateSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.FormatNumberSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatNumberSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/FormatNumberSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.MessageSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/MessageSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/MessageSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParamSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParamSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.ParseDateSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseDateSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseDateSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.ParseNumberSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseNumberSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/ParseNumberSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.RequestEncodingSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/RequestEncodingSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/RequestEncodingSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.SetBundleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetBundleSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetBundleSupport.class
2023-07-17 17:45:53.901:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.SetLocaleSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetLocaleSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetLocaleSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.SetTimeZoneSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/SetTimeZoneSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/SetTimeZoneSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.fmt.TimeZoneSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/fmt/TimeZoneSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/fmt/TimeZoneSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.DataSourceUtil scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceUtil.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceUtil.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.DataSourceWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.DateParamTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/DateParamTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/DateParamTagSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.ParamTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/ParamTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/ParamTagSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.QueryTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/QueryTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/QueryTagSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.ResultImpl scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/ResultImpl.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/ResultImpl.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/SetDataSourceTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/SetDataSourceTagSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.TransactionTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/TransactionTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/TransactionTagSupport.class
2023-07-17 17:45:53.902:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.sql.UpdateTagSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/sql/UpdateTagSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/sql/UpdateTagSupport.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.ExprSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ExprSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ExprSupport.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.ForEachTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ForEachTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ForEachTag.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.IfTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/IfTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/IfTag.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.ParamSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ParamSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ParamSupport.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.ParseSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/ParseSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/ParseSupport.class
2023-07-17 17:45:53.903:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.SetTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/SetTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/SetTag.class
2023-07-17 17:45:53.904:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.TransformSupport scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/TransformSupport.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/TransformSupport.class
2023-07-17 17:45:53.904:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.common.xml.WhenTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/common/xml/WhenTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/common/xml/WhenTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.ForEachTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ForEachTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ForEachTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.ForTokensTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ForTokensTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ForTokensTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.IfTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/IfTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/IfTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.ImportTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ImportTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ImportTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.OutTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/OutTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/OutTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/ParamTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/ParamTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.RedirectTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/RedirectTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/RedirectTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.SetTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/SetTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/SetTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.UrlTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/UrlTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/UrlTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.core.WhenTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/core/WhenTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/core/WhenTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.BundleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/BundleTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/BundleTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatNumberTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/FormatNumberTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.MessageTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/MessageTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/MessageTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParamTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParamTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseDateTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseDateTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseNumberTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/ParseNumberTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/RequestEncodingTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/RequestEncodingTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetBundleTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetBundleTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetLocaleTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetLocaleTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetTimeZoneTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/SetTimeZoneTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/fmt/TimeZoneTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/fmt/TimeZoneTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.DateParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/DateParamTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/DateParamTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/ParamTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/ParamTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.QueryTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/QueryTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/QueryTag.class
2023-07-17 17:45:53.906:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/SetDataSourceTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/SetDataSourceTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.TransactionTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/TransactionTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/TransactionTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.sql.UpdateTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/sql/UpdateTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/sql/UpdateTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.xml.ExprTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ExprTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ExprTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.xml.ParamTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ParamTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ParamTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.xml.ParseTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/ParseTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/ParseTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tag.rt.xml.TransformTag scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tag/rt/xml/TransformTag.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tag/rt/xml/TransformTag.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.DeclareTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/DeclareTEI.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/DeclareTEI.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.ForEachTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/ForEachTEI.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/ForEachTEI.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.ImportTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/ImportTEI.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/ImportTEI.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.Util scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/Util.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/Util.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.XmlParseTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/XmlParseTEI.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/XmlParseTEI.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tei.XmlTransformTEI scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tei/XmlTransformTEI.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tei/XmlTransformTEI.class
2023-07-17 17:45:53.907:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlBaseTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlBaseTLV.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlBaseTLV.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlCoreTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$1.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlCoreTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$Handler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV$Handler.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlCoreTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlCoreTLV.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlFmtTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$1.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlFmtTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$Handler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV$Handler.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlFmtTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlFmtTLV.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlSqlTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$1.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlSqlTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$Handler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV$Handler.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlSqlTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlSqlTLV.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlXmlTLV$1 scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$1.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$1.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlXmlTLV$Handler scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$Handler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV$Handler.class
2023-07-17 17:45:53.908:WARN:oeja.AnnotationParser:qtp1468177767-67: org.apache.taglibs.standard.tlv.JstlXmlTLV scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jstl-1.2.jar!/org/apache/taglibs/standard/tlv/JstlXmlTLV.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.Filter scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Filter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/Filter.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.FilterChain scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterChain.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/FilterChain.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.FilterConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/FilterConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/FilterConfig.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.GenericServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/GenericServlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/GenericServlet.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.RequestDispatcher scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/RequestDispatcher.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/RequestDispatcher.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.Servlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/Servlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/Servlet.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletConfig scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletConfig.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletConfig.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContext.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContext.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletContextAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextAttributeEvent.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletContextAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextAttributeListener.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletContextEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextEvent.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletContextListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletContextListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletContextListener.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletException.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletInputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletInputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletInputStream.class
2023-07-17 17:45:53.986:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletOutputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletOutputStream.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequest.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequest.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequestAttributeEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestAttributeEvent.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequestAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestAttributeListener.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequestEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestEvent.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequestListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestListener.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletRequestWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletRequestWrapper.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletResponse.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.ServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/ServletResponseWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/ServletResponseWrapper.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.SingleThreadModel scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/SingleThreadModel.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/SingleThreadModel.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.UnavailableException scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/UnavailableException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/UnavailableException.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.Cookie scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/Cookie.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/Cookie.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpServlet scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServlet.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServlet.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpServletRequest scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequest.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletRequest.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpServletRequestWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletRequestWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletRequestWrapper.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpServletResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletResponse.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpServletResponseWrapper scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpServletResponseWrapper.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpServletResponseWrapper.class
2023-07-17 17:45:53.987:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSession scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSession.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSession.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionActivationListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionActivationListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionActivationListener.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionAttributeListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionAttributeListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionAttributeListener.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionBindingEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionBindingEvent.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionBindingListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionBindingListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionBindingListener.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionContext scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionContext.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionContext.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionEvent scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionEvent.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionEvent.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpSessionListener scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpSessionListener.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpSessionListener.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.HttpUtils scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/HttpUtils.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/HttpUtils.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.NoBodyOutputStream scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyOutputStream.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/NoBodyOutputStream.class
2023-07-17 17:45:53.988:WARN:oeja.AnnotationParser:qtp1468177767-70: javax.servlet.http.NoBodyResponse scanned from multiple locations: jar:file:///home/ksamaras/tools/jetty/lib/servlet-api-3.1.jar!/javax/servlet/http/NoBodyResponse.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/servlet-api-2.5.jar!/javax/servlet/http/NoBodyResponse.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.aop.Advice scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/aop/Advice.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/aop/Advice.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.aop.AspectException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/aop/AspectException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/aop/AspectException.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.ConstructorInterceptor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/ConstructorInterceptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/ConstructorInterceptor.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.ConstructorInvocation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/ConstructorInvocation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/ConstructorInvocation.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.Interceptor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Interceptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Interceptor.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.Invocation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Invocation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Invocation.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.Joinpoint scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/Joinpoint.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/Joinpoint.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.MethodInterceptor scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/MethodInterceptor.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/MethodInterceptor.class
2023-07-17 17:45:53.993:WARN:oeja.AnnotationParser:qtp1468177767-33: org.aopalliance.intercept.MethodInvocation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/aopalliance-1.0.jar!/org/aopalliance/intercept/MethodInvocation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/spring-aop-4.3.21.RELEASE.jar!/org/aopalliance/intercept/MethodInvocation.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Attr scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Attr.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Attr.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.CDATASection scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/CDATASection.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/CDATASection.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.CharacterData scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/CharacterData.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/CharacterData.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Comment scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Comment.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Comment.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.DOMException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DOMException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DOMException.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.DOMImplementation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DOMImplementation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DOMImplementation.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Document scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Document.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Document.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.DocumentFragment scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DocumentFragment.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DocumentFragment.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.DocumentType scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/DocumentType.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/DocumentType.class
2023-07-17 17:45:54.079:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Element scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Element.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Element.class
2023-07-17 17:45:54.080:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Entity scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Entity.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Entity.class
2023-07-17 17:45:54.080:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.EntityReference scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/EntityReference.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/EntityReference.class
2023-07-17 17:45:54.080:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.NamedNodeMap scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/NamedNodeMap.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/NamedNodeMap.class
2023-07-17 17:45:54.080:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Node scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Node.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Node.class
2023-07-17 17:45:54.080:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.NodeList scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/NodeList.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/NodeList.class
2023-07-17 17:45:54.081:WARN:oeja.AnnotationParser:qtp1468177767-21: org.xmlpull.v1.XmlPullParser scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParser.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParser.class
2023-07-17 17:45:54.081:WARN:oeja.AnnotationParser:qtp1468177767-21: org.xmlpull.v1.XmlPullParserException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParserException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserException.class
2023-07-17 17:45:54.084:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Notation scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Notation.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Notation.class
2023-07-17 17:45:54.084:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.ProcessingInstruction scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/ProcessingInstruction.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/ProcessingInstruction.class
2023-07-17 17:45:54.084:WARN:oeja.AnnotationParser:qtp1468177767-72: org.w3c.dom.Text scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/w3c/dom/Text.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/Text.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.AttributeList scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/AttributeList.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/AttributeList.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.Attributes scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Attributes.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Attributes.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.ContentHandler scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/ContentHandler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/ContentHandler.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.DTDHandler scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/DTDHandler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/DTDHandler.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.DocumentHandler scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/DocumentHandler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/DocumentHandler.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.EntityResolver scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/EntityResolver.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/EntityResolver.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.ErrorHandler scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/ErrorHandler.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/ErrorHandler.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.HandlerBase scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/HandlerBase.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/HandlerBase.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.InputSource scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/InputSource.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/InputSource.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.Locator scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Locator.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Locator.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.Parser scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/Parser.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/Parser.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.SAXException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXException.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.SAXNotRecognizedException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXNotRecognizedException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXNotRecognizedException.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.SAXNotSupportedException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXNotSupportedException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXNotSupportedException.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.SAXParseException scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/SAXParseException.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/SAXParseException.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.XMLFilter scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/XMLFilter.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/XMLFilter.class
2023-07-17 17:45:54.087:WARN:oeja.AnnotationParser:qtp1468177767-72: org.xml.sax.XMLReader scanned from multiple locations: jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/jtidy-4aug2000r7-dev.jar!/org/xml/sax/XMLReader.class, jar:file:///home/ksamaras/dev/github/nextprot-api/web/target/nextprot-api-web/WEB-INF/lib/xml-apis-1.4.01.jar!/org/xml/sax/XMLReader.class
2023-07-17 17:45:54.148:INFO:oeja.AnnotationConfiguration:Scanner-1: Scanning elapsed time=484ms
log4j: reset attribute= "false".
log4j: Threshold ="null".
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.springframework] additivity to [true].
log4j: Level value for org.springframework is [WARN].
log4j: org.springframework level set to WARN
log4j: Retreiving an instance of org.apache.log4j.Logger.
log4j: Setting [org.nextprot.api.solr] additivity to [true].
log4j: Level value for org.nextprot.api.solr is [WARN].
log4j: org.nextprot.api.solr level set to WARN