-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjbit.log
1535 lines (1535 loc) · 298 KB
/
jbit.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
2018-03-06 14:18:48 SpringJUnit4ClassRunner.java DEBUG SpringJUnit4ClassRunner constructor called with [class com.tfss.generate.mapper.test.testConfig].
2018-03-06 14:18:48 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@bd53a7c declaringClass = 'com.tfss.generate.mapper.test.testConfig', locations = '{classpath:spring-mybatis.xml}', classes = '{}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
2018-03-06 14:18:48 ContextLoaderUtils.java DEBUG Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:48 TestContextManager.java DEBUG @TestExecutionListeners is not present for class [class com.tfss.generate.mapper.test.testConfig]: using defaults.
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:18:49 DependencyInjectionTestExecutionListener.java DEBUG Performing dependency injection for test context [[DefaultTestContext@3069b5a7 testClass = testConfig, testInstance = com.tfss.generate.mapper.test.testConfig@6c14ffc5, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@56a415f2 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
2018-03-06 14:18:49 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@56a415f2 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
2018-03-06 14:18:49 AbstractGenericContextLoader.java DEBUG Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@56a415f2 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2018-03-06 14:18:49 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:18:49 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:18:49 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:18:49 XmlBeanDefinitionReader.java INFO Loading XML bean definitions from class path resource [spring-mybatis.xml]
2018-03-06 14:18:49 DefaultDocumentLoader.java DEBUG Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
2018-03-06 14:18:49 PluggableSchemaResolver.java DEBUG Loading schema mappings from [META-INF/spring.schemas]
2018-03-06 14:18:49 PluggableSchemaResolver.java DEBUG Loaded schema mappings: {http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://mybatis.org/schema/mybatis-spring-1.2.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/context/spring-context-4.0.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd=org/springframework/oxm/config/spring-oxm-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd=org/springframework/jdbc/config/spring-jdbc-3.1.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-4.0.xsd=org/springframework/aop/config/spring-aop-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-4.0.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/tool/spring-tool-4.0.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-3.2.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-4.0.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-4.0.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-4.0.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://mybatis.org/schema/mybatis-spring.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/task/spring-task-4.0.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-4.0.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.2.xsd=org/springframework/oxm/config/spring-oxm-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/util/spring-util-4.0.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-4.0.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.1.xsd=org/springframework/oxm/config/spring-oxm-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-4.0.xsd}
2018-03-06 14:18:49 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/beans/spring-beans-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-3.1.xsd
2018-03-06 14:18:50 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/context/spring-context-3.1.xsd] in classpath: org/springframework/context/config/spring-context-3.1.xsd
2018-03-06 14:18:50 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/tool/spring-tool-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-3.1.xsd
2018-03-06 14:18:50 DefaultBeanDefinitionDocumentReader.java DEBUG Loading bean definitions
2018-03-06 14:18:50 DefaultNamespaceHandlerResolver.java DEBUG Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/oxm=org.springframework.oxm.config.OxmNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://mybatis.org/schema/mybatis-spring=org.mybatis.spring.config.NamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
2018-03-06 14:18:50 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
2018-03-06 14:18:50 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-330 'javax.inject.Named' annotation found and supported for component scanning
2018-03-06 14:18:50 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/px/**/*.class] to resources []
2018-03-06 14:18:50 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [com.px.support.dao.DataAccessManager#0]
2018-03-06 14:18:50 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [org.mybatis.spring.mapper.MapperScannerConfigurer#0]
2018-03-06 14:18:50 AbstractBeanDefinitionReader.java DEBUG Loaded 10 bean definitions from location pattern [classpath:spring-mybatis.xml]
2018-03-06 14:18:50 AbstractApplicationContext.java INFO Refreshing org.springframework.context.support.GenericApplicationContext@3e3837ba: startup date [Tue Mar 06 14:18:50 CST 2018]; root of context hierarchy
2018-03-06 14:18:50 AbstractApplicationContext.java DEBUG Bean factory for org.springframework.context.support.GenericApplicationContext@3e3837ba: org.springframework.beans.factory.support.DefaultListableBeanFactory@b6704b6: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.px.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager]; root of factory hierarchy
2018-03-06 14:18:50 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:82)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:50 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:18:50 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:18:50 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:18:50 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:18:50 ConfigurationClassUtils.java DEBUG Could not find class file for introspecting factory methods: com.px.support.dao.DataAccessManager
java.io.FileNotFoundException: class path resource [com/px/support/dao/DataAccessManager.class] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:158)
at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:50)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:82)
at org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader(CachingMetadataReaderFactory.java:102)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:77)
at org.springframework.context.annotation.ConfigurationClassUtils.checkConfigurationClassCandidate(ConfigurationClassUtils.java:73)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:274)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:243)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:254)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:94)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2018-03-06 14:18:50 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:97)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:50 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:113)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:50 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:18:50 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:18:50 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:18:51 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:18:51 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:18:51 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:18:51 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/px/generate/mapper/**/*.class] to resources []
2018-03-06 14:18:51 ClassPathMapperScanner.java WARN No MyBatis mapper was found in '[com.px.generate.mapper]' package. Please check your configuration.
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:113)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:138)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'propertyConfigurer'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'propertyConfigurer'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'propertyConfigurer' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'propertyConfigurer'
2018-03-06 14:18:51 PropertiesLoaderSupport.java INFO Loading properties file from class path resource [jdbc.properties]
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.PostProcessorRegistrationDelegate.registerBeanPostProcessors(PostProcessorRegistrationDelegate.java:183)
at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:618)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:467)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:18:51 AutowiredAnnotationBeanPostProcessor.java INFO JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
2018-03-06 14:18:51 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:18:51 AbstractApplicationContext.java DEBUG Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@66a8c396]
2018-03-06 14:18:51 AbstractApplicationContext.java DEBUG Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@2ac0e5b9]
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.AbstractApplicationContext.getBeanNamesForType(AbstractApplicationContext.java:1057)
at org.springframework.context.support.AbstractApplicationContext.registerListeners(AbstractApplicationContext.java:729)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 38 more
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Ignoring bean class loading failure for bean 'com.px.support.dao.DataAccessManager#0'
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:382)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:353)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:748)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:482)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 37 more
2018-03-06 14:18:51 DefaultListableBeanFactory.java DEBUG Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@b6704b6: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.px.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy
2018-03-06 14:18:51 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:18:51 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:18:51 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:18:51 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:18:51 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'propertyConfigurer'
2018-03-06 14:18:51 DefaultSingletonBeanRegistry.java DEBUG Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@b6704b6: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.px.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy
2018-03-06 14:18:51 TestContextManager.java ERROR Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@75b497e5] to prepare test instance [com.tfss.generate.mapper.test.testConfig@6c14ffc5]
java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:99)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.px.support.dao.DataAccessManager] for bean with name 'com.px.support.dao.DataAccessManager#0' defined in class path resource [spring-mybatis.xml]; nested exception is java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:594)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1396)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:959)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:680)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:760)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:482)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
... 25 more
Caused by: java.lang.ClassNotFoundException: com.px.support.dao.DataAccessManager
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)
at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:392)
at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1319)
... 37 more
2018-03-06 14:18:51 DirtiesContextTestExecutionListener.java DEBUG After test class: context [DefaultTestContext@3069b5a7 testClass = testConfig, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@56a415f2 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], dirtiesContext [false].
2018-03-06 14:19:43 SpringJUnit4ClassRunner.java DEBUG SpringJUnit4ClassRunner constructor called with [class com.tfss.generate.mapper.test.testConfig].
2018-03-06 14:19:43 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@49a9542c declaringClass = 'com.tfss.generate.mapper.test.testConfig', locations = '{classpath:spring-mybatis.xml}', classes = '{}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
2018-03-06 14:19:43 ContextLoaderUtils.java DEBUG Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 TestContextManager.java DEBUG @TestExecutionListeners is not present for class [class com.tfss.generate.mapper.test.testConfig]: using defaults.
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:19:43 DependencyInjectionTestExecutionListener.java DEBUG Performing dependency injection for test context [[DefaultTestContext@5f0c8ac1 testClass = testConfig, testInstance = com.tfss.generate.mapper.test.testConfig@3069b5a7, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
2018-03-06 14:19:43 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
2018-03-06 14:19:43 AbstractGenericContextLoader.java DEBUG Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2018-03-06 14:19:43 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:19:43 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:19:43 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:19:43 XmlBeanDefinitionReader.java INFO Loading XML bean definitions from class path resource [spring-mybatis.xml]
2018-03-06 14:19:43 DefaultDocumentLoader.java DEBUG Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
2018-03-06 14:19:43 PluggableSchemaResolver.java DEBUG Loading schema mappings from [META-INF/spring.schemas]
2018-03-06 14:19:43 PluggableSchemaResolver.java DEBUG Loaded schema mappings: {http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://mybatis.org/schema/mybatis-spring-1.2.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/context/spring-context-4.0.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd=org/springframework/oxm/config/spring-oxm-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd=org/springframework/jdbc/config/spring-jdbc-3.1.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-4.0.xsd=org/springframework/aop/config/spring-aop-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-4.0.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/tool/spring-tool-4.0.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-3.2.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-4.0.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-4.0.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-4.0.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://mybatis.org/schema/mybatis-spring.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/task/spring-task-4.0.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-4.0.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.2.xsd=org/springframework/oxm/config/spring-oxm-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/util/spring-util-4.0.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-4.0.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.1.xsd=org/springframework/oxm/config/spring-oxm-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-4.0.xsd}
2018-03-06 14:19:43 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/beans/spring-beans-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-3.1.xsd
2018-03-06 14:19:43 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/context/spring-context-3.1.xsd] in classpath: org/springframework/context/config/spring-context-3.1.xsd
2018-03-06 14:19:43 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/tool/spring-tool-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-3.1.xsd
2018-03-06 14:19:43 DefaultBeanDefinitionDocumentReader.java DEBUG Loading bean definitions
2018-03-06 14:19:43 DefaultNamespaceHandlerResolver.java DEBUG Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/oxm=org.springframework.oxm.config.OxmNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://mybatis.org/schema/mybatis-spring=org.mybatis.spring.config.NamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
2018-03-06 14:19:44 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
2018-03-06 14:19:44 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-330 'javax.inject.Named' annotation found and supported for component scanning
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils\test] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support\dao] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/tfss/**/*.class] to resources [file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils\test\QiniuTest.class], file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test\testConfig.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\FileType.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\FileTypeHelper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuImg.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuKeyGenerator.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuStorage.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuWrapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\ThumbModel.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils\CommonUtil.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils\PropertiesUtil.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Admin.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Mjmiaccttyp.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Picture.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Product.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductKey.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\AdminMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\MjmiaccttypMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\PictureMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\ProductMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support\dao\DataAccessManager.class]]
2018-03-06 14:19:44 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [com.tfss.support.dao.DataAccessManager#0]
2018-03-06 14:19:44 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [org.mybatis.spring.mapper.MapperScannerConfigurer#0]
2018-03-06 14:19:44 AbstractBeanDefinitionReader.java DEBUG Loaded 10 bean definitions from location pattern [classpath:spring-mybatis.xml]
2018-03-06 14:19:44 AbstractApplicationContext.java INFO Refreshing org.springframework.context.support.GenericApplicationContext@483f7574: startup date [Tue Mar 06 14:19:44 CST 2018]; root of context hierarchy
2018-03-06 14:19:44 AbstractApplicationContext.java DEBUG Bean factory for org.springframework.context.support.GenericApplicationContext@483f7574: org.springframework.beans.factory.support.DefaultListableBeanFactory@991e092: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager]; root of factory hierarchy
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:19:44 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:19:44 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:19:44 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/px/generate/mapper/**/*.class] to resources []
2018-03-06 14:19:44 ClassPathMapperScanner.java WARN No MyBatis mapper was found in '[com.px.generate.mapper]' package. Please check your configuration.
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'propertyConfigurer'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'propertyConfigurer'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'propertyConfigurer' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'propertyConfigurer'
2018-03-06 14:19:44 PropertiesLoaderSupport.java INFO Loading properties file from class path resource [jdbc.properties]
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:19:44 AutowiredAnnotationBeanPostProcessor.java INFO JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:19:44 AbstractApplicationContext.java DEBUG Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@11b3a10d]
2018-03-06 14:19:44 AbstractApplicationContext.java DEBUG Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@11d8e635]
2018-03-06 14:19:44 DefaultListableBeanFactory.java DEBUG Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@991e092: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'propertyConfigurer'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'com.tfss.support.dao.DataAccessManager#0' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'dataSource'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'dataSource'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'dataSource' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'dataSource'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'sqlSessionFactory'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'sqlSessionFactory'
2018-03-06 14:19:44 Slf4jImpl.java DEBUG Logging initialized using 'org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'sqlSessionFactory' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'dataSource'
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/generate/mapper/*.xml]
2018-03-06 14:19:44 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath:com/tfss/generate/mapper/*.xml] to resources []
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'sqlSessionFactory'
2018-03-06 14:19:44 Slf4jImpl.java DEBUG Property 'configLocation' not specified, using default MyBatis Configuration
2018-03-06 14:19:44 Slf4jImpl.java DEBUG Property 'mapperLocations' was not specified or no matching resources found
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'sqlSessionFactory'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:19:44 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'transactionManager'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'transactionManager'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'transactionManager' to allow for resolving potential circular references
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'dataSource'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'transactionManager'
2018-03-06 14:19:44 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'transactionManager'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:19:44 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:19:45 AbstractApplicationContext.java DEBUG Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@48f98163]
2018-03-06 14:19:45 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'lifecycleProcessor'
2018-03-06 14:19:45 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'sqlSessionFactory'
2018-03-06 14:19:45 PropertySourcesPropertyResolver.java DEBUG Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
2018-03-06 14:19:45 PropertySourcesPropertyResolver.java DEBUG Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
2018-03-06 14:19:45 PropertySourcesPropertyResolver.java DEBUG Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
2018-03-06 14:19:45 CacheAwareContextLoaderDelegate.java DEBUG Storing ApplicationContext in cache under key [[MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2018-03-06 14:19:45 DirtiesContextTestExecutionListener.java DEBUG After test method: context [DefaultTestContext@5f0c8ac1 testClass = testConfig, testInstance = com.tfss.generate.mapper.test.testConfig@3069b5a7, testMethod = test1@testConfig, testException = org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.tfss.generate.mapper.AdminMapper] is defined, mergedContextConfiguration = [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
2018-03-06 14:19:45 DirtiesContextTestExecutionListener.java DEBUG After test class: context [DefaultTestContext@5f0c8ac1 testClass = testConfig, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], dirtiesContext [false].
2018-03-06 14:19:45 AbstractApplicationContext.java INFO Closing org.springframework.context.support.GenericApplicationContext@483f7574: startup date [Tue Mar 06 14:19:44 CST 2018]; root of context hierarchy
2018-03-06 14:19:45 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'sqlSessionFactory'
2018-03-06 14:19:45 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'lifecycleProcessor'
2018-03-06 14:19:45 DefaultSingletonBeanRegistry.java DEBUG Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@991e092: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy
2018-03-06 14:19:45 DisposableBeanAdapter.java DEBUG Invoking destroy method 'close' on bean with name 'dataSource'
2018-03-06 14:20:46 SpringJUnit4ClassRunner.java DEBUG SpringJUnit4ClassRunner constructor called with [class com.tfss.generate.mapper.test.testConfig].
2018-03-06 14:20:46 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@49a9542c declaringClass = 'com.tfss.generate.mapper.test.testConfig', locations = '{classpath:spring-mybatis.xml}', classes = '{}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
2018-03-06 14:20:46 ContextLoaderUtils.java DEBUG Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:46 TestContextManager.java DEBUG @TestExecutionListeners is not present for class [class com.tfss.generate.mapper.test.testConfig]: using defaults.
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved @ProfileValueSourceConfiguration [null] for test class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 ProfileValueUtils.java DEBUG Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.tfss.generate.mapper.test.testConfig]
2018-03-06 14:20:47 DependencyInjectionTestExecutionListener.java DEBUG Performing dependency injection for test context [[DefaultTestContext@5f0c8ac1 testClass = testConfig, testInstance = com.tfss.generate.mapper.test.testConfig@3069b5a7, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
2018-03-06 14:20:47 AbstractDelegatingSmartContextLoader.java DEBUG Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
2018-03-06 14:20:47 AbstractGenericContextLoader.java DEBUG Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@6c14ffc5 testClass = testConfig, locations = '{classpath:spring-mybatis.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2018-03-06 14:20:47 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:20:47 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:20:47 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:20:47 XmlBeanDefinitionReader.java INFO Loading XML bean definitions from class path resource [spring-mybatis.xml]
2018-03-06 14:20:47 DefaultDocumentLoader.java DEBUG Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
2018-03-06 14:20:47 PluggableSchemaResolver.java DEBUG Loading schema mappings from [META-INF/spring.schemas]
2018-03-06 14:20:47 PluggableSchemaResolver.java DEBUG Loaded schema mappings: {http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://mybatis.org/schema/mybatis-spring-1.2.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/context/spring-context-4.0.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd=org/springframework/oxm/config/spring-oxm-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd=org/springframework/jdbc/config/spring-jdbc-3.1.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-4.0.xsd=org/springframework/aop/config/spring-aop-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-4.0.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/tool/spring-tool-4.0.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-3.2.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-4.0.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-4.0.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-4.0.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://mybatis.org/schema/mybatis-spring.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/task/spring-task-4.0.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-4.0.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.2.xsd=org/springframework/oxm/config/spring-oxm-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/util/spring-util-4.0.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/oxm/spring-oxm-4.0.xsd=org/springframework/oxm/config/spring-oxm-4.0.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/oxm/spring-oxm-3.1.xsd=org/springframework/oxm/config/spring-oxm-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-4.0.xsd}
2018-03-06 14:20:47 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/beans/spring-beans-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-3.1.xsd
2018-03-06 14:20:47 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/context/spring-context-3.1.xsd] in classpath: org/springframework/context/config/spring-context-3.1.xsd
2018-03-06 14:20:47 PluggableSchemaResolver.java DEBUG Found XML schema [http://www.springframework.org/schema/tool/spring-tool-3.1.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-3.1.xsd
2018-03-06 14:20:47 DefaultBeanDefinitionDocumentReader.java DEBUG Loading bean definitions
2018-03-06 14:20:47 DefaultNamespaceHandlerResolver.java DEBUG Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/oxm=org.springframework.oxm.config.OxmNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://mybatis.org/schema/mybatis-spring=org.mybatis.spring.config.NamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
2018-03-06 14:20:47 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
2018-03-06 14:20:47 ClassPathScanningCandidateComponentProvider.java DEBUG JSR-330 'javax.inject.Named' annotation found and supported for component scanning
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils\test] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support\dao] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/**/*.class]
2018-03-06 14:20:47 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/tfss/**/*.class] to resources [file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\common\utils\test\QiniuTest.class], file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test\testConfig.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\FileType.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\FileTypeHelper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuImg.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuKeyGenerator.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuStorage.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\QiniuWrapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\storage\ThumbModel.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils\CommonUtil.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\common\utils\PropertiesUtil.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Admin.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\AdminExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Mjmiaccttyp.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\MjmiaccttypExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Picture.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\PictureExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\Product.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$Criteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$Criterion.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample$GeneratedCriteria.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductExample.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\dto\ProductKey.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\AdminMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\MjmiaccttypMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\PictureMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\ProductMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\support\dao\DataAccessManager.class]]
2018-03-06 14:20:47 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [com.tfss.support.dao.DataAccessManager#0]
2018-03-06 14:20:47 BeanDefinitionParserDelegate.java DEBUG Neither XML 'id' nor 'name' specified - using generated bean name [org.mybatis.spring.mapper.MapperScannerConfigurer#0]
2018-03-06 14:20:47 AbstractBeanDefinitionReader.java DEBUG Loaded 10 bean definitions from location pattern [classpath:spring-mybatis.xml]
2018-03-06 14:20:47 AbstractApplicationContext.java INFO Refreshing org.springframework.context.support.GenericApplicationContext@483f7574: startup date [Tue Mar 06 14:20:47 CST 2018]; root of context hierarchy
2018-03-06 14:20:47 AbstractApplicationContext.java DEBUG Bean factory for org.springframework.context.support.GenericApplicationContext@483f7574: org.springframework.beans.factory.support.DefaultListableBeanFactory@270c127d: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager]; root of factory hierarchy
2018-03-06 14:20:47 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:20:47 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:20:47 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:20:47 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:20:48 MutablePropertySources.java DEBUG Adding [systemProperties] PropertySource with lowest search precedence
2018-03-06 14:20:48 MutablePropertySources.java DEBUG Adding [systemEnvironment] PropertySource with lowest search precedence
2018-03-06 14:20:48 AbstractEnvironment.java DEBUG Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/generate/mapper/**/*.class]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/generate/mapper/**/*.class]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/classes/com/tfss/generate/mapper/**/*.class]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath*:com/tfss/generate/mapper/**/*.class] to resources [file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test\testConfig.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\AdminMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\MjmiaccttypMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\PictureMapper.class], file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\ProductMapper.class]]
2018-03-06 14:20:48 ClassPathScanningCandidateComponentProvider.java DEBUG Ignored because not a concrete top-level class: file [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper\test\testConfig.class]
2018-03-06 14:20:48 ClassPathScanningCandidateComponentProvider.java DEBUG Identified candidate component class: file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\AdminMapper.class]
2018-03-06 14:20:48 ClassPathScanningCandidateComponentProvider.java DEBUG Identified candidate component class: file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\MjmiaccttypMapper.class]
2018-03-06 14:20:48 ClassPathScanningCandidateComponentProvider.java DEBUG Identified candidate component class: file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\PictureMapper.class]
2018-03-06 14:20:48 ClassPathScanningCandidateComponentProvider.java DEBUG Identified candidate component class: file [E:\003_Code\002_Blog\workspace\kitty\target\classes\com\tfss\generate\mapper\ProductMapper.class]
2018-03-06 14:20:48 ClassPathMapperScanner.java DEBUG Creating MapperFactoryBean with name 'adminMapper' and 'com.tfss.generate.mapper.AdminMapper' mapperInterface
2018-03-06 14:20:48 ClassPathMapperScanner.java DEBUG Creating MapperFactoryBean with name 'mjmiaccttypMapper' and 'com.tfss.generate.mapper.MjmiaccttypMapper' mapperInterface
2018-03-06 14:20:48 ClassPathMapperScanner.java DEBUG Creating MapperFactoryBean with name 'pictureMapper' and 'com.tfss.generate.mapper.PictureMapper' mapperInterface
2018-03-06 14:20:48 ClassPathMapperScanner.java DEBUG Creating MapperFactoryBean with name 'productMapper' and 'com.tfss.generate.mapper.ProductMapper' mapperInterface
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'propertyConfigurer'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'propertyConfigurer'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'propertyConfigurer' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'propertyConfigurer'
2018-03-06 14:20:48 PropertiesLoaderSupport.java INFO Loading properties file from class path resource [jdbc.properties]
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:20:48 AutowiredAnnotationBeanPostProcessor.java INFO JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:20:48 AbstractApplicationContext.java DEBUG Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@48931b44]
2018-03-06 14:20:48 AbstractApplicationContext.java DEBUG Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@128d1417]
2018-03-06 14:20:48 DefaultListableBeanFactory.java DEBUG Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@270c127d: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,adminMapper,mjmiaccttypMapper,pictureMapper,productMapper]; root of factory hierarchy
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'propertyConfigurer'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'com.tfss.support.dao.DataAccessManager#0' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'com.tfss.support.dao.DataAccessManager#0'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'dataSource'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'dataSource'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'dataSource' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'dataSource'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'sqlSessionFactory'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'sqlSessionFactory'
2018-03-06 14:20:48 Slf4jImpl.java DEBUG Logging initialized using 'org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'sqlSessionFactory' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'dataSource'
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Looking for matching resources in directory tree [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Searching directory [E:\003_Code\002_Blog\workspace\kitty\target\test-classes\com\tfss\generate\mapper] for files matching pattern [E:/003_Code/002_Blog/workspace/kitty/target/test-classes/com/tfss/generate/mapper/*.xml]
2018-03-06 14:20:48 PathMatchingResourcePatternResolver.java DEBUG Resolved location pattern [classpath:com/tfss/generate/mapper/*.xml] to resources []
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'sqlSessionFactory'
2018-03-06 14:20:48 Slf4jImpl.java DEBUG Property 'configLocation' not specified, using default MyBatis Configuration
2018-03-06 14:20:48 Slf4jImpl.java DEBUG Property 'mapperLocations' was not specified or no matching resources found
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'sqlSessionFactory'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'transactionManager'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'transactionManager'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'transactionManager' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'dataSource'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'transactionManager'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Finished creating instance of bean 'transactionManager'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Creating shared instance of singleton bean 'adminMapper'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Creating instance of bean 'adminMapper'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Eagerly caching bean 'adminMapper' to allow for resolving potential circular references
2018-03-06 14:20:48 AbstractBeanFactory.java DEBUG Returning cached instance of singleton bean 'sqlSessionFactory'
2018-03-06 14:20:48 AbstractAutowireCapableBeanFactory.java DEBUG Invoking afterPropertiesSet() on bean with name 'adminMapper'
2018-03-06 14:20:48 MapperFactoryBean.java ERROR Error while adding the mapper 'interface com.tfss.generate.mapper.AdminMapper' to configuration.
java.lang.RuntimeException: Error parsing Mapper XML. Cause: org.apache.ibatis.builder.BuilderException: Wrong namespace. Expected 'com.tfss.generate.mapper.AdminMapper' but found 'com.px.generate.mapper.AdminMapper'.
at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:113)
at org.apache.ibatis.builder.xml.XMLMapperBuilder.parse(XMLMapperBuilder.java:88)
at org.apache.ibatis.builder.annotation.MapperAnnotationBuilder.loadXmlResource(MapperAnnotationBuilder.java:138)
at org.apache.ibatis.builder.annotation.MapperAnnotationBuilder.parse(MapperAnnotationBuilder.java:111)
at org.apache.ibatis.binding.MapperRegistry.addMapper(MapperRegistry.java:60)
at org.apache.ibatis.session.Configuration.addMapper(Configuration.java:532)
at org.mybatis.spring.mapper.MapperFactoryBean.checkDaoConfig(MapperFactoryBean.java:97)
at org.springframework.dao.support.DaoSupport.afterPropertiesSet(DaoSupport.java:44)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1612)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1549)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:539)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:475)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:304)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:300)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:195)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:681)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:760)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:482)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:121)
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:60)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading(AbstractDelegatingSmartContextLoader.java:100)
at org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.loadContext(AbstractDelegatingSmartContextLoader.java:250)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContextInternal(CacheAwareContextLoaderDelegate.java:64)
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:91)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: org.apache.ibatis.builder.BuilderException: Wrong namespace. Expected 'com.tfss.generate.mapper.AdminMapper' but found 'com.px.generate.mapper.AdminMapper'.
at org.apache.ibatis.builder.MapperBuilderAssistant.setCurrentNamespace(MapperBuilderAssistant.java:73)
at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:105)
... 49 more
2018-03-06 14:20:48 DefaultSingletonBeanRegistry.java DEBUG Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@270c127d: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,propertyConfigurer,com.tfss.support.dao.DataAccessManager#0,dataSource,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,transactionManager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,adminMapper,mjmiaccttypMapper,pictureMapper,productMapper]; root of factory hierarchy
2018-03-06 14:20:48 DisposableBeanAdapter.java DEBUG Invoking destroy method 'close' on bean with name 'dataSource'
2018-03-06 14:20:48 TestContextManager.java ERROR Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5caba5b9] to prepare test instance [com.tfss.generate.mapper.test.testConfig@3069b5a7]
java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.CacheAwareContextLoaderDelegate.loadContext(CacheAwareContextLoaderDelegate.java:99)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:101)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:319)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:212)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:289)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:291)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)