-
Notifications
You must be signed in to change notification settings - Fork 45
/
dsh-springdemo.log
2913 lines (2913 loc) · 456 KB
/
dsh-springdemo.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
server01: 2018-06-23 09:52:07.629 INFO 6228 --- [main] com.fishjam.MainLauncher : Starting MainLauncher on fishjam-TR with PID 6228 (G:\Fujie\FJSDK\Java\springdemo\target\classes started by fishjam in G:\Fujie\FJSDK\Java\springdemo)
server01: 2018-06-23 09:52:07.654 INFO 6228 --- [main] com.fishjam.MainLauncher : The following profiles are active: dev
server01: 2018-06-23 09:52:07.889 INFO 6228 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@689604d9: startup date [Sat Jun 23 09:52:07 CST 2018]; root of context hierarchy
server01: 2018-06-23 09:52:10.719 INFO 6228 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
server01: 2018-06-23 09:52:11.489 INFO 6228 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$3cc51e97] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server01: 2018-06-23 09:52:11.595 INFO 6228 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$69130d14] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server01: 2018-06-23 09:52:12.112 INFO 6228 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8888 (http)
server01: 2018-06-23 09:52:12.245 INFO 6228 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
server01: 2018-06-23 09:52:12.246 INFO 6228 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.29
server01: 2018-06-23 09:52:12.272 INFO 6228 --- [localhost-startStop-1] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [D:\Java\jdk1.8.0_131\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\Python\Python27\;D:\Python\Python27\Scripts;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\Java\jdk1.8.0_131\bin;C:\ProgramData\Oracle\Java\javapath;D:\Java\apache-maven-3.5.0\bin;D:\Java\Gradle\bin;G:\Fujie\FJSDK\\Windows\FJUtility\Lib;D:\Subversion;D:\TortoiseSVN\bin;D:\EmEditor;D:\TortoiseGit\bin;D:\CMake\bin;D:\Android\Sdk\ndk-bundle;D:\Android\Sdk\platform-tools;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Program Files\MySQL\MySQL Server 5.7\bin;D:\opencv\opencv2\opencv\build\x86\vc12\bin;C:\Users\fishjam\AppData\Local\Microsoft\WindowsApps;;D:\Fiddler;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;.]
server01: 2018-06-23 09:52:12.506 INFO 6228 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
server01: 2018-06-23 09:52:12.506 INFO 6228 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4617 ms
server01: 2018-06-23 09:52:14.018 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
server01: 2018-06-23 09:52:14.022 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
server01: 2018-06-23 09:52:14.022 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
server01: 2018-06-23 09:52:14.022 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
server01: 2018-06-23 09:52:14.023 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
server01: 2018-06-23 09:52:14.023 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpTraceFilter' to: [/*]
server01: 2018-06-23 09:52:14.023 INFO 6228 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'webMvcMetricsFilter' to: [/*]
server01: 2018-06-23 09:52:15.479 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/cmds/exec],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.CommandController.execRemoteCommand(java.lang.String,java.lang.String)
server01: 2018-06-23 09:52:15.481 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/file/upload],methods=[POST]}" onto public java.lang.String com.fishjam.controller.FileController.upload(org.springframework.web.multipart.MultipartFile[],javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server01: 2018-06-23 09:52:15.482 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/gc],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.gc()
server01: 2018-06-23 09:52:15.483 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/free],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.freeMem(java.lang.Long)
server01: 2018-06-23 09:52:15.483 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/oom],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.testOOM(java.lang.Long)
server01: 2018-06-23 09:52:15.486 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.postUser(java.lang.String,java.lang.String)
server01: 2018-06-23 09:52:15.486 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[PATCH],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.putUser(java.lang.Long,com.fishjam.domain.dao.User)
server01: 2018-06-23 09:52:15.486 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.domain.dto.UserDTO com.fishjam.controller.RBACController.getUser(java.lang.Long)
server01: 2018-06-23 09:52:15.486 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public void com.fishjam.controller.RBACController.deleteUser(java.lang.Long)
server01: 2018-06-23 09:52:15.487 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.mapper.PageBean<com.fishjam.domain.dto.UserDTO> com.fishjam.controller.RBACController.listUsers(java.lang.Integer,java.lang.Integer,java.lang.String)
server01: 2018-06-23 09:52:15.487 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/security/csrf],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.SecurityDemoController.testCSRF()
server01: 2018-06-23 09:52:15.488 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/templates/thymeleaf],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.TemplateController.testThymeleafDemo(org.springframework.ui.ModelMap)
server01: 2018-06-23 09:52:15.489 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/handle],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.handle(java.lang.String)
server01: 2018-06-23 09:52:15.489 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/info]}" onto public java.lang.String com.fishjam.controller.URLController.info(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server01: 2018-06-23 09:52:15.489 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/normalRedirect],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.redirect(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server01: 2018-06-23 09:52:15.490 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/uploadRedirect],methods=[POST]}" onto public void com.fishjam.controller.URLController.upload(org.springframework.web.multipart.MultipartFile,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server01: 2018-06-23 09:52:15.490 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/v2/api-docs],methods=[GET],produces=[application/json || application/hal+json]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)
server01: 2018-06-23 09:52:15.492 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/ui]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.UiConfiguration> springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()
server01: 2018-06-23 09:52:15.493 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources]}" onto org.springframework.http.ResponseEntity<java.util.List<springfox.documentation.swagger.web.SwaggerResource>> springfox.documentation.swagger.web.ApiResourceController.swaggerResources()
server01: 2018-06-23 09:52:15.494 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/security]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.SecurityConfiguration> springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()
server01: 2018-06-23 09:52:15.496 INFO 6228 --- [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.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
server01: 2018-06-23 09:52:15.496 INFO 6228 --- [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.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server01: 2018-06-23 09:52:15.617 INFO 6228 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 15 endpoint(s) beneath base path '/actuator'
server01: 2018-06-23 09:52:15.627 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/auditevents],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.628 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/beans],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.628 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/health],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.628 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/conditions],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.629 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/shutdown],methods=[POST],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.629 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/configprops],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.629 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.629 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env/{toMatch}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.631 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/info],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.631 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.632 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.632 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.632 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/heapdump],methods=[GET],produces=[application/octet-stream]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.632 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/threaddump],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.632 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.633 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics/{requiredMetricName}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.633 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/scheduledtasks],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.633 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/httptrace],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.633 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/mappings],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server01: 2018-06-23 09:52:15.634 INFO 6228 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto protected java.util.Map<java.lang.String, java.util.Map<java.lang.String, org.springframework.boot.actuate.endpoint.web.Link>> org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping.links(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server01: 2018-06-23 09:52:15.862 INFO 6228 --- [main] com.fishjam.config.SwaggerConfig : apiInfo, description=æ¼ç¤º Spring Boot å项åè½ç使ç¨
server01: 2018-06-23 09:52:15.948 INFO 6228 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server01: 2018-06-23 09:52:16.357 INFO 6228 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@689604d9: startup date [Sat Jun 23 09:52:07 CST 2018]; root of context hierarchy
server01: 2018-06-23 09:52:16.419 INFO 6228 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server01: 2018-06-23 09:52:16.419 INFO 6228 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server01: 2018-06-23 09:52:16.437 INFO 6228 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in commonExceptionAdvice
server01: 2018-06-23 09:52:17.632 INFO 6228 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
server01: 2018-06-23 09:52:17.634 INFO 6228 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'dataSource' has been autodetected for JMX exposure
server01: 2018-06-23 09:52:17.641 INFO 6228 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
server01: 2018-06-23 09:52:17.675 INFO 6228 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483547
server01: 2018-06-23 09:52:17.675 INFO 6228 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647
server01: 2018-06-23 09:52:17.676 INFO 6228 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
server01: 2018-06-23 09:52:17.741 INFO 6228 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
server01: 2018-06-23 09:52:17.753 INFO 6228 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
server01: 2018-06-23 09:52:18.004 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.005 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.007 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.009 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.010 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.011 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.013 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.014 WARN 6228 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server01: 2018-06-23 09:52:18.035 INFO 6228 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadUsingPOST_1
server01: 2018-06-23 09:52:18.108 ERROR 6228 --- [main] o.apache.catalina.core.StandardService : Failed to start connector [Connector[HTTP/1.1-8888]]
server01:
server01: org.apache.catalina.LifecycleException: Failed to start component [Connector[HTTP/1.1-8888]]
server01: at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
server01: at org.apache.catalina.core.StandardService.addConnector(StandardService.java:225)
server01: at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.addPreviouslyRemovedConnectors(TomcatWebServer.java:256)
server01: at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.start(TomcatWebServer.java:198)
server01: at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.startWebServer(ServletWebServerApplicationContext.java:300)
server01: at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.finishRefresh(ServletWebServerApplicationContext.java:162)
server01: at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:553)
server01: at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140)
server01: at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759)
server01: at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:395)
server01: at org.springframework.boot.SpringApplication.run(SpringApplication.java:327)
server01: at org.springframework.boot.SpringApplication.run(SpringApplication.java:1255)
server01: at org.springframework.boot.SpringApplication.run(SpringApplication.java:1243)
server01: at com.fishjam.MainLauncher.main(MainLauncher.java:10)
server01: Caused by: org.apache.catalina.LifecycleException: Protocol handler start failed
server01: at org.apache.catalina.connector.Connector.startInternal(Connector.java:1020)
server01: at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
server01: ... 13 common frames omitted
server01: Caused by: java.net.BindException: Address already in use: bind
server01: at sun.nio.ch.Net.bind0(Native Method)
server01: at sun.nio.ch.Net.bind(Net.java:433)
server01: at sun.nio.ch.Net.bind(Net.java:425)
server01: at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
server01: at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
server01: at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:210)
server01: at org.apache.tomcat.util.net.AbstractEndpoint.start(AbstractEndpoint.java:1150)
server01: at org.apache.coyote.AbstractProtocol.start(AbstractProtocol.java:591)
server01: at org.apache.catalina.connector.Connector.startInternal(Connector.java:1018)
server01: ... 14 common frames omitted
server01:
server01: 2018-06-23 09:52:18.118 INFO 6228 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
server01: 2018-06-23 09:52:18.138 WARN 6228 --- [localhost-startStop-1] o.a.c.loader.WebappClassLoaderBase : The web application [ROOT] appears to have started a thread named [lettuce-eventExecutorLoop-1-1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
server01: sun.misc.Unsafe.park(Native Method)
server01: java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
server01: java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
server01: java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:467)
server01: io.netty.util.concurrent.SingleThreadEventExecutor.takeTask(SingleThreadEventExecutor.java:251)
server01: io.netty.util.concurrent.DefaultEventExecutor.run(DefaultEventExecutor.java:64)
server01: io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:886)
server01: io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
server01: java.lang.Thread.run(Thread.java:748)
server01: 2018-06-23 09:52:18.157 INFO 6228 --- [main] ConditionEvaluationReportLoggingListener :
server01:
server01: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
server01: 2018-06-23 09:52:18.182 ERROR 6228 --- [main] o.s.b.d.LoggingFailureAnalysisReporter :
server01:
server01: ***************************
server01: APPLICATION FAILED TO START
server01: ***************************
server01:
server01: Description:
server01:
server01: The Tomcat connector configured to listen on port 8888 failed to start. The port may already be in use or the connector may be misconfigured.
server01:
server01: Action:
server01:
server01: Verify the connector's configuration, identify and stop any process that's listening on port 8888, or configure this application to listen on another port.
server01:
server01: 2018-06-23 09:52:18.183 INFO 6228 --- [main] ConfigServletWebServerApplicationContext : Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@689604d9: startup date [Sat Jun 23 09:52:07 CST 2018]; root of context hierarchy
server01: 2018-06-23 09:52:18.186 INFO 6228 --- [main] o.s.c.support.DefaultLifecycleProcessor : Stopping beans in phase 2147483647
server01: 2018-06-23 09:52:18.186 INFO 6228 --- [main] o.s.c.support.DefaultLifecycleProcessor : Stopping beans in phase 2147483547
server01: 2018-06-23 09:52:18.186 INFO 6228 --- [main] o.s.c.support.DefaultLifecycleProcessor : Stopping beans in phase 0
server01: 2018-06-23 09:52:18.188 INFO 6228 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
server01: 2018-06-23 09:52:18.188 INFO 6228 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans
server02: 2018-06-23 09:56:28.360 INFO 13120 --- [main] com.fishjam.MainLauncher : Starting MainLauncher on fishjam-TR with PID 13120 (G:\Fujie\FJSDK\Java\springdemo\target\classes started by fishjam in G:\Fujie\FJSDK\Java\springdemo)
server02: 2018-06-23 09:56:28.364 INFO 13120 --- [main] com.fishjam.MainLauncher : The following profiles are active: dev
server02: 2018-06-23 09:56:28.414 INFO 13120 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4135c3b: startup date [Sat Jun 23 09:56:28 CST 2018]; root of context hierarchy
server02: 2018-06-23 09:56:29.616 INFO 13120 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
server02: 2018-06-23 09:56:30.049 INFO 13120 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$57750304] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server02: 2018-06-23 09:56:30.124 INFO 13120 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$83c2f181] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server02: 2018-06-23 09:56:30.547 INFO 13120 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
server02: 2018-06-23 09:56:30.634 INFO 13120 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
server02: 2018-06-23 09:56:30.635 INFO 13120 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.29
server02: 2018-06-23 09:56:30.639 INFO 13120 --- [localhost-startStop-1] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [D:\Java\jdk1.8.0_131\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\Python\Python27\;D:\Python\Python27\Scripts;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\Java\jdk1.8.0_131\bin;C:\ProgramData\Oracle\Java\javapath;D:\Java\apache-maven-3.5.0\bin;D:\Java\Gradle\bin;G:\Fujie\FJSDK\\Windows\FJUtility\Lib;D:\Subversion;D:\TortoiseSVN\bin;D:\EmEditor;D:\TortoiseGit\bin;D:\CMake\bin;D:\Android\Sdk\ndk-bundle;D:\Android\Sdk\platform-tools;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Program Files\MySQL\MySQL Server 5.7\bin;D:\opencv\opencv2\opencv\build\x86\vc12\bin;C:\Users\fishjam\AppData\Local\Microsoft\WindowsApps;;D:\Fiddler;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;.]
server02: 2018-06-23 09:56:30.794 INFO 13120 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
server02: 2018-06-23 09:56:30.794 INFO 13120 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2380 ms
server02: 2018-06-23 09:56:31.979 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
server02: 2018-06-23 09:56:31.983 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
server02: 2018-06-23 09:56:31.983 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
server02: 2018-06-23 09:56:31.984 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
server02: 2018-06-23 09:56:31.984 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
server02: 2018-06-23 09:56:31.984 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpTraceFilter' to: [/*]
server02: 2018-06-23 09:56:31.984 INFO 13120 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'webMvcMetricsFilter' to: [/*]
server02: 2018-06-23 09:56:32.798 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/cmds/exec],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.CommandController.execRemoteCommand(java.lang.String,java.lang.String)
server02: 2018-06-23 09:56:32.799 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/file/upload],methods=[POST]}" onto public java.lang.String com.fishjam.controller.FileController.upload(org.springframework.web.multipart.MultipartFile[],javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server02: 2018-06-23 09:56:32.800 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/gc],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.gc()
server02: 2018-06-23 09:56:32.801 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/oom],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.testOOM(java.lang.Long)
server02: 2018-06-23 09:56:32.801 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/free],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.freeMem(java.lang.Long)
server02: 2018-06-23 09:56:32.804 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.mapper.PageBean<com.fishjam.domain.dto.UserDTO> com.fishjam.controller.RBACController.listUsers(java.lang.Integer,java.lang.Integer,java.lang.String)
server02: 2018-06-23 09:56:32.804 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.domain.dto.UserDTO com.fishjam.controller.RBACController.getUser(java.lang.Long)
server02: 2018-06-23 09:56:32.805 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[PATCH],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.putUser(java.lang.Long,com.fishjam.domain.dao.User)
server02: 2018-06-23 09:56:32.805 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public void com.fishjam.controller.RBACController.deleteUser(java.lang.Long)
server02: 2018-06-23 09:56:32.805 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.postUser(java.lang.String,java.lang.String)
server02: 2018-06-23 09:56:32.806 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/security/csrf],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.SecurityDemoController.testCSRF()
server02: 2018-06-23 09:56:32.806 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/templates/thymeleaf],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.TemplateController.testThymeleafDemo(org.springframework.ui.ModelMap)
server02: 2018-06-23 09:56:32.807 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/handle],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.handle(java.lang.String)
server02: 2018-06-23 09:56:32.808 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/info]}" onto public java.lang.String com.fishjam.controller.URLController.info(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server02: 2018-06-23 09:56:32.808 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/normalRedirect],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.redirect(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server02: 2018-06-23 09:56:32.808 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/uploadRedirect],methods=[POST]}" onto public void com.fishjam.controller.URLController.upload(org.springframework.web.multipart.MultipartFile,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server02: 2018-06-23 09:56:32.809 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/v2/api-docs],methods=[GET],produces=[application/json || application/hal+json]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)
server02: 2018-06-23 09:56:32.812 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/security]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.SecurityConfiguration> springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()
server02: 2018-06-23 09:56:32.812 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources]}" onto org.springframework.http.ResponseEntity<java.util.List<springfox.documentation.swagger.web.SwaggerResource>> springfox.documentation.swagger.web.ApiResourceController.swaggerResources()
server02: 2018-06-23 09:56:32.813 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/ui]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.UiConfiguration> springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()
server02: 2018-06-23 09:56:32.815 INFO 13120 --- [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.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
server02: 2018-06-23 09:56:32.815 INFO 13120 --- [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.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server02: 2018-06-23 09:56:32.939 INFO 13120 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 15 endpoint(s) beneath base path '/actuator'
server02: 2018-06-23 09:56:32.950 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/auditevents],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.951 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/beans],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.952 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/health],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.952 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/conditions],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.952 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/shutdown],methods=[POST],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.952 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/configprops],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.953 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.953 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env/{toMatch}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.953 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/info],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.953 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.954 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.954 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.955 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/heapdump],methods=[GET],produces=[application/octet-stream]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.955 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/threaddump],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.955 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics/{requiredMetricName}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.955 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.955 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/scheduledtasks],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.956 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/httptrace],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.956 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/mappings],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server02: 2018-06-23 09:56:32.957 INFO 13120 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto protected java.util.Map<java.lang.String, java.util.Map<java.lang.String, org.springframework.boot.actuate.endpoint.web.Link>> org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping.links(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server02: 2018-06-23 09:56:33.115 INFO 13120 --- [main] com.fishjam.config.SwaggerConfig : apiInfo, description=æ¼ç¤º Spring Boot å项åè½ç使ç¨
server02: 2018-06-23 09:56:33.193 INFO 13120 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server02: 2018-06-23 09:56:33.402 INFO 13120 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4135c3b: startup date [Sat Jun 23 09:56:28 CST 2018]; root of context hierarchy
server02: 2018-06-23 09:56:33.457 INFO 13120 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server02: 2018-06-23 09:56:33.457 INFO 13120 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server02: 2018-06-23 09:56:33.476 INFO 13120 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in commonExceptionAdvice
server02: 2018-06-23 09:56:34.282 INFO 13120 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
server02: 2018-06-23 09:56:34.284 INFO 13120 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'dataSource' has been autodetected for JMX exposure
server02: 2018-06-23 09:56:34.292 INFO 13120 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
server02: 2018-06-23 09:56:34.300 INFO 13120 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483547
server02: 2018-06-23 09:56:34.300 INFO 13120 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647
server02: 2018-06-23 09:56:34.300 INFO 13120 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
server02: 2018-06-23 09:56:34.315 INFO 13120 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
server02: 2018-06-23 09:56:34.328 INFO 13120 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
server02: 2018-06-23 09:56:34.580 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.583 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.586 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.588 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.590 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.592 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.595 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.598 WARN 13120 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server02: 2018-06-23 09:56:34.631 INFO 13120 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadUsingPOST_1
server02: 2018-06-23 09:56:34.706 INFO 13120 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
server02: 2018-06-23 09:56:34.711 INFO 13120 --- [main] com.fishjam.MainLauncher : Started MainLauncher in 7.078 seconds (JVM running for 8.178)
server02: 2018-06-23 09:56:35.346 INFO 13120 --- [RMI TCP Connection(6)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
server02: 2018-06-23 09:56:35.347 INFO 13120 --- [RMI TCP Connection(7)-127.0.0.1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
server02: 2018-06-23 09:56:35.347 INFO 13120 --- [RMI TCP Connection(7)-127.0.0.1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
server02: 2018-06-23 09:56:35.403 INFO 13120 --- [RMI TCP Connection(7)-127.0.0.1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 56 ms
server02: 2018-06-23 09:56:35.653 INFO 13120 --- [RMI TCP Connection(6)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
server02: 2018-06-23 09:56:35.843 INFO 13120 --- [RMI TCP Connection(6)-127.0.0.1] io.lettuce.core.EpollProvider : Starting without optional epoll library
server02: 2018-06-23 09:56:35.845 INFO 13120 --- [RMI TCP Connection(6)-127.0.0.1] io.lettuce.core.KqueueProvider : Starting without optional kqueue library
server02: 2018-06-23 09:56:55.162 INFO 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server02: 2018-06-23 09:56:55.162 INFO 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server02: 2018-06-23 09:56:55.590 INFO 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server02: 2018-06-23 09:56:55.590 INFO 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server02: 2018-06-23 09:56:55.771 DEBUG 13120 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user
server02: 2018-06-23 09:56:55.802 DEBUG 13120 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server02: 2018-06-23 09:56:55.826 TRACE 13120 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Columns: count(0)
server02: 2018-06-23 09:56:55.826 TRACE 13120 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Row: 2
server02: 2018-06-23 09:56:55.827 DEBUG 13120 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Total: 1
server02: 2018-06-23 09:56:55.829 DEBUG 13120 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : ==> Preparing: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: 2018-06-23 09:56:55.829 DEBUG 13120 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : ==> Parameters: 20(Integer)
server02: 2018-06-23 09:56:55.871 INFO 13120 --- [http-nio-8080-exec-2] o.s.b.f.xml.XmlBeanDefinitionReader : Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
server02: 2018-06-23 09:56:55.969 INFO 13120 --- [http-nio-8080-exec-2] o.s.jdbc.support.SQLErrorCodesFactory : SQLErrorCodes loaded: [DB2, Derby, H2, HDB, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase]
server02: 2018-06-23 09:56:55.973 ERROR 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : SPEND TIME : 811
server02: 2018-06-23 09:56:55.973 ERROR 13120 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : RESULT : FAILURE
server02: 2018-06-23 09:56:55.977 ERROR 13120 --- [http-nio-8080-exec-2] c.f.exceptions.CommonExceptionAdvice : exception:
server02:
server02: org.springframework.jdbc.BadSqlGrammarException:
server02: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ### The error may exist in file [G:\Fujie\FJSDK\Java\springdemo\target\classes\mapping\RBACMapper.xml]
server02: ### The error may involve defaultParameterMap
server02: ### The error occurred while setting parameters
server02: ### SQL: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
server02: at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
server02: at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
server02: at com.sun.proxy.$Proxy120.selectList(Unknown Source)
server02: at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
server02: at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:139)
server02: at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:76)
server02: at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
server02: at com.sun.proxy.$Proxy122.listUsers(Unknown Source)
server02: at com.fishjam.service.RBACService.listUsers(RBACService.java:42)
server02: at com.fishjam.controller.RBACController.listUsers(RBACController.java:69)
server02: at com.fishjam.controller.RBACController$$FastClassBySpringCGLIB$$499731c3.invoke(<generated>)
server02: at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
server02: at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:747)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
server02: at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
server02: at com.fishjam.controller.RBACController$$EnhancerBySpringCGLIB$$f7d0e908.listUsers(<generated>)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:209)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
server02: at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:877)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:783)
server02: at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
server02: at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:991)
server02: at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:925)
server02: at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:974)
server02: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:866)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
server02: at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:851)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:158)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:126)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:111)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:84)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:109)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
server02: at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
server02: at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:496)
server02: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
server02: at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
server02: at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
server02: at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
server02: at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
server02: at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
server02: at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:790)
server02: at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
server02: at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
server02: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
server02: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
server02: at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
server02: at java.lang.Thread.run(Thread.java:748)
server02: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
server02: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
server02: at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
server02: at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
server02: at com.mysql.jdbc.Util.getInstance(Util.java:408)
server02: at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)
server02: at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
server02: at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
server02: at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
server02: at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
server02: at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
server02: at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
server02: at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
server02: at com.sun.proxy.$Proxy171.execute(Unknown Source)
server02: at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
server02: at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
server02: at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
server02: at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:326)
server02: at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
server02: at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
server02: at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:136)
server02: at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
server02: at com.sun.proxy.$Proxy170.query(Unknown Source)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
server02: ... 86 common frames omitted
server02:
server02: 2018-06-23 10:01:22.171 INFO 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server02: 2018-06-23 10:01:22.172 INFO 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server02: 2018-06-23 10:01:22.172 INFO 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server02: 2018-06-23 10:01:22.172 INFO 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server02: 2018-06-23 10:01:22.174 DEBUG 13120 --- [http-nio-8080-exec-8] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user
server02: 2018-06-23 10:01:22.175 DEBUG 13120 --- [http-nio-8080-exec-8] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server02: 2018-06-23 10:01:22.175 TRACE 13120 --- [http-nio-8080-exec-8] c.f.mapper.RBACMapper.listUsers_COUNT : <== Columns: count(0)
server02: 2018-06-23 10:01:22.175 TRACE 13120 --- [http-nio-8080-exec-8] c.f.mapper.RBACMapper.listUsers_COUNT : <== Row: 2
server02: 2018-06-23 10:01:22.175 DEBUG 13120 --- [http-nio-8080-exec-8] c.f.mapper.RBACMapper.listUsers_COUNT : <== Total: 1
server02: 2018-06-23 10:01:22.176 DEBUG 13120 --- [http-nio-8080-exec-8] com.fishjam.mapper.RBACMapper.listUsers : ==> Preparing: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: 2018-06-23 10:01:22.176 DEBUG 13120 --- [http-nio-8080-exec-8] com.fishjam.mapper.RBACMapper.listUsers : ==> Parameters: 20(Integer)
server02: 2018-06-23 10:01:22.177 ERROR 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : SPEND TIME : 6
server02: 2018-06-23 10:01:22.178 ERROR 13120 --- [http-nio-8080-exec-8] com.fishjam.config.ControllerLogAspect : RESULT : FAILURE
server02: 2018-06-23 10:01:22.178 ERROR 13120 --- [http-nio-8080-exec-8] c.f.exceptions.CommonExceptionAdvice : exception:
server02:
server02: org.springframework.jdbc.BadSqlGrammarException:
server02: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ### The error may exist in file [G:\Fujie\FJSDK\Java\springdemo\target\classes\mapping\RBACMapper.xml]
server02: ### The error may involve defaultParameterMap
server02: ### The error occurred while setting parameters
server02: ### SQL: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
server02: at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
server02: at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
server02: at com.sun.proxy.$Proxy120.selectList(Unknown Source)
server02: at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
server02: at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:139)
server02: at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:76)
server02: at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
server02: at com.sun.proxy.$Proxy122.listUsers(Unknown Source)
server02: at com.fishjam.service.RBACService.listUsers(RBACService.java:42)
server02: at com.fishjam.controller.RBACController.listUsers(RBACController.java:69)
server02: at com.fishjam.controller.RBACController$$FastClassBySpringCGLIB$$499731c3.invoke(<generated>)
server02: at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
server02: at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:747)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
server02: at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
server02: at com.fishjam.controller.RBACController$$EnhancerBySpringCGLIB$$f7d0e908.listUsers(<generated>)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:209)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
server02: at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:877)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:783)
server02: at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
server02: at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:991)
server02: at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:925)
server02: at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:974)
server02: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:866)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
server02: at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:851)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:158)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:126)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:111)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:84)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:109)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
server02: at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
server02: at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:496)
server02: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
server02: at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
server02: at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
server02: at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
server02: at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
server02: at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
server02: at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:790)
server02: at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
server02: at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
server02: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
server02: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
server02: at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
server02: at java.lang.Thread.run(Thread.java:748)
server02: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
server02: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
server02: at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
server02: at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
server02: at com.mysql.jdbc.Util.getInstance(Util.java:408)
server02: at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)
server02: at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
server02: at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
server02: at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
server02: at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
server02: at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
server02: at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
server02: at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
server02: at com.sun.proxy.$Proxy171.execute(Unknown Source)
server02: at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
server02: at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
server02: at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
server02: at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:326)
server02: at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
server02: at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
server02: at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:136)
server02: at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
server02: at com.sun.proxy.$Proxy170.query(Unknown Source)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
server02: ... 86 common frames omitted
server02:
server02: 2018-06-23 10:01:52.571 INFO 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server02: 2018-06-23 10:01:52.571 INFO 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server02: 2018-06-23 10:01:52.571 INFO 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server02: 2018-06-23 10:01:52.571 INFO 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server02: 2018-06-23 10:01:52.573 DEBUG 13120 --- [http-nio-8080-exec-5] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user
server02: 2018-06-23 10:01:52.574 DEBUG 13120 --- [http-nio-8080-exec-5] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server02: 2018-06-23 10:01:52.574 TRACE 13120 --- [http-nio-8080-exec-5] c.f.mapper.RBACMapper.listUsers_COUNT : <== Columns: count(0)
server02: 2018-06-23 10:01:52.574 TRACE 13120 --- [http-nio-8080-exec-5] c.f.mapper.RBACMapper.listUsers_COUNT : <== Row: 2
server02: 2018-06-23 10:01:52.574 DEBUG 13120 --- [http-nio-8080-exec-5] c.f.mapper.RBACMapper.listUsers_COUNT : <== Total: 1
server02: 2018-06-23 10:01:52.575 DEBUG 13120 --- [http-nio-8080-exec-5] com.fishjam.mapper.RBACMapper.listUsers : ==> Preparing: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: 2018-06-23 10:01:52.575 DEBUG 13120 --- [http-nio-8080-exec-5] com.fishjam.mapper.RBACMapper.listUsers : ==> Parameters: 20(Integer)
server02: 2018-06-23 10:01:52.576 ERROR 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : SPEND TIME : 5
server02: 2018-06-23 10:01:52.576 ERROR 13120 --- [http-nio-8080-exec-5] com.fishjam.config.ControllerLogAspect : RESULT : FAILURE
server02: 2018-06-23 10:01:52.577 ERROR 13120 --- [http-nio-8080-exec-5] c.f.exceptions.CommonExceptionAdvice : exception:
server02:
server02: org.springframework.jdbc.BadSqlGrammarException:
server02: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ### The error may exist in file [G:\Fujie\FJSDK\Java\springdemo\target\classes\mapping\RBACMapper.xml]
server02: ### The error may involve defaultParameterMap
server02: ### The error occurred while setting parameters
server02: ### SQL: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user LIMIT ?
server02: ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
server02: at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
server02: at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
server02: at com.sun.proxy.$Proxy120.selectList(Unknown Source)
server02: at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
server02: at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:139)
server02: at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:76)
server02: at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
server02: at com.sun.proxy.$Proxy122.listUsers(Unknown Source)
server02: at com.fishjam.service.RBACService.listUsers(RBACService.java:42)
server02: at com.fishjam.controller.RBACController.listUsers(RBACController.java:69)
server02: at com.fishjam.controller.RBACController$$FastClassBySpringCGLIB$$499731c3.invoke(<generated>)
server02: at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
server02: at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:747)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
server02: at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:52)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
server02: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server02: at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
server02: at com.fishjam.controller.RBACController$$EnhancerBySpringCGLIB$$f7d0e908.listUsers(<generated>)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:209)
server02: at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
server02: at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:877)
server02: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:783)
server02: at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
server02: at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:991)
server02: at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:925)
server02: at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:974)
server02: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:866)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
server02: at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:851)
server02: at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:158)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:126)
server02: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:111)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:84)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:109)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
server02: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server02: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server02: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server02: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
server02: at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
server02: at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:496)
server02: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
server02: at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
server02: at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
server02: at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
server02: at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
server02: at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
server02: at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:790)
server02: at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
server02: at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
server02: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
server02: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
server02: at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
server02: at java.lang.Thread.run(Thread.java:748)
server02: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'u.id' in 'field list'
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
server02: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
server02: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
server02: at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
server02: at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
server02: at com.mysql.jdbc.Util.getInstance(Util.java:408)
server02: at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)
server02: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)
server02: at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
server02: at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
server02: at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
server02: at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
server02: at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
server02: at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
server02: at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
server02: at com.sun.proxy.$Proxy171.execute(Unknown Source)
server02: at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
server02: at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
server02: at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
server02: at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:326)
server02: at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
server02: at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
server02: at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:136)
server02: at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
server02: at com.sun.proxy.$Proxy170.query(Unknown Source)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
server02: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server02: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server02: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
server02: at java.lang.reflect.Method.invoke(Method.java:498)
server02: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
server02: ... 86 common frames omitted
server03:
server03: 2018-06-23 10:03:25.552 INFO 10136 --- [main] com.fishjam.MainLauncher : Starting MainLauncher on fishjam-TR with PID 10136 (G:\Fujie\FJSDK\Java\springdemo\target\classes started by fishjam in G:\Fujie\FJSDK\Java\springdemo)
server03: 2018-06-23 10:03:25.558 INFO 10136 --- [main] com.fishjam.MainLauncher : The following profiles are active: dev
server03: 2018-06-23 10:03:25.638 INFO 10136 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@5e744b4b: startup date [Sat Jun 23 10:03:25 CST 2018]; root of context hierarchy
server03: 2018-06-23 10:03:27.954 INFO 10136 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
server03: 2018-06-23 10:03:28.879 INFO 10136 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$5a76737a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server03: 2018-06-23 10:03:29.012 INFO 10136 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$86c461f7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
server03: 2018-06-23 10:03:30.039 INFO 10136 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
server03: 2018-06-23 10:03:30.096 INFO 10136 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
server03: 2018-06-23 10:03:30.096 INFO 10136 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.29
server03: 2018-06-23 10:03:30.102 INFO 10136 --- [localhost-startStop-1] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [D:\Java\jdk1.8.0_131\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\Python\Python27\;D:\Python\Python27\Scripts;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\Java\jdk1.8.0_131\bin;C:\ProgramData\Oracle\Java\javapath;D:\Java\apache-maven-3.5.0\bin;D:\Java\Gradle\bin;G:\Fujie\FJSDK\\Windows\FJUtility\Lib;D:\Subversion;D:\TortoiseSVN\bin;D:\EmEditor;D:\TortoiseGit\bin;D:\CMake\bin;D:\Android\Sdk\ndk-bundle;D:\Android\Sdk\platform-tools;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Program Files\MySQL\MySQL Server 5.7\bin;D:\opencv\opencv2\opencv\build\x86\vc12\bin;C:\Users\fishjam\AppData\Local\Microsoft\WindowsApps;;D:\Fiddler;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;.]
server03: 2018-06-23 10:03:30.385 INFO 10136 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
server03: 2018-06-23 10:03:30.385 INFO 10136 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4747 ms
server03: 2018-06-23 10:03:31.958 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
server03: 2018-06-23 10:03:31.965 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
server03: 2018-06-23 10:03:31.965 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
server03: 2018-06-23 10:03:31.965 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
server03: 2018-06-23 10:03:31.965 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
server03: 2018-06-23 10:03:31.966 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpTraceFilter' to: [/*]
server03: 2018-06-23 10:03:31.966 INFO 10136 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'webMvcMetricsFilter' to: [/*]
server03: 2018-06-23 10:03:33.523 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/cmds/exec],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.CommandController.execRemoteCommand(java.lang.String,java.lang.String)
server03: 2018-06-23 10:03:33.524 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/file/upload],methods=[POST]}" onto public java.lang.String com.fishjam.controller.FileController.upload(org.springframework.web.multipart.MultipartFile[],javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server03: 2018-06-23 10:03:33.527 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/gc],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.gc()
server03: 2018-06-23 10:03:33.527 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/free],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.freeMem(java.lang.Long)
server03: 2018-06-23 10:03:33.528 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/mem/oom],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.MemoryController.testOOM(java.lang.Long)
server03: 2018-06-23 10:03:33.532 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.domain.dto.UserDTO com.fishjam.controller.RBACController.getUser(java.lang.Long)
server03: 2018-06-23 10:03:33.532 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public com.fishjam.mapper.PageBean<com.fishjam.domain.dto.UserDTO> com.fishjam.controller.RBACController.listUsers(java.lang.Integer,java.lang.Integer,java.lang.String)
server03: 2018-06-23 10:03:33.533 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.postUser(java.lang.String,java.lang.String)
server03: 2018-06-23 10:03:33.533 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public void com.fishjam.controller.RBACController.deleteUser(java.lang.Long)
server03: 2018-06-23 10:03:33.533 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/rbac/users/{id}],methods=[PATCH],produces=[application/json;charset=UTF-8]}" onto public int com.fishjam.controller.RBACController.putUser(java.lang.Long,com.fishjam.domain.dao.User)
server03: 2018-06-23 10:03:33.534 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/security/csrf],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.SecurityDemoController.testCSRF()
server03: 2018-06-23 10:03:33.534 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/templates/thymeleaf],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.fishjam.controller.TemplateController.testThymeleafDemo(org.springframework.ui.ModelMap)
server03: 2018-06-23 10:03:33.536 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/info]}" onto public java.lang.String com.fishjam.controller.URLController.info(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server03: 2018-06-23 10:03:33.536 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/handle],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.handle(java.lang.String)
server03: 2018-06-23 10:03:33.536 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/normalRedirect],methods=[GET]}" onto public java.lang.String com.fishjam.controller.URLController.redirect(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server03: 2018-06-23 10:03:33.537 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/url/uploadRedirect],methods=[POST]}" onto public void com.fishjam.controller.URLController.upload(org.springframework.web.multipart.MultipartFile,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException
server03: 2018-06-23 10:03:33.537 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/v2/api-docs],methods=[GET],produces=[application/json || application/hal+json]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)
server03: 2018-06-23 10:03:33.541 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources]}" onto org.springframework.http.ResponseEntity<java.util.List<springfox.documentation.swagger.web.SwaggerResource>> springfox.documentation.swagger.web.ApiResourceController.swaggerResources()
server03: 2018-06-23 10:03:33.542 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/ui]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.UiConfiguration> springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()
server03: 2018-06-23 10:03:33.542 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/security]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.SecurityConfiguration> springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()
server03: 2018-06-23 10:03:33.544 INFO 10136 --- [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.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
server03: 2018-06-23 10:03:33.544 INFO 10136 --- [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.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server03: 2018-06-23 10:03:33.693 INFO 10136 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 15 endpoint(s) beneath base path '/actuator'
server03: 2018-06-23 10:03:33.709 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/info],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.710 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/configprops],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.710 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics/{requiredMetricName}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.711 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/metrics],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.711 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.711 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/env/{toMatch}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.712 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/health],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.712 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/heapdump],methods=[GET],produces=[application/octet-stream]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.712 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/scheduledtasks],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.712 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/threaddump],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.712 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/mappings],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.713 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/conditions],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.713 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.714 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.714 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/loggers/{name}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.714 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/httptrace],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.714 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/shutdown],methods=[POST],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.715 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/auditevents],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.715 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/beans],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
server03: 2018-06-23 10:03:33.716 INFO 10136 --- [main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto protected java.util.Map<java.lang.String, java.util.Map<java.lang.String, org.springframework.boot.actuate.endpoint.web.Link>> org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping.links(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
server03: 2018-06-23 10:03:33.933 INFO 10136 --- [main] com.fishjam.config.SwaggerConfig : apiInfo, description=æ¼ç¤º Spring Boot å项åè½ç使ç¨
server03: 2018-06-23 10:03:34.042 INFO 10136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server03: 2018-06-23 10:03:34.356 INFO 10136 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@5e744b4b: startup date [Sat Jun 23 10:03:25 CST 2018]; root of context hierarchy
server03: 2018-06-23 10:03:34.474 INFO 10136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server03: 2018-06-23 10:03:34.474 INFO 10136 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
server03: 2018-06-23 10:03:34.496 INFO 10136 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in commonExceptionAdvice
server03: 2018-06-23 10:03:35.619 INFO 10136 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
server03: 2018-06-23 10:03:35.621 INFO 10136 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'dataSource' has been autodetected for JMX exposure
server03: 2018-06-23 10:03:35.632 INFO 10136 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
server03: 2018-06-23 10:03:35.644 INFO 10136 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483547
server03: 2018-06-23 10:03:35.644 INFO 10136 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647
server03: 2018-06-23 10:03:35.644 INFO 10136 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
server03: 2018-06-23 10:03:35.674 INFO 10136 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
server03: 2018-06-23 10:03:35.696 INFO 10136 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
server03: 2018-06-23 10:03:36.032 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.034 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.036 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.038 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.040 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.042 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.044 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.046 WARN 10136 --- [main] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType org.springframework.ui.ModelMap
server03: 2018-06-23 10:03:36.072 INFO 10136 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadUsingPOST_1
server03: 2018-06-23 10:03:36.156 INFO 10136 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
server03: 2018-06-23 10:03:36.165 INFO 10136 --- [main] com.fishjam.MainLauncher : Started MainLauncher in 11.954 seconds (JVM running for 23.916)
server03: 2018-06-23 10:03:37.142 INFO 10136 --- [RMI TCP Connection(2)-127.0.0.1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
server03: 2018-06-23 10:03:37.143 INFO 10136 --- [RMI TCP Connection(2)-127.0.0.1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
server03: 2018-06-23 10:03:37.156 INFO 10136 --- [RMI TCP Connection(7)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
server03: 2018-06-23 10:03:37.178 INFO 10136 --- [RMI TCP Connection(2)-127.0.0.1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 34 ms
server03: 2018-06-23 10:03:37.561 INFO 10136 --- [RMI TCP Connection(7)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
server03: 2018-06-23 10:03:37.829 INFO 10136 --- [RMI TCP Connection(7)-127.0.0.1] io.lettuce.core.EpollProvider : Starting without optional epoll library
server03: 2018-06-23 10:03:37.831 INFO 10136 --- [RMI TCP Connection(7)-127.0.0.1] io.lettuce.core.KqueueProvider : Starting without optional kqueue library
server03: 2018-06-23 10:04:14.354 INFO 10136 --- [http-nio-8080-exec-1] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server03: 2018-06-23 10:04:14.354 INFO 10136 --- [http-nio-8080-exec-1] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server03: 2018-06-23 10:04:14.357 INFO 10136 --- [http-nio-8080-exec-1] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server03: 2018-06-23 10:04:14.357 INFO 10136 --- [http-nio-8080-exec-1] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server03: 2018-06-23 10:04:14.873 DEBUG 10136 --- [http-nio-8080-exec-1] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user u, t_role r, t_user_role ur WHERE u.id = ur.user_id AND ur.role_id = r.id
server03: 2018-06-23 10:04:14.907 DEBUG 10136 --- [http-nio-8080-exec-1] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server03: 2018-06-23 10:04:14.928 TRACE 10136 --- [http-nio-8080-exec-1] c.f.mapper.RBACMapper.listUsers_COUNT : <== Columns: count(0)
server03: 2018-06-23 10:04:14.928 TRACE 10136 --- [http-nio-8080-exec-1] c.f.mapper.RBACMapper.listUsers_COUNT : <== Row: 1
server03: 2018-06-23 10:04:14.930 DEBUG 10136 --- [http-nio-8080-exec-1] c.f.mapper.RBACMapper.listUsers_COUNT : <== Total: 1
server03: 2018-06-23 10:04:14.933 DEBUG 10136 --- [http-nio-8080-exec-1] com.fishjam.mapper.RBACMapper.listUsers : ==> Preparing: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user u, t_role r, t_user_role ur WHERE u.id = ur.user_id and ur.role_id=r.id LIMIT ?
server03: 2018-06-23 10:04:14.934 DEBUG 10136 --- [http-nio-8080-exec-1] com.fishjam.mapper.RBACMapper.listUsers : ==> Parameters: 20(Integer)
server03: 2018-06-23 10:04:14.934 TRACE 10136 --- [http-nio-8080-exec-1] com.fishjam.mapper.RBACMapper.listUsers : <== Columns: id, name, password, email, gmt_create, gmt_modified, role_id, role_name, role_enabled, role_create_by, role_gmt_create, role_gmt_modified
server03: 2018-06-23 10:04:14.935 TRACE 10136 --- [http-nio-8080-exec-1] com.fishjam.mapper.RBACMapper.listUsers : <== Row: 1, admin, 123456, [email protected], null, null, 1, 管理员, 1, 1, null, null
server03: 2018-06-23 10:04:14.937 DEBUG 10136 --- [http-nio-8080-exec-1] com.fishjam.mapper.RBACMapper.listUsers : <== Total: 1
server03: 2018-06-23 10:04:15.029 INFO 10136 --- [http-nio-8080-exec-1] com.fishjam.config.ControllerLogAspect : RESPONSE : com.fishjam.mapper.PageBean@352d5cb4
server03: 2018-06-23 10:04:29.445 INFO 10136 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server03: 2018-06-23 10:04:29.446 INFO 10136 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server03: 2018-06-23 10:04:29.446 INFO 10136 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server03: 2018-06-23 10:04:29.446 INFO 10136 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server03: 2018-06-23 10:04:29.448 DEBUG 10136 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user u, t_role r, t_user_role ur WHERE u.id = ur.user_id AND ur.role_id = r.id
server03: 2018-06-23 10:04:29.449 DEBUG 10136 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server03: 2018-06-23 10:04:29.449 TRACE 10136 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Columns: count(0)
server03: 2018-06-23 10:04:29.449 TRACE 10136 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Row: 1
server03: 2018-06-23 10:04:29.450 DEBUG 10136 --- [http-nio-8080-exec-2] c.f.mapper.RBACMapper.listUsers_COUNT : <== Total: 1
server03: 2018-06-23 10:04:29.450 DEBUG 10136 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : ==> Preparing: select u.id, u.name, u.password, u.email, u.gmt_create, u.gmt_modified, r.id role_id, r.name role_name, r.enabled role_enabled, r.create_by role_create_by, r.gmt_create role_gmt_create, r.gmt_modified role_gmt_modified from t_user u, t_role r, t_user_role ur WHERE u.id = ur.user_id and ur.role_id=r.id LIMIT ?
server03: 2018-06-23 10:04:29.451 DEBUG 10136 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : ==> Parameters: 20(Integer)
server03: 2018-06-23 10:04:29.452 TRACE 10136 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : <== Columns: id, name, password, email, gmt_create, gmt_modified, role_id, role_name, role_enabled, role_create_by, role_gmt_create, role_gmt_modified
server03: 2018-06-23 10:04:29.452 TRACE 10136 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : <== Row: 1, admin, 123456, [email protected], null, null, 1, 管理员, 1, 1, null, null
server03: 2018-06-23 10:04:29.453 DEBUG 10136 --- [http-nio-8080-exec-2] com.fishjam.mapper.RBACMapper.listUsers : <== Total: 1
server03: 2018-06-23 10:04:29.454 INFO 10136 --- [http-nio-8080-exec-2] com.fishjam.config.ControllerLogAspect : RESPONSE : com.fishjam.mapper.PageBean@52dc9bff
server03: 2018-06-23 10:04:50.714 INFO 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server03: 2018-06-23 10:04:50.714 INFO 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server03: 2018-06-23 10:04:50.715 INFO 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server03: 2018-06-23 10:04:50.715 INFO 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server03: 2018-06-23 10:04:50.718 DEBUG 10136 --- [http-nio-8080-exec-3] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user u, t_role r, t_user_role ur, aaaa WHERE u.id = ur.user_id AND ur.role_id = r.id
server03: 2018-06-23 10:04:50.718 DEBUG 10136 --- [http-nio-8080-exec-3] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Parameters:
server03: 2018-06-23 10:04:50.764 INFO 10136 --- [http-nio-8080-exec-3] o.s.b.f.xml.XmlBeanDefinitionReader : Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
server03: 2018-06-23 10:04:50.818 INFO 10136 --- [http-nio-8080-exec-3] o.s.jdbc.support.SQLErrorCodesFactory : SQLErrorCodes loaded: [DB2, Derby, H2, HDB, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase]
server03: 2018-06-23 10:04:50.823 ERROR 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : SPEND TIME : 109
server03: 2018-06-23 10:04:50.823 ERROR 10136 --- [http-nio-8080-exec-3] com.fishjam.config.ControllerLogAspect : RESULT : FAILURE
server03: 2018-06-23 10:04:50.831 ERROR 10136 --- [http-nio-8080-exec-3] c.f.exceptions.CommonExceptionAdvice : exception:
server03:
server03: org.springframework.jdbc.BadSqlGrammarException:
server03: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'world.aaaa' doesn't exist
server03: ### The error may exist in file [G:\Fujie\FJSDK\Java\springdemo\target\classes\mapping\RBACMapper.xml]
server03: ### The error may involve defaultParameterMap
server03: ### The error occurred while setting parameters
server03: ### SQL: SELECT count(0) FROM t_user u, t_role r, t_user_role ur, aaaa WHERE u.id = ur.user_id AND ur.role_id = r.id
server03: ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'world.aaaa' doesn't exist
server03: ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'world.aaaa' doesn't exist
server03: at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
server03: at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
server03: at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
server03: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
server03: at com.sun.proxy.$Proxy123.selectList(Unknown Source)
server03: at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
server03: at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:139)
server03: at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:76)
server03: at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
server03: at com.sun.proxy.$Proxy125.listUsers(Unknown Source)
server03: at com.fishjam.service.RBACService.listUsers(RBACService.java:42)
server03: at com.fishjam.controller.RBACController.listUsers(RBACController.java:69)
server03: at com.fishjam.controller.RBACController$$FastClassBySpringCGLIB$$499731c3.invoke(<generated>)
server03: at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
server03: at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:747)
server03: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
server03: at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:52)
server03: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server03: at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:52)
server03: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server03: at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
server03: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server03: at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
server03: at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
server03: at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
server03: at com.fishjam.controller.RBACController$$EnhancerBySpringCGLIB$$dba7cd55.listUsers(<generated>)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server03: at sun.reflect.DelegatingMethodAccessorImpl.__invoke(DelegatingMethodAccessorImpl.java:43)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45009)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45012)
server03: at java.lang.reflect.Method.invoke(Method.java:498)
server03: at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:209)
server03: at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
server03: at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102)
server03: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:877)
server03: at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:783)
server03: at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
server03: at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:991)
server03: at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:925)
server03: at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:974)
server03: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:866)
server03: at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
server03: at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:851)
server03: at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:158)
server03: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:126)
server03: at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:111)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:84)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:109)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
server03: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
server03: at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
server03: at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
server03: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
server03: at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextValve.java:96)
server03: at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:40002)
server03: at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:496)
server03: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
server03: at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
server03: at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
server03: at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
server03: at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
server03: at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
server03: at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:790)
server03: at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
server03: at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
server03: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
server03: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
server03: at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
server03: at java.lang.Thread.run(Thread.java:748)
server03: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'world.aaaa' doesn't exist
server03: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
server03: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
server03: at sun.reflect.DelegatingConstructorAccessorImpl.__newInstance(DelegatingConstructorAccessorImpl.java:45)
server03: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45009)
server03: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45012)
server03: at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
server03: at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
server03: at com.mysql.jdbc.Util.getInstance(Util.java:408)
server03: at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)
server03: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)
server03: at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)
server03: at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
server03: at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
server03: at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
server03: at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
server03: at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
server03: at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
server03: at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server03: at sun.reflect.DelegatingMethodAccessorImpl.__invoke(DelegatingMethodAccessorImpl.java:43)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45009)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45012)
server03: at java.lang.reflect.Method.invoke(Method.java:498)
server03: at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
server03: at com.sun.proxy.$Proxy163.execute(Unknown Source)
server03: at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
server03: at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
server03: at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
server03: at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:326)
server03: at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
server03: at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
server03: at com.github.pagehelper.PageInterceptor.executeAutoCount(PageInterceptor.java:201)
server03: at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:113)
server03: at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
server03: at com.sun.proxy.$Proxy162.query(Unknown Source)
server03: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
server03: at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
server03: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
server03: at sun.reflect.DelegatingMethodAccessorImpl.__invoke(DelegatingMethodAccessorImpl.java:43)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45009)
server03: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45012)
server03: at java.lang.reflect.Method.invoke(Method.java:498)
server03: at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
server03: ... 89 common frames omitted
server03:
server03: 2018-06-23 10:05:04.708 INFO 10136 --- [http-nio-8080-exec-4] com.fishjam.config.ControllerLogAspect : remoteURL:0:0:0:0:0:0:0:1
server03: 2018-06-23 10:05:04.708 INFO 10136 --- [http-nio-8080-exec-4] com.fishjam.config.ControllerLogAspect : URL : http://localhost:8080/api/rbac/users
server03: 2018-06-23 10:05:04.708 INFO 10136 --- [http-nio-8080-exec-4] com.fishjam.config.ControllerLogAspect : CLASS_METHOD : com.fishjam.controller.RBACController.listUsers
server03: 2018-06-23 10:05:04.708 INFO 10136 --- [http-nio-8080-exec-4] com.fishjam.config.ControllerLogAspect : ARGS : [1, 20, null]
server03: 2018-06-23 10:05:04.714 DEBUG 10136 --- [http-nio-8080-exec-4] c.f.mapper.RBACMapper.listUsers_COUNT : ==> Preparing: SELECT count(0) FROM t_user u, t_role r, t_user_role ur WHERE u.id = ur.user_id AND ur.role_id = r.id