forked from bz51/SpringBoot-Dubbo-Docker-Jenkins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.log
1982 lines (1934 loc) · 405 KB
/
log.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
2017-10-27 22:30:41.408 INFO 5160 --- [main] c.a.dubbo.common.logger.LoggerFactory : using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
2017-10-27 22:30:41.459 INFO 5160 --- [main] GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 5160 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-10-27 22:30:41.460 INFO 5160 --- [main] GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-10-27 22:30:41.580 INFO 5160 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@c540f5a: startup date [Fri Oct 27 22:30:41 CST 2017]; root of context hierarchy
2017-10-27 22:30:43.140 WARN 5160 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.gaoxicommonservicefacade, com.gaoxi]' package. Please check your configuration.
2017-10-27 22:30:44.114 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat' of type [org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$a0db3bcb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.123 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$ed57f8af] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.231 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration' of type [org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration$$EnhancerBySpringCGLIB$$1c2a78d8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.241 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'websocketContainerCustomizer' of type [org.springframework.boot.autoconfigure.websocket.TomcatWebSocketContainerCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.357 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties' of type [org.springframework.boot.autoconfigure.web.HttpEncodingProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.363 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$c4445f5a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.371 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'localeCharsetMappingsCustomizer' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$LocaleCharsetMappingsCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.377 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$$EnhancerBySpringCGLIB$$a3ad747f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.404 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'serverProperties' of type [org.springframework.boot.autoconfigure.web.ServerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.408 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'duplicateServerPropertiesDetector' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$DuplicateServerPropertiesDetector] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.422 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' of type [org.springframework.boot.autoconfigure.web.ResourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.427 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$aff00c03] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.436 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'conventionErrorViewResolver' of type [org.springframework.boot.autoconfigure.web.DefaultErrorViewResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.446 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$a35302a3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.455 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'errorPageCustomizer' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$ErrorPageCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.456 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'tomcatEmbeddedServletContainerFactory' of type [org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.762 INFO 5160 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-10-27 22:30:44.777 INFO 5160 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-10-27 22:30:44.778 INFO 5160 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-10-27 22:30:44.884 INFO 5160 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-10-27 22:30:44.885 INFO 5160 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3309 ms
2017-10-27 22:30:44.922 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties' of type [org.springframework.boot.autoconfigure.web.WebMvcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.934 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties' of type [org.springframework.boot.autoconfigure.web.MultipartProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.944 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$a805abf5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.962 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'multipartConfigElement' of type [javax.servlet.MultipartConfigElement] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.970 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$ead3728] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:44.984 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$93bda801] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.080 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServlet' of type [org.springframework.web.servlet.DispatcherServlet] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.089 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServletRegistration' of type [org.springframework.boot.web.servlet.ServletRegistrationBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.102 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'requestContextFilter' of type [org.springframework.boot.web.filter.OrderedRequestContextFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.108 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$$EnhancerBySpringCGLIB$$5c94e1ef] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.120 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'hiddenHttpMethodFilter' of type [org.springframework.boot.web.filter.OrderedHiddenHttpMethodFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.131 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'httpPutFormContentFilter' of type [org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.140 INFO 5160 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'characterEncodingFilter' of type [org.springframework.boot.web.filter.OrderedCharacterEncodingFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.147 INFO 5160 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-10-27 22:30:45.163 INFO 5160 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-10-27 22:30:45.164 INFO 5160 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-10-27 22:30:45.164 INFO 5160 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-10-27 22:30:45.164 INFO 5160 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-10-27 22:30:45.220 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'gaoxiControllerApplication' of type [GaoxiControllerApplication$$EnhancerBySpringCGLIB$$183c6df7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.487 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.dubbo-io.dubbo.springboot.DubboProperties' of type [io.dubbo.springboot.DubboProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.489 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'io.dubbo.springboot.DubboAutoConfiguration' of type [io.dubbo.springboot.DubboAutoConfiguration$$EnhancerBySpringCGLIB$$580298f4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.496 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestApplicationConfig' of type [com.alibaba.dubbo.config.ApplicationConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.502 INFO 5160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestRegistryConfig' of type [com.alibaba.dubbo.config.RegistryConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-27 22:30:45.583 INFO 5160 --- [ZkClient-EventThread-37-172.17.0.11:2181] org.I0Itec.zkclient.ZkEventThread : Starting ZkClient event thread.
2017-10-27 22:30:45.587 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT
2017-10-27 22:30:45.588 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:host.name=192.168.4.74
2017-10-27 22:30:45.588 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.version=1.8.0_40
2017-10-27 22:30:45.588 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.vendor=Oracle Corporation
2017-10-27 22:30:45.588 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre
2017-10-27 22:30:45.589 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/tools.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.8.RELEASE/spring-boot-starter-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot/1.5.8.RELEASE/spring-boot-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-context/4.3.12.RELEASE/spring-context-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.8.RELEASE/spring-boot-autoconfigure-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.8.RELEASE/spring-boot-starter-logging-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.jar:/Users/chibozhou/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-core/4.3.12.RELEASE/spring-core-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.8.RELEASE/spring-boot-starter-web-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.8.RELEASE/spring-boot-starter-tomcat-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.23/tomcat-embed-core-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-annotations-api/8.5.23/tomcat-annotations-api-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.23/tomcat-embed-el-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.23/tomcat-embed-websocket-8.5.23.jar:/Users/chibozhou/.m2/repository/org/hibernate/hibernate-validator/5.3.5.Final/hibernate-validator-5.3.5.Final.jar:/Users/chibozhou/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/chibozhou/.m2/repository/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.jar:/Users/chibozhou/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.10/jackson-databind-2.8.10.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.10/jackson-core-2.8.10.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-web/4.3.12.RELEASE/spring-web-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-aop/4.3.12.RELEASE/spring-aop-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-beans/4.3.12.RELEASE/spring-beans-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-webmvc/4.3.12.RELEASE/spring-webmvc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-expression/4.3.12.RELEASE/spring-expression-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/chibozhou/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/chibozhou/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.1/mybatis-spring-boot-starter-1.3.1.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/1.5.8.RELEASE/spring-boot-starter-jdbc-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-jdbc/8.5.23/tomcat-jdbc-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-juli/8.5.23/tomcat-juli-8.5.23.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-jdbc/4.3.12.RELEASE/spring-jdbc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-tx/4.3.12.RELEASE/spring-tx-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.1/mybatis-spring-boot-autoconfigure-1.3.1.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar:/Users/chibozhou/.m2/repository/mysql/mysql-connector-java/5.1.44/mysql-connector-java-5.1.44.jar:/Users/chibozhou/.m2/repository/io/dubbo/springboot/spring-boot-starter-dubbo/1.0.0/spring-boot-starter-dubbo-1.0.0.jar:/Users/chibozhou/.m2/repository/com/alibaba/dubbo/2.5.3/dubbo-2.5.3.jar:/Users/chibozhou/.m2/repository/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar:/Users/chibozhou/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/chibozhou/.m2/repository/com/101tec/zkclient/0.7/zkclient-0.7.jar:/Users/chibozhou/.m2/repository/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.jar:/Users/chibozhou/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/chibozhou/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Common-Service-Facade/target/classes:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar
2017-10-27 22:30:45.589 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.library.path=/Users/chibozhou/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
2017-10-27 22:30:45.589 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.io.tmpdir=/var/folders/tc/llq6h3ks0pdb79cn0g5m8pk80000gn/T/
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.compiler=<NA>
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.name=Mac OS X
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.arch=x86_64
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.version=10.12.4
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.name=chibozhou
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.home=/Users/chibozhou
2017-10-27 22:30:45.590 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.dir=/Users/chibozhou/IdeaProjects/Gaoxi
2017-10-27 22:30:45.591 INFO 5160 --- [main] org.apache.zookeeper.ZooKeeper : Initiating client connection, connectString=172.17.0.11:2181 sessionTimeout=30000 watcher=org.I0Itec.zkclient.ZkClient@6b530eb9
2017-10-27 22:30:45.604 INFO 5160 --- [main] org.I0Itec.zkclient.ZkClient : Waiting for keeper state SyncConnected
2017-10-27 22:30:45.607 INFO 5160 --- [main-SendThread(172.17.0.11:2181)] org.apache.zookeeper.ClientCnxn : Opening socket connection to server 172.17.0.11/172.17.0.11:2181. Will not attempt to authenticate using SASL (unknown error)
2017-10-27 22:31:10.991 INFO 5160 --- [DubboShutdownHook] com.alibaba.dubbo.config.AbstractConfig : [DUBBO] Run shutdown hook now., dubbo version: 2.5.3, current host: 127.0.0.1
2017-10-27 22:31:10.992 INFO 5160 --- [DubboShutdownHook] c.a.d.r.support.AbstractRegistryFactory : [DUBBO] Close all registries [], dubbo version: 2.5.3, current host: 127.0.0.1
2017-11-01 13:11:00.892 INFO 1066 --- [main] c.a.dubbo.common.logger.LoggerFactory : using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
2017-11-01 13:11:00.980 INFO 1066 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1066 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:11:00.981 INFO 1066 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:11:01.226 INFO 1066 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Wed Nov 01 13:11:01 CST 2017]; root of context hierarchy
2017-11-01 13:11:03.079 WARN 1066 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:11:03.943 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$1f149084] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.079 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat' of type [org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$d297d3a0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.170 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration' of type [org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration$$EnhancerBySpringCGLIB$$4de710ad] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.181 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'websocketContainerCustomizer' of type [org.springframework.boot.autoconfigure.websocket.TomcatWebSocketContainerCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.284 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties' of type [org.springframework.boot.autoconfigure.web.HttpEncodingProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.290 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$f600f72f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.298 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'localeCharsetMappingsCustomizer' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$LocaleCharsetMappingsCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.302 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$$EnhancerBySpringCGLIB$$d56a0c54] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.323 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'serverProperties' of type [org.springframework.boot.autoconfigure.web.ServerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.333 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'duplicateServerPropertiesDetector' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$DuplicateServerPropertiesDetector] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.374 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' of type [org.springframework.boot.autoconfigure.web.ResourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.380 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$e1aca3d8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.401 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'conventionErrorViewResolver' of type [org.springframework.boot.autoconfigure.web.DefaultErrorViewResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.424 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$d50f9a78] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.435 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'errorPageCustomizer' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$ErrorPageCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.437 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'tomcatEmbeddedServletContainerFactory' of type [org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:04.917 INFO 1066 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:11:04.955 INFO 1066 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:11:04.957 INFO 1066 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:11:05.119 INFO 1066 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:11:05.119 INFO 1066 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3925 ms
2017-11-01 13:11:05.148 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties' of type [org.springframework.boot.autoconfigure.web.WebMvcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.159 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties' of type [org.springframework.boot.autoconfigure.web.MultipartProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.165 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$d9c243ca] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.172 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'multipartConfigElement' of type [javax.servlet.MultipartConfigElement] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.177 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$4069cefd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.185 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$c57a3fd6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.228 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServlet' of type [org.springframework.web.servlet.DispatcherServlet] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.245 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServletRegistration' of type [org.springframework.boot.web.servlet.ServletRegistrationBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.261 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'requestContextFilter' of type [org.springframework.boot.web.filter.OrderedRequestContextFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.267 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$$EnhancerBySpringCGLIB$$8e5179c4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.279 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'hiddenHttpMethodFilter' of type [org.springframework.boot.web.filter.OrderedHiddenHttpMethodFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.289 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'httpPutFormContentFilter' of type [org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.297 INFO 1066 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'characterEncodingFilter' of type [org.springframework.boot.web.filter.OrderedCharacterEncodingFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.305 INFO 1066 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:11:05.310 INFO 1066 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:11:05.310 INFO 1066 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:11:05.311 INFO 1066 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:11:05.311 INFO 1066 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:11:05.430 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'gaoxiControllerApplication' of type [com.gaoxi.GaoxiControllerApplication$$EnhancerBySpringCGLIB$$49f905cc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.740 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.dubbo-io.dubbo.springboot.DubboProperties' of type [io.dubbo.springboot.DubboProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.742 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'io.dubbo.springboot.DubboAutoConfiguration' of type [io.dubbo.springboot.DubboAutoConfiguration$$EnhancerBySpringCGLIB$$89bf30c9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.750 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestApplicationConfig' of type [com.alibaba.dubbo.config.ApplicationConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.758 INFO 1066 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestRegistryConfig' of type [com.alibaba.dubbo.config.RegistryConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:05.888 INFO 1066 --- [ZkClient-EventThread-42-172.17.0.2:2181] org.I0Itec.zkclient.ZkEventThread : Starting ZkClient event thread.
2017-11-01 13:11:05.909 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT
2017-11-01 13:11:05.910 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:host.name=192.168.1.123
2017-11-01 13:11:05.910 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.version=1.8.0_40
2017-11-01 13:11:05.910 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.vendor=Oracle Corporation
2017-11-01 13:11:05.910 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre
2017-11-01 13:11:05.910 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/tools.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.8.RELEASE/spring-boot-starter-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot/1.5.8.RELEASE/spring-boot-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-context/4.3.12.RELEASE/spring-context-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.8.RELEASE/spring-boot-autoconfigure-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.8.RELEASE/spring-boot-starter-logging-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.jar:/Users/chibozhou/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-core/4.3.12.RELEASE/spring-core-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.8.RELEASE/spring-boot-starter-web-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.8.RELEASE/spring-boot-starter-tomcat-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.23/tomcat-embed-core-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-annotations-api/8.5.23/tomcat-annotations-api-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.23/tomcat-embed-el-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.23/tomcat-embed-websocket-8.5.23.jar:/Users/chibozhou/.m2/repository/org/hibernate/hibernate-validator/5.3.5.Final/hibernate-validator-5.3.5.Final.jar:/Users/chibozhou/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/chibozhou/.m2/repository/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.jar:/Users/chibozhou/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.10/jackson-databind-2.8.10.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.10/jackson-core-2.8.10.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-web/4.3.12.RELEASE/spring-web-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-beans/4.3.12.RELEASE/spring-beans-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-webmvc/4.3.12.RELEASE/spring-webmvc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-expression/4.3.12.RELEASE/spring-expression-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/chibozhou/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/chibozhou/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.1/mybatis-spring-boot-starter-1.3.1.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/1.5.8.RELEASE/spring-boot-starter-jdbc-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-jdbc/8.5.23/tomcat-jdbc-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-juli/8.5.23/tomcat-juli-8.5.23.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-jdbc/4.3.12.RELEASE/spring-jdbc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-tx/4.3.12.RELEASE/spring-tx-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.1/mybatis-spring-boot-autoconfigure-1.3.1.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar:/Users/chibozhou/.m2/repository/mysql/mysql-connector-java/5.1.44/mysql-connector-java-5.1.44.jar:/Users/chibozhou/.m2/repository/io/dubbo/springboot/spring-boot-starter-dubbo/1.0.0/spring-boot-starter-dubbo-1.0.0.jar:/Users/chibozhou/.m2/repository/com/alibaba/dubbo/2.5.3/dubbo-2.5.3.jar:/Users/chibozhou/.m2/repository/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar:/Users/chibozhou/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/chibozhou/.m2/repository/com/101tec/zkclient/0.7/zkclient-0.7.jar:/Users/chibozhou/.m2/repository/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.jar:/Users/chibozhou/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/chibozhou/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Common-Service-Facade/target/classes:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-aop/1.5.8.RELEASE/spring-boot-starter-aop-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-aop/4.3.12.RELEASE/spring-aop-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/aspectj/aspectjweaver/1.8.11/aspectjweaver-1.8.11.jar:/Users/chibozhou/.m2/repository/com/google/guava/guava/23.3-jre/guava-23.3-jre.jar:/Users/chibozhou/.m2/repository/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar:/Users/chibozhou/.m2/repository/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar:/Users/chibozhou/.m2/repository/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar:/Users/chibozhou/.m2/repository/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.library.path=/Users/chibozhou/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.io.tmpdir=/var/folders/tc/llq6h3ks0pdb79cn0g5m8pk80000gn/T/
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.compiler=<NA>
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.name=Mac OS X
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.arch=x86_64
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.version=10.12.4
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.name=chibozhou
2017-11-01 13:11:05.911 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.home=/Users/chibozhou
2017-11-01 13:11:05.912 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.dir=/Users/chibozhou/IdeaProjects/Gaoxi
2017-11-01 13:11:05.913 INFO 1066 --- [main] org.apache.zookeeper.ZooKeeper : Initiating client connection, connectString=172.17.0.2:2181 sessionTimeout=30000 watcher=org.I0Itec.zkclient.ZkClient@6a84bc2a
2017-11-01 13:11:05.930 INFO 1066 --- [main] org.I0Itec.zkclient.ZkClient : Waiting for keeper state SyncConnected
2017-11-01 13:11:05.964 INFO 1066 --- [main-SendThread(172.17.0.2:2181)] org.apache.zookeeper.ClientCnxn : Opening socket connection to server 172.17.0.2/172.17.0.2:2181. Will not attempt to authenticate using SASL (unknown error)
2017-11-01 13:11:09.799 INFO 1066 --- [DubboShutdownHook] com.alibaba.dubbo.config.AbstractConfig : [DUBBO] Run shutdown hook now., dubbo version: 2.5.3, current host: 127.0.0.1
2017-11-01 13:11:09.800 INFO 1066 --- [DubboShutdownHook] c.a.d.r.support.AbstractRegistryFactory : [DUBBO] Close all registries [], dubbo version: 2.5.3, current host: 127.0.0.1
2017-11-01 13:11:21.094 INFO 1072 --- [main] c.a.dubbo.common.logger.LoggerFactory : using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
2017-11-01 13:11:21.115 INFO 1072 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1072 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:11:21.116 INFO 1072 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:11:21.304 INFO 1072 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:11:21 CST 2017]; root of context hierarchy
2017-11-01 13:11:22.418 WARN 1072 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:11:23.089 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8fe083f8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.211 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat' of type [org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$4363c714] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.247 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration' of type [org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration$$EnhancerBySpringCGLIB$$beb30421] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.256 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'websocketContainerCustomizer' of type [org.springframework.boot.autoconfigure.websocket.TomcatWebSocketContainerCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.323 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties' of type [org.springframework.boot.autoconfigure.web.HttpEncodingProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.329 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$66cceaa3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.336 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'localeCharsetMappingsCustomizer' of type [org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration$LocaleCharsetMappingsCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.341 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$$EnhancerBySpringCGLIB$$4635ffc8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.370 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'serverProperties' of type [org.springframework.boot.autoconfigure.web.ServerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.389 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'duplicateServerPropertiesDetector' of type [org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$DuplicateServerPropertiesDetector] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.412 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' of type [org.springframework.boot.autoconfigure.web.ResourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.421 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$5278974c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.438 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'conventionErrorViewResolver' of type [org.springframework.boot.autoconfigure.web.DefaultErrorViewResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.453 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$45db8dec] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.468 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'errorPageCustomizer' of type [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$ErrorPageCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.470 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'tomcatEmbeddedServletContainerFactory' of type [org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.689 INFO 1072 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:11:23.710 INFO 1072 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:11:23.711 INFO 1072 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:11:23.810 INFO 1072 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:11:23.810 INFO 1072 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2512 ms
2017-11-01 13:11:23.830 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties' of type [org.springframework.boot.autoconfigure.web.WebMvcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.840 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties' of type [org.springframework.boot.autoconfigure.web.MultipartProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.846 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$4a8e373e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.853 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'multipartConfigElement' of type [javax.servlet.MultipartConfigElement] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.858 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$b135c271] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.870 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' of type [org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$3646334a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.899 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServlet' of type [org.springframework.web.servlet.DispatcherServlet] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.920 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'dispatcherServletRegistration' of type [org.springframework.boot.web.servlet.ServletRegistrationBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.938 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'requestContextFilter' of type [org.springframework.boot.web.filter.OrderedRequestContextFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.947 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration' of type [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$$EnhancerBySpringCGLIB$$ff1d6d38] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.961 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'hiddenHttpMethodFilter' of type [org.springframework.boot.web.filter.OrderedHiddenHttpMethodFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.984 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'httpPutFormContentFilter' of type [org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:23.999 INFO 1072 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'characterEncodingFilter' of type [org.springframework.boot.web.filter.OrderedCharacterEncodingFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.009 INFO 1072 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:11:24.016 INFO 1072 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:11:24.017 INFO 1072 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:11:24.017 INFO 1072 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:11:24.017 INFO 1072 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:11:24.056 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'gaoxiControllerApplication' of type [com.gaoxi.GaoxiControllerApplication$$EnhancerBySpringCGLIB$$bac4f940] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.311 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.dubbo-io.dubbo.springboot.DubboProperties' of type [io.dubbo.springboot.DubboProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.312 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'io.dubbo.springboot.DubboAutoConfiguration' of type [io.dubbo.springboot.DubboAutoConfiguration$$EnhancerBySpringCGLIB$$fa8b243d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.318 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestApplicationConfig' of type [com.alibaba.dubbo.config.ApplicationConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.324 INFO 1072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'requestRegistryConfig' of type [com.alibaba.dubbo.config.RegistryConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-11-01 13:11:24.392 INFO 1072 --- [ZkClient-EventThread-34-172.17.0.2:2181] org.I0Itec.zkclient.ZkEventThread : Starting ZkClient event thread.
2017-11-01 13:11:24.395 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:host.name=192.168.1.123
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.version=1.8.0_40
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.vendor=Oracle Corporation
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/lib/tools.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.8.RELEASE/spring-boot-starter-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot/1.5.8.RELEASE/spring-boot-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-context/4.3.12.RELEASE/spring-context-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.8.RELEASE/spring-boot-autoconfigure-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.8.RELEASE/spring-boot-starter-logging-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.jar:/Users/chibozhou/.m2/repository/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.jar:/Users/chibozhou/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-core/4.3.12.RELEASE/spring-core-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.8.RELEASE/spring-boot-starter-web-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.8.RELEASE/spring-boot-starter-tomcat-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.23/tomcat-embed-core-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-annotations-api/8.5.23/tomcat-annotations-api-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.23/tomcat-embed-el-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.23/tomcat-embed-websocket-8.5.23.jar:/Users/chibozhou/.m2/repository/org/hibernate/hibernate-validator/5.3.5.Final/hibernate-validator-5.3.5.Final.jar:/Users/chibozhou/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/chibozhou/.m2/repository/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.jar:/Users/chibozhou/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.10/jackson-databind-2.8.10.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar:/Users/chibozhou/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.10/jackson-core-2.8.10.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-web/4.3.12.RELEASE/spring-web-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-beans/4.3.12.RELEASE/spring-beans-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-webmvc/4.3.12.RELEASE/spring-webmvc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-expression/4.3.12.RELEASE/spring-expression-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/chibozhou/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/chibozhou/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.1/mybatis-spring-boot-starter-1.3.1.jar:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/1.5.8.RELEASE/spring-boot-starter-jdbc-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-jdbc/8.5.23/tomcat-jdbc-8.5.23.jar:/Users/chibozhou/.m2/repository/org/apache/tomcat/tomcat-juli/8.5.23/tomcat-juli-8.5.23.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-jdbc/4.3.12.RELEASE/spring-jdbc-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-tx/4.3.12.RELEASE/spring-tx-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.1/mybatis-spring-boot-autoconfigure-1.3.1.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar:/Users/chibozhou/.m2/repository/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar:/Users/chibozhou/.m2/repository/mysql/mysql-connector-java/5.1.44/mysql-connector-java-5.1.44.jar:/Users/chibozhou/.m2/repository/io/dubbo/springboot/spring-boot-starter-dubbo/1.0.0/spring-boot-starter-dubbo-1.0.0.jar:/Users/chibozhou/.m2/repository/com/alibaba/dubbo/2.5.3/dubbo-2.5.3.jar:/Users/chibozhou/.m2/repository/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar:/Users/chibozhou/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/chibozhou/.m2/repository/com/101tec/zkclient/0.7/zkclient-0.7.jar:/Users/chibozhou/.m2/repository/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.jar:/Users/chibozhou/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/chibozhou/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Common-Service-Facade/target/classes:/Users/chibozhou/.m2/repository/org/springframework/boot/spring-boot-starter-aop/1.5.8.RELEASE/spring-boot-starter-aop-1.5.8.RELEASE.jar:/Users/chibozhou/.m2/repository/org/springframework/spring-aop/4.3.12.RELEASE/spring-aop-4.3.12.RELEASE.jar:/Users/chibozhou/.m2/repository/org/aspectj/aspectjweaver/1.8.11/aspectjweaver-1.8.11.jar:/Users/chibozhou/.m2/repository/com/google/guava/guava/23.3-jre/guava-23.3-jre.jar:/Users/chibozhou/.m2/repository/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar:/Users/chibozhou/.m2/repository/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar:/Users/chibozhou/.m2/repository/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar:/Users/chibozhou/.m2/repository/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.library.path=/Users/chibozhou/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.io.tmpdir=/var/folders/tc/llq6h3ks0pdb79cn0g5m8pk80000gn/T/
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:java.compiler=<NA>
2017-11-01 13:11:24.396 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.name=Mac OS X
2017-11-01 13:11:24.397 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.arch=x86_64
2017-11-01 13:11:24.397 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:os.version=10.12.4
2017-11-01 13:11:24.398 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.name=chibozhou
2017-11-01 13:11:24.398 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.home=/Users/chibozhou
2017-11-01 13:11:24.398 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Client environment:user.dir=/Users/chibozhou/IdeaProjects/Gaoxi
2017-11-01 13:11:24.399 INFO 1072 --- [main] org.apache.zookeeper.ZooKeeper : Initiating client connection, connectString=172.17.0.2:2181 sessionTimeout=30000 watcher=org.I0Itec.zkclient.ZkClient@4905c46b
2017-11-01 13:11:24.412 INFO 1072 --- [main] org.I0Itec.zkclient.ZkClient : Waiting for keeper state SyncConnected
2017-11-01 13:11:24.415 INFO 1072 --- [main-SendThread(172.17.0.2:2181)] org.apache.zookeeper.ClientCnxn : Opening socket connection to server 172.17.0.2/172.17.0.2:2181. Will not attempt to authenticate using SASL (unknown error)
2017-11-01 13:11:54.443 INFO 1072 --- [main-SendThread(172.17.0.2:2181)] org.apache.zookeeper.ClientCnxn : Client session timed out, have not heard from server in 30030ms for sessionid 0x0, closing socket connection and attempting reconnect
2017-11-01 13:11:55.554 INFO 1072 --- [main-SendThread(172.17.0.2:2181)] org.apache.zookeeper.ClientCnxn : Opening socket connection to server 172.17.0.2/172.17.0.2:2181. Will not attempt to authenticate using SASL (unknown error)
2017-11-01 13:12:18.511 INFO 1072 --- [DubboShutdownHook] com.alibaba.dubbo.config.AbstractConfig : [DUBBO] Run shutdown hook now., dubbo version: 2.5.3, current host: 127.0.0.1
2017-11-01 13:12:18.511 INFO 1072 --- [DubboShutdownHook] c.a.d.r.support.AbstractRegistryFactory : [DUBBO] Close all registries [], dubbo version: 2.5.3, current host: 127.0.0.1
2017-11-01 13:12:26.914 INFO 1081 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1081 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:12:26.917 INFO 1081 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:12:27.014 INFO 1081 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:12:27 CST 2017]; root of context hierarchy
2017-11-01 13:12:28.196 WARN 1081 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:12:29.396 INFO 1081 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:12:29.409 INFO 1081 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:12:29.410 INFO 1081 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:12:29.488 INFO 1081 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:12:29.489 INFO 1081 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2480 ms
2017-11-01 13:12:29.640 INFO 1081 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:12:29.645 INFO 1081 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:12:29.646 INFO 1081 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:12:29.647 INFO 1081 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:12:29.647 INFO 1081 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:12:30.200 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:12:27 CST 2017]; root of context hierarchy
2017-11-01 13:12:30.277 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:12:30.279 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:12:30.288 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:12:30.289 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:12:30.290 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:12:30.290 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:12:30.291 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:12:30.291 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:12:30.291 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:12:30.292 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:12:30.292 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:12:30.293 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:12:30.297 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:12:30.298 INFO 1081 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:12:30.325 INFO 1081 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:12:30.336 INFO 1081 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:12:30.336 INFO 1081 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:12:30.363 INFO 1081 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:12:30.400 INFO 1081 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:12:31.255 INFO 1081 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:12:31.435 INFO 1081 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:12:31.440 INFO 1081 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.954 seconds (JVM running for 5.861)
2017-11-01 13:12:59.347 INFO 1081 --- [Thread-14] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:12:27 CST 2017]; root of context hierarchy
2017-11-01 13:12:59.350 INFO 1081 --- [Thread-14] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:13:30.008 INFO 1086 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1086 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:13:30.014 INFO 1086 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:13:30.173 INFO 1086 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7975d1d8: startup date [Wed Nov 01 13:13:30 CST 2017]; root of context hierarchy
2017-11-01 13:13:31.054 WARN 1086 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:13:32.172 INFO 1086 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:13:32.186 INFO 1086 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:13:32.187 INFO 1086 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:13:32.272 INFO 1086 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:13:32.272 INFO 1086 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2109 ms
2017-11-01 13:13:32.487 INFO 1086 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:13:32.498 INFO 1086 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:13:32.499 INFO 1086 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:13:32.499 INFO 1086 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:13:32.499 INFO 1086 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:13:33.102 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7975d1d8: startup date [Wed Nov 01 13:13:30 CST 2017]; root of context hierarchy
2017-11-01 13:13:33.203 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:13:33.206 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:13:33.217 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:13:33.218 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:13:33.218 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:13:33.219 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:13:33.219 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:13:33.219 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:13:33.219 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:13:33.220 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:13:33.220 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:13:33.221 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:13:33.224 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:13:33.224 INFO 1086 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:13:33.261 INFO 1086 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:13:33.277 INFO 1086 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:13:33.277 INFO 1086 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:13:33.302 INFO 1086 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:13:33.342 INFO 1086 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:13:34.162 INFO 1086 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:13:34.239 INFO 1086 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:13:34.245 INFO 1086 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.615 seconds (JVM running for 6.786)
2017-11-01 13:14:24.534 INFO 1086 --- [Thread-14] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7975d1d8: startup date [Wed Nov 01 13:13:30 CST 2017]; root of context hierarchy
2017-11-01 13:14:24.538 INFO 1086 --- [Thread-14] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:14:32.564 INFO 1091 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1091 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:14:32.569 INFO 1091 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:14:32.656 INFO 1091 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:14:32 CST 2017]; root of context hierarchy
2017-11-01 13:14:33.771 WARN 1091 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:14:34.958 INFO 1091 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:14:34.971 INFO 1091 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:14:34.972 INFO 1091 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:14:35.052 INFO 1091 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:14:35.052 INFO 1091 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2401 ms
2017-11-01 13:14:35.217 INFO 1091 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:14:35.222 INFO 1091 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:14:35.223 INFO 1091 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:14:35.223 INFO 1091 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:14:35.223 INFO 1091 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:14:35.646 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:14:32 CST 2017]; root of context hierarchy
2017-11-01 13:14:35.698 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:14:35.700 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:14:35.710 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:14:35.711 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:14:35.711 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:14:35.712 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:14:35.712 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:14:35.712 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:14:35.712 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:14:35.713 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:14:35.713 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:14:35.714 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:14:35.716 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:14:35.716 INFO 1091 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:14:35.742 INFO 1091 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:14:35.752 INFO 1091 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:14:35.753 INFO 1091 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:14:35.772 INFO 1091 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:14:35.793 INFO 1091 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:14:36.347 INFO 1091 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:14:36.413 INFO 1091 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:14:36.420 INFO 1091 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.242 seconds (JVM running for 5.04)
2017-11-01 13:16:58.768 INFO 1091 --- [Thread-12] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:14:32 CST 2017]; root of context hierarchy
2017-11-01 13:16:58.771 INFO 1091 --- [Thread-12] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:17:05.457 INFO 1098 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1098 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:17:05.463 INFO 1098 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:17:05.563 INFO 1098 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:17:05 CST 2017]; root of context hierarchy
2017-11-01 13:17:06.742 WARN 1098 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:17:08.199 INFO 1098 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:17:08.215 INFO 1098 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:17:08.217 INFO 1098 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:17:08.313 INFO 1098 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:17:08.314 INFO 1098 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2757 ms
2017-11-01 13:17:08.529 INFO 1098 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:17:08.536 INFO 1098 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:17:08.537 INFO 1098 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:17:08.537 INFO 1098 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:17:08.537 INFO 1098 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:17:08.987 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:17:05 CST 2017]; root of context hierarchy
2017-11-01 13:17:09.039 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:17:09.042 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:17:09.052 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:17:09.052 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:17:09.053 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:17:09.053 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:17:09.053 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:17:09.053 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:17:09.054 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:17:09.054 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:17:09.055 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:17:09.055 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:17:09.058 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:17:09.059 INFO 1098 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:17:09.087 INFO 1098 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:17:09.098 INFO 1098 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:09.099 INFO 1098 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:09.117 INFO 1098 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:17:09.139 INFO 1098 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:09.733 INFO 1098 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:17:09.803 INFO 1098 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:17:09.811 INFO 1098 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.771 seconds (JVM running for 5.702)
2017-11-01 13:17:14.809 INFO 1098 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Wed Nov 01 13:17:05 CST 2017]; root of context hierarchy
2017-11-01 13:17:14.813 INFO 1098 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:17:34.550 INFO 1102 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1102 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:17:34.556 INFO 1102 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:17:34.680 INFO 1102 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:17:34 CST 2017]; root of context hierarchy
2017-11-01 13:17:35.655 WARN 1102 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:17:36.904 INFO 1102 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:17:36.920 INFO 1102 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:17:36.922 INFO 1102 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:17:37.039 INFO 1102 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:17:37.039 INFO 1102 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2366 ms
2017-11-01 13:17:37.345 INFO 1102 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:17:37.354 INFO 1102 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:17:37.355 INFO 1102 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:17:37.355 INFO 1102 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:17:37.356 INFO 1102 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:17:38.193 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:17:34 CST 2017]; root of context hierarchy
2017-11-01 13:17:38.270 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:17:38.273 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:17:38.284 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:17:38.285 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:17:38.285 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:17:38.286 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:17:38.286 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:17:38.286 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:17:38.287 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:17:38.287 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:17:38.287 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:17:38.287 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:17:38.290 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:17:38.291 INFO 1102 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:17:38.328 INFO 1102 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:17:38.344 INFO 1102 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:38.344 INFO 1102 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:38.368 INFO 1102 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:17:38.398 INFO 1102 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:17:39.311 INFO 1102 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:17:39.388 INFO 1102 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:19:06.363 INFO 1102 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 92.234 seconds (JVM running for 93.126)
2017-11-01 13:19:36.242 INFO 1102 --- [Thread-15] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:17:34 CST 2017]; root of context hierarchy
2017-11-01 13:19:36.246 INFO 1102 --- [Thread-15] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:19:53.655 INFO 1107 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1107 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:19:53.658 INFO 1107 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:19:53.723 INFO 1107 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:19:53 CST 2017]; root of context hierarchy
2017-11-01 13:19:54.467 WARN 1107 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:19:55.590 INFO 1107 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:19:55.604 INFO 1107 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:19:55.605 INFO 1107 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:19:55.700 INFO 1107 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:19:55.700 INFO 1107 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1982 ms
2017-11-01 13:19:55.889 INFO 1107 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:19:55.895 INFO 1107 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:19:55.896 INFO 1107 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:19:55.896 INFO 1107 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:19:55.896 INFO 1107 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:19:56.436 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:19:53 CST 2017]; root of context hierarchy
2017-11-01 13:19:56.513 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:19:56.516 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:19:56.526 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:19:56.527 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:19:56.527 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:19:56.527 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:19:56.528 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:19:56.528 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:19:56.528 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:19:56.528 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:19:56.529 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:19:56.529 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:19:56.532 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:19:56.533 INFO 1107 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:19:56.568 INFO 1107 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:19:56.584 INFO 1107 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:19:56.584 INFO 1107 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:19:56.608 INFO 1107 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:19:56.637 INFO 1107 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:19:57.463 INFO 1107 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:19:57.543 INFO 1107 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:20:04.971 INFO 1107 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 11.629 seconds (JVM running for 12.332)
2017-11-01 13:21:10.732 INFO 1107 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:19:53 CST 2017]; root of context hierarchy
2017-11-01 13:21:10.736 INFO 1107 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:21:27.939 INFO 1136 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1136 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:21:27.943 INFO 1136 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:21:28.013 INFO 1136 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:21:28 CST 2017]; root of context hierarchy
2017-11-01 13:21:28.792 WARN 1136 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:21:29.938 INFO 1136 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:21:29.951 INFO 1136 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:21:29.952 INFO 1136 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:21:30.042 INFO 1136 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:21:30.042 INFO 1136 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2033 ms
2017-11-01 13:21:30.220 INFO 1136 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:21:30.227 INFO 1136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:21:30.228 INFO 1136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:21:30.228 INFO 1136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:21:30.228 INFO 1136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:21:30.774 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:21:28 CST 2017]; root of context hierarchy
2017-11-01 13:21:30.852 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:21:30.855 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:21:30.868 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:21:30.868 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:21:30.869 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:21:30.869 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:21:30.869 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:21:30.870 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:21:30.870 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:21:30.870 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:21:30.870 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:21:30.871 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:21:30.875 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:21:30.876 INFO 1136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:21:30.915 INFO 1136 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:21:30.931 INFO 1136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:21:30.932 INFO 1136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:21:30.956 INFO 1136 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:21:31.005 INFO 1136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:21:31.839 INFO 1136 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:21:31.917 INFO 1136 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:25:28.110 INFO 1136 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 240.52 seconds (JVM running for 241.279)
2017-11-01 13:25:28.157 INFO 1136 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:21:28 CST 2017]; root of context hierarchy
2017-11-01 13:25:28.160 INFO 1136 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:25:48.331 INFO 1146 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1146 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:25:48.335 INFO 1146 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:25:48.412 INFO 1146 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:25:48 CST 2017]; root of context hierarchy
2017-11-01 13:25:49.172 WARN 1146 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:25:50.320 INFO 1146 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:25:50.335 INFO 1146 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:25:50.336 INFO 1146 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:25:50.425 INFO 1146 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:25:50.425 INFO 1146 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2018 ms
2017-11-01 13:25:50.606 INFO 1146 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:25:50.613 INFO 1146 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:25:50.613 INFO 1146 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:25:50.614 INFO 1146 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:25:50.614 INFO 1146 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:25:51.153 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:25:48 CST 2017]; root of context hierarchy
2017-11-01 13:25:51.228 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:25:51.231 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:25:51.241 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:25:51.242 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:25:51.242 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:25:51.242 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:25:51.243 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:25:51.243 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:25:51.243 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:25:51.243 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:25:51.244 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:25:51.244 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:25:51.247 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:25:51.248 INFO 1146 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:25:51.284 INFO 1146 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:25:51.299 INFO 1146 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:25:51.300 INFO 1146 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:25:51.326 INFO 1146 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:25:51.356 INFO 1146 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:25:52.244 INFO 1146 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:25:52.351 INFO 1146 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:25:56.710 INFO 1146 --- [main] c.a.dubbo.common.logger.LoggerFactory : using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
2017-11-01 13:33:14.749 INFO 1146 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:25:48 CST 2017]; root of context hierarchy
2017-11-01 13:33:14.753 INFO 1146 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:33:14.861 INFO 1146 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 446.854 seconds (JVM running for 447.573)
2017-11-01 13:33:38.256 INFO 1154 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1154 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-01 13:33:38.260 INFO 1154 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-01 13:33:38.326 INFO 1154 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:33:38 CST 2017]; root of context hierarchy
2017-11-01 13:33:39.091 WARN 1154 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-01 13:33:40.208 INFO 1154 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-01 13:33:40.223 INFO 1154 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-01 13:33:40.224 INFO 1154 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-01 13:33:40.309 INFO 1154 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-01 13:33:40.310 INFO 1154 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1989 ms
2017-11-01 13:33:40.486 INFO 1154 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-01 13:33:40.492 INFO 1154 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-01 13:33:40.492 INFO 1154 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-01 13:33:40.493 INFO 1154 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-01 13:33:40.493 INFO 1154 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-01 13:33:41.050 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:33:38 CST 2017]; root of context hierarchy
2017-11-01 13:33:41.121 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-01 13:33:41.124 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-01 13:33:41.134 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-01 13:33:41.134 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:33:41.135 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-01 13:33:41.135 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(ProdQueryReq)
2017-11-01 13:33:41.136 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:33:41.136 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-01 13:33:41.137 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-01 13:33:41.138 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:33:41.138 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-01 13:33:41.139 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-01 13:33:41.143 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-01 13:33:41.144 INFO 1154 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-01 13:33:41.180 INFO 1154 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-01 13:33:41.197 INFO 1154 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:33:41.197 INFO 1154 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:33:41.221 INFO 1154 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-01 13:33:41.252 INFO 1154 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-01 13:33:42.062 INFO 1154 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-01 13:33:42.164 INFO 1154 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-01 13:33:52.526 INFO 1154 --- [main] c.a.dubbo.common.logger.LoggerFactory : using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
2017-11-01 13:36:26.845 INFO 1154 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Wed Nov 01 13:33:38 CST 2017]; root of context hierarchy
2017-11-01 13:36:26.848 INFO 1154 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-01 13:36:26.920 INFO 1154 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 168.982 seconds (JVM running for 169.753)
2017-11-02 17:15:25.581 INFO 1539 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1539 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:15:25.613 INFO 1539 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:15:25.805 INFO 1539 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:15:25 CST 2017]; root of context hierarchy
2017-11-02 17:15:27.005 WARN 1539 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:15:28.626 INFO 1539 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:15:28.659 INFO 1539 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:15:28.661 INFO 1539 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:15:28.823 INFO 1539 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:15:28.823 INFO 1539 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3023 ms
2017-11-02 17:15:28.976 INFO 1539 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:15:28.982 INFO 1539 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:15:28.983 INFO 1539 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:15:28.983 INFO 1539 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:15:28.983 INFO 1539 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:15:29.553 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:15:25 CST 2017]; root of context hierarchy
2017-11-02 17:15:29.608 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:15:29.610 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:15:29.622 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:15:29.622 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:15:29.623 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:15:29.623 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:15:29.623 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:15:29.624 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:15:29.624 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:15:29.625 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:15:29.625 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:15:29.625 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:15:29.627 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:15:29.632 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:15:29.633 INFO 1539 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:15:29.664 INFO 1539 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:15:29.676 INFO 1539 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:15:29.676 INFO 1539 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:15:29.696 INFO 1539 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:15:29.726 INFO 1539 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:15:29.821 WARN 1539 --- [main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:15:29.825 INFO 1539 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2017-11-02 17:15:29.944 INFO 1539 --- [main] utoConfigurationReportLoggingInitializer :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-11-02 17:15:29.950 ERROR 1539 --- [main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Cannot determine embedded database driver class for database type NONE
Action:
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:17:36.138 INFO 1546 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1546 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:17:36.145 INFO 1546 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:17:36.247 INFO 1546 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:17:36 CST 2017]; root of context hierarchy
2017-11-02 17:17:37.428 WARN 1546 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:17:38.542 INFO 1546 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:17:38.555 INFO 1546 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:17:38.556 INFO 1546 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:17:38.634 INFO 1546 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:17:38.635 INFO 1546 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2393 ms
2017-11-02 17:17:38.944 INFO 1546 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:17:38.953 INFO 1546 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:17:38.954 INFO 1546 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:17:38.955 INFO 1546 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:17:38.956 INFO 1546 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:17:39.478 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:17:36 CST 2017]; root of context hierarchy
2017-11-02 17:17:39.533 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:17:39.535 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:17:39.546 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:17:39.546 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:17:39.547 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:17:39.547 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:17:39.547 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:17:39.547 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:17:39.548 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:17:39.548 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:17:39.548 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:17:39.548 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:17:39.550 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:17:39.553 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:17:39.554 INFO 1546 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:17:39.582 INFO 1546 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:17:39.595 INFO 1546 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:17:39.595 INFO 1546 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:17:39.613 INFO 1546 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:17:39.635 INFO 1546 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:17:39.761 WARN 1546 --- [main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:17:39.763 INFO 1546 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2017-11-02 17:17:39.785 INFO 1546 --- [main] utoConfigurationReportLoggingInitializer :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-11-02 17:17:39.792 ERROR 1546 --- [main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Cannot determine embedded database driver class for database type NONE
Action:
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:23:39.454 INFO 1579 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1579 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:23:39.459 INFO 1579 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:23:39.663 INFO 1579 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:23:39 CST 2017]; root of context hierarchy
2017-11-02 17:23:40.948 WARN 1579 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:23:41.958 INFO 1579 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:23:41.979 INFO 1579 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:23:41.981 INFO 1579 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:23:42.123 INFO 1579 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:23:42.123 INFO 1579 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2473 ms
2017-11-02 17:23:42.324 INFO 1579 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:23:42.330 INFO 1579 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:23:42.330 INFO 1579 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:23:42.330 INFO 1579 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:23:42.331 INFO 1579 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:23:42.775 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:23:39 CST 2017]; root of context hierarchy
2017-11-02 17:23:42.831 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:23:42.835 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:23:42.846 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:23:42.847 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:23:42.847 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:23:42.847 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:23:42.848 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:23:42.848 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:23:42.849 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:23:42.850 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:23:42.850 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:23:42.851 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:23:42.853 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:23:42.856 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:23:42.857 INFO 1579 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:23:42.902 INFO 1579 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:23:42.917 INFO 1579 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:23:42.918 INFO 1579 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:23:42.937 INFO 1579 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:23:42.964 INFO 1579 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:23:43.076 WARN 1579 --- [main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:23:43.080 INFO 1579 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2017-11-02 17:23:43.102 INFO 1579 --- [main] utoConfigurationReportLoggingInitializer :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-11-02 17:23:43.109 ERROR 1579 --- [main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Cannot determine embedded database driver class for database type NONE
Action:
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2017-11-02 17:24:47.258 INFO 1586 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1586 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:24:47.262 INFO 1586 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:24:47.393 INFO 1586 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Thu Nov 02 17:24:47 CST 2017]; root of context hierarchy
2017-11-02 17:24:48.666 WARN 1586 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:24:49.710 INFO 1586 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:24:49.723 INFO 1586 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:24:49.724 INFO 1586 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:24:49.808 INFO 1586 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:24:49.809 INFO 1586 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2424 ms
2017-11-02 17:24:49.961 INFO 1586 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:24:49.966 INFO 1586 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:24:49.967 INFO 1586 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:24:49.967 INFO 1586 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:24:49.967 INFO 1586 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:24:50.405 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Thu Nov 02 17:24:47 CST 2017]; root of context hierarchy
2017-11-02 17:24:50.457 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:24:50.459 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:24:50.469 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:24:50.469 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:24:50.469 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:24:50.470 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:24:50.470 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:24:50.470 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:24:50.471 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:24:50.471 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:24:50.471 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:24:50.471 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:24:50.472 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:24:50.476 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:24:50.477 INFO 1586 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:24:50.506 INFO 1586 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:24:50.517 INFO 1586 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:24:50.517 INFO 1586 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:24:50.534 INFO 1586 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:24:50.558 INFO 1586 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:24:51.251 INFO 1586 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-02 17:24:51.402 INFO 1586 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-02 17:24:51.414 INFO 1586 --- [main] utoConfigurationReportLoggingInitializer :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-11-02 17:24:51.424 ERROR 1586 --- [main] o.s.boot.SpringApplication : Application startup failed
java.lang.IllegalStateException: Failed to execute CommandLineRunner
at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:735) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.callRunners(SpringApplication.java:716) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.afterRefresh(SpringApplication.java:703) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:304) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1118) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1107) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at com.gaoxi.GaoxiControllerApplication.main(GaoxiControllerApplication.java:19) [classes/:na]
Caused by: java.lang.NullPointerException: null
at com.gaoxi.init.InitAuth.loadAccessAuth(InitAuth.java:92) ~[classes/:na]
at com.gaoxi.init.InitAuth.run(InitAuth.java:59) ~[classes/:na]
at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:732) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
... 6 common frames omitted
2017-11-02 17:24:51.425 INFO 1586 --- [main] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15bb6bea: startup date [Thu Nov 02 17:24:47 CST 2017]; root of context hierarchy
2017-11-02 17:24:51.427 INFO 1586 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-02 17:27:06.176 INFO 1592 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1592 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:27:06.183 INFO 1592 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:27:06.270 INFO 1592 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:27:06 CST 2017]; root of context hierarchy
2017-11-02 17:27:07.410 WARN 1592 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:27:08.557 INFO 1592 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:27:08.570 INFO 1592 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:27:08.571 INFO 1592 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:27:08.649 INFO 1592 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:27:08.650 INFO 1592 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2385 ms
2017-11-02 17:27:08.816 INFO 1592 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:27:08.822 INFO 1592 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:27:08.822 INFO 1592 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:27:08.823 INFO 1592 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:27:08.823 INFO 1592 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:27:09.255 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:27:06 CST 2017]; root of context hierarchy
2017-11-02 17:27:09.312 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:27:09.314 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:27:09.324 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:27:09.324 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:27:09.325 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:27:09.325 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:27:09.325 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:27:09.326 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:27:09.326 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:27:09.326 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:27:09.327 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:27:09.327 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:27:09.328 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:27:09.330 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:27:09.331 INFO 1592 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:27:09.360 INFO 1592 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:27:09.371 INFO 1592 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:27:09.371 INFO 1592 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:27:09.389 INFO 1592 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:27:09.412 INFO 1592 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:27:09.988 INFO 1592 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-02 17:27:10.062 INFO 1592 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-02 17:27:10.072 INFO 1592 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.26 seconds (JVM running for 5.021)
2017-11-02 17:28:24.769 INFO 1592 --- [http-nio-8080-exec-2] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-11-02 17:28:24.769 INFO 1592 --- [http-nio-8080-exec-2] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-11-02 17:28:24.818 INFO 1592 --- [http-nio-8080-exec-2] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 49 ms
2017-11-02 17:28:28.867 INFO 1592 --- [http-nio-8080-exec-3] com.gaoxi.handle.LogHandle : 1509614908867, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:28:28.881 INFO 1592 --- [http-nio-8080-exec-3] com.gaoxi.handle.LogHandle : 1509614908867 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:28:40.434 INFO 1592 --- [http-nio-8080-exec-4] com.gaoxi.handle.LogHandle : 1509614920434, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:28:40.435 INFO 1592 --- [http-nio-8080-exec-4] com.gaoxi.handle.LogHandle : 1509614920434 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:29:11.765 INFO 1592 --- [http-nio-8080-exec-7] com.gaoxi.handle.LogHandle : 1509614951765, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:29:11.765 INFO 1592 --- [http-nio-8080-exec-7] com.gaoxi.handle.LogHandle : 1509614951765 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:29:35.006 INFO 1592 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@145eaa29: startup date [Thu Nov 02 17:27:06 CST 2017]; root of context hierarchy
2017-11-02 17:29:35.010 INFO 1592 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-02 17:30:00.130 INFO 1598 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1598 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:30:00.134 INFO 1598 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:30:00.240 INFO 1598 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:30:00 CST 2017]; root of context hierarchy
2017-11-02 17:30:01.080 WARN 1598 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:30:02.215 INFO 1598 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:30:02.230 INFO 1598 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:30:02.231 INFO 1598 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:30:02.321 INFO 1598 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:30:02.322 INFO 1598 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2088 ms
2017-11-02 17:30:02.497 INFO 1598 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:30:02.504 INFO 1598 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:30:02.506 INFO 1598 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:30:02.506 INFO 1598 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:30:02.506 INFO 1598 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:30:03.179 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:30:00 CST 2017]; root of context hierarchy
2017-11-02 17:30:03.278 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:30:03.281 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:30:03.291 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:30:03.292 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:30:03.292 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:30:03.293 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:30:03.293 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:30:03.293 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:30:03.294 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:30:03.294 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:30:03.294 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:30:03.295 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:30:03.296 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:30:03.299 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:30:03.299 INFO 1598 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:30:03.336 INFO 1598 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/user] onto handler '/user'
2017-11-02 17:30:03.351 INFO 1598 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:30:03.352 INFO 1598 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:30:03.378 INFO 1598 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:30:03.417 INFO 1598 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:30:04.211 INFO 1598 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-02 17:30:04.287 INFO 1598 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-02 17:30:04.304 INFO 1598 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.603 seconds (JVM running for 6.48)
2017-11-02 17:30:11.916 INFO 1598 --- [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-11-02 17:30:11.916 INFO 1598 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-11-02 17:30:11.939 INFO 1598 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 22 ms
2017-11-02 17:30:11.975 INFO 1598 --- [http-nio-8080-exec-1] com.gaoxi.handle.LogHandle : 1509615011975, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:30:43.334 INFO 1598 --- [http-nio-8080-exec-1] com.gaoxi.handle.LogHandle : 1509615011975 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:31:05.159 INFO 1598 --- [Thread-14] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:30:00 CST 2017]; root of context hierarchy
2017-11-02 17:31:05.162 INFO 1598 --- [Thread-14] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-02 17:31:19.752 INFO 1606 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1606 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:31:19.757 INFO 1606 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:31:19.836 INFO 1606 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:31:19 CST 2017]; root of context hierarchy
2017-11-02 17:31:20.619 WARN 1606 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:31:21.724 INFO 1606 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:31:21.737 INFO 1606 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:31:21.738 INFO 1606 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:31:21.823 INFO 1606 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:31:21.823 INFO 1606 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1992 ms
2017-11-02 17:31:21.997 INFO 1606 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:31:22.004 INFO 1606 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:31:22.005 INFO 1606 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:31:22.005 INFO 1606 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:31:22.005 INFO 1606 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:31:22.503 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:31:19 CST 2017]; root of context hierarchy
2017-11-02 17:31:22.596 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:31:22.598 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:31:22.609 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:31:22.610 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:31:22.610 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:31:22.611 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:31:22.611 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:31:22.611 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:31:22.611 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:31:22.612 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:31:22.612 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:31:22.612 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:31:22.615 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:31:22.616 INFO 1606 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:31:22.665 INFO 1606 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:31:22.665 INFO 1606 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:31:22.700 INFO 1606 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:31:22.737 INFO 1606 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:31:23.541 INFO 1606 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-02 17:31:23.615 INFO 1606 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-02 17:31:23.633 INFO 1606 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.244 seconds (JVM running for 5.141)
2017-11-02 17:31:32.228 INFO 1606 --- [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-11-02 17:31:32.228 INFO 1606 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-11-02 17:31:32.249 INFO 1606 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 21 ms
2017-11-02 17:32:23.324 INFO 1606 --- [Thread-13] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:31:19 CST 2017]; root of context hierarchy
2017-11-02 17:32:23.327 INFO 1606 --- [Thread-13] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-02 17:32:38.972 INFO 1611 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1611 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:32:38.977 INFO 1611 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:32:39.082 INFO 1611 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@769a1df5: startup date [Thu Nov 02 17:32:39 CST 2017]; root of context hierarchy
2017-11-02 17:32:40.059 WARN 1611 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:32:41.295 INFO 1611 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:32:41.312 INFO 1611 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:32:41.313 INFO 1611 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:32:41.409 INFO 1611 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:32:41.410 INFO 1611 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2333 ms
2017-11-02 17:32:41.632 INFO 1611 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:32:41.639 INFO 1611 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:32:41.639 INFO 1611 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:32:41.640 INFO 1611 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:32:41.640 INFO 1611 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:32:42.196 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@769a1df5: startup date [Thu Nov 02 17:32:39 CST 2017]; root of context hierarchy
2017-11-02 17:32:42.288 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:32:42.291 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:32:42.302 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:32:42.303 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:32:42.303 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:32:42.303 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:32:42.304 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:32:42.304 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:32:42.304 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:32:42.305 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:32:42.305 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:32:42.305 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:32:42.306 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:32:42.309 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:32:42.309 INFO 1611 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:32:42.362 INFO 1611 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:32:42.362 INFO 1611 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:32:42.387 INFO 1611 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:32:42.427 INFO 1611 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:32:43.235 INFO 1611 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-02 17:32:43.312 INFO 1611 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-11-02 17:32:43.325 INFO 1611 --- [main] com.gaoxi.GaoxiControllerApplication : Started GaoxiControllerApplication in 4.843 seconds (JVM running for 6.241)
2017-11-02 17:32:47.811 INFO 1611 --- [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-11-02 17:32:47.812 INFO 1611 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-11-02 17:32:47.834 INFO 1611 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 22 ms
2017-11-02 17:32:47.870 INFO 1611 --- [http-nio-8080-exec-1] com.gaoxi.handle.LogHandle : 1509615167870, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:33:08.701 INFO 1611 --- [http-nio-8080-exec-1] com.gaoxi.handle.LogHandle : 1509615167870 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:33:16.569 INFO 1611 --- [http-nio-8080-exec-2] com.gaoxi.handle.LogHandle : 1509615196569, url: http://127.0.0.1:8080/Gaoxi-Controller/user, method: GET, uri: /Gaoxi-Controller/user, params: null
2017-11-02 17:33:20.061 INFO 1611 --- [http-nio-8080-exec-2] com.gaoxi.handle.LogHandle : 1509615196569 , Result{isSuccess=true, errorCode=null, message='null', data=null}
2017-11-02 17:34:39.192 INFO 1611 --- [Thread-14] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@769a1df5: startup date [Thu Nov 02 17:32:39 CST 2017]; root of context hierarchy
2017-11-02 17:34:39.195 INFO 1611 --- [Thread-14] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
2017-11-02 17:34:54.305 INFO 1619 --- [main] com.gaoxi.GaoxiControllerApplication : Starting GaoxiControllerApplication on MacBook-Pro.local with PID 1619 (/Users/chibozhou/IdeaProjects/Gaoxi/Gaoxi-Controller/target/classes started by chibozhou in /Users/chibozhou/IdeaProjects/Gaoxi)
2017-11-02 17:34:54.308 INFO 1619 --- [main] com.gaoxi.GaoxiControllerApplication : No active profile set, falling back to default profiles: default
2017-11-02 17:34:54.376 INFO 1619 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:34:54 CST 2017]; root of context hierarchy
2017-11-02 17:34:55.144 WARN 1619 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.gaoxi.facade, com.gaoxi]' package. Please check your configuration.
2017-11-02 17:34:56.257 INFO 1619 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-02 17:34:56.270 INFO 1619 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-11-02 17:34:56.272 INFO 1619 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-11-02 17:34:56.358 INFO 1619 --- [localhost-startStop-1] o.a.c.c.C.[.[.[/Gaoxi-Controller] : Initializing Spring embedded WebApplicationContext
2017-11-02 17:34:56.358 INFO 1619 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1987 ms
2017-11-02 17:34:56.529 INFO 1619 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-11-02 17:34:56.534 INFO 1619 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-11-02 17:34:56.535 INFO 1619 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-11-02 17:34:56.535 INFO 1619 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-11-02 17:34:56.535 INFO 1619 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-11-02 17:34:57.085 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2438dcd: startup date [Thu Nov 02 17:34:54 CST 2017]; root of context hierarchy
2017-11-02 17:34:57.157 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public com.gaoxi.rsp.Result<java.lang.String> com.gaoxi.controller.example.ExampleControllerImpl.hello()
2017-11-02 17:34:57.160 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/article/{userId}]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.user.ArticleEntity>> com.gaoxi.controller.example.ExampleControllerImpl.findArticlesByUserId(java.lang.String)
2017-11-02 17:34:57.170 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:34:57.171 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/image],methods=[POST]}" onto public com.gaoxi.rsp.Result<com.gaoxi.entity.product.ProdImageEntity> com.gaoxi.controller.product.ProductControllerImpl.uploadImage(org.springframework.web.multipart.MultipartFile)
2017-11-02 17:34:57.171 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.updateProduct(com.gaoxi.entity.product.ProductEntity)
2017-11-02 17:34:57.171 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/product],methods=[GET]}" onto public com.gaoxi.rsp.Result<java.util.List<com.gaoxi.entity.product.ProductEntity>> com.gaoxi.controller.product.ProductControllerImpl.findProducts(com.gaoxi.req.product.ProdQueryReq)
2017-11-02 17:34:57.172 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createCategoty(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:34:57.172 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyCategory(com.gaoxi.entity.product.CategoryEntity)
2017-11-02 17:34:57.172 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/category/{categoryId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteCategory(java.lang.String)
2017-11-02 17:34:57.173 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[POST]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.createBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:34:57.173 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand],methods=[PUT]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.modifyBrand(com.gaoxi.entity.product.BrandEntity)
2017-11-02 17:34:57.173 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/brand/{brandId}],methods=[DELETE]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.product.ProductControllerImpl.deleteBrand(java.lang.String)
2017-11-02 17:34:57.174 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.gaoxi.rsp.Result com.gaoxi.controller.user.UserControllerImpl.login(com.gaoxi.req.user.UserQueryReq,javax.servlet.http.HttpServletResponse)
2017-11-02 17:34:57.177 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-11-02 17:34:57.178 INFO 1619 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-11-02 17:34:57.233 INFO 1619 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:34:57.233 INFO 1619 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-11-02 17:34:57.257 INFO 1619 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandle
2017-11-02 17:34:57.287 INFO 1619 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]