-
Notifications
You must be signed in to change notification settings - Fork 1
/
my.log
105 lines (105 loc) · 24.3 KB
/
my.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
2019-01-05 01:19:35.663 INFO 14304 --- [main] com.ls.Application : Starting Application on ZB-PF115ML1 with PID 14304 (D:\IdeaProjects\lishuai-notes\ls-springboot2\springboot-01-quickstart\target\classes started by lishuai29 in D:\IdeaProjects\lishuai-notes)
2019-01-05 01:19:35.684 INFO 14304 --- [main] com.ls.Application : No active profile set, falling back to default profiles: default
2019-01-05 01:19:35.981 INFO 14304 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6b26e945: startup date [Sat Jan 05 01:19:35 CST 2019]; root of context hierarchy
2019-01-05 01:19:37.513 INFO 14304 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2019-01-05 01:19:37.547 INFO 14304 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-01-05 01:19:37.547 INFO 14304 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.32
2019-01-05 01:19:37.552 INFO 14304 --- [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:\soft-install\jdk8\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Lenovo\Touch Fingerprint Software\;C:\Program Files (x86)\Intel\UCRT\;C:\Program Files\Intel\UCRT\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\soft-install\Anaconda3;D:\soft-install\Anaconda3\Scripts;D:\soft-install\Anaconda3\Library\bin;D:\anzhuangbao\maven\apache-maven-2.2.1-bin\apache-maven-2.2.1\bin;D:\soft-install\jdk8\bin;D:\soft-install\jdk8\jre\bin;D:\soft-install\Lenovo Fingerprint Reader\;D:\soft-install\Lenovo Fingerprint Reader\x86\;C:\Program Files\MySQL\MySQL Server 5.5\bin;D:\soft-install\MySQL\MySQL Server 5.5\bin;D:\soft-install\git2.16\Git\cmd;D:\soft-install\TortoiseGit\bin;D:\soft-install\nodejs\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\lishuai29\AppData\Roaming\npm;.]
2019-01-05 01:19:37.702 INFO 14304 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-01-05 01:19:37.702 INFO 14304 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1721 ms
2019-01-05 01:19:37.793 INFO 14304 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
2019-01-05 01:19:37.798 INFO 14304 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-01-05 01:19:37.799 INFO 14304 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-01-05 01:19:37.799 INFO 14304 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-01-05 01:19:37.800 INFO 14304 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2019-01-05 01:19:37.973 INFO 14304 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:19:38.155 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6b26e945: startup date [Sat Jan 05 01:19:35 CST 2019]; root of context hierarchy
2019-01-05 01:19:38.212 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/index],methods=[GET]}" onto public java.lang.String com.ls.controller.HelloController.index()
2019-01-05 01:19:38.216 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/]}" onto public java.lang.String com.ls.controller.HelloController.hello(java.lang.String)
2019-01-05 01:19:38.218 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[PUT]}" onto public java.lang.String com.ls.controller.UserController.putUser(java.lang.Long,com.ls.domain.User)
2019-01-05 01:19:38.218 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[DELETE]}" onto public java.lang.String com.ls.controller.UserController.deleteUser(java.lang.Long)
2019-01-05 01:19:38.219 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[POST]}" onto public java.lang.String com.ls.controller.UserController.postUser(com.ls.domain.User)
2019-01-05 01:19:38.219 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[GET]}" onto public com.ls.domain.User com.ls.controller.UserController.getUser(java.lang.Long)
2019-01-05 01:19:38.219 INFO 14304 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[GET]}" onto public java.util.List<com.ls.domain.User> com.ls.controller.UserController.getUserList()
2019-01-05 01:19:38.224 INFO 14304 --- [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)
2019-01-05 01:19:38.225 INFO 14304 --- [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)
2019-01-05 01:19:38.250 INFO 14304 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:19:38.250 INFO 14304 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:19:38.293 WARN 14304 --- [main] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
2019-01-05 01:19:38.357 INFO 14304 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2019-01-05 01:19:38.483 INFO 14304 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2019-01-05 01:19:38.536 INFO 14304 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2019-01-05 01:19:38.540 INFO 14304 --- [main] com.ls.Application : Started Application in 3.517 seconds (JVM running for 6.868)
2019-01-05 01:19:43.228 INFO 14304 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2019-01-05 01:19:43.228 INFO 14304 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2019-01-05 01:19:43.249 INFO 14304 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 21 ms
2019-01-05 01:20:40.859 INFO 9020 --- [main] com.ls.Application : Starting Application on ZB-PF115ML1 with PID 9020 (D:\IdeaProjects\lishuai-notes\ls-springboot2\springboot-01-quickstart\target\classes started by lishuai29 in D:\IdeaProjects\lishuai-notes)
2019-01-05 01:20:40.863 INFO 9020 --- [main] com.ls.Application : No active profile set, falling back to default profiles: default
2019-01-05 01:20:40.937 INFO 9020 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@12b0404f: startup date [Sat Jan 05 01:20:40 CST 2019]; root of context hierarchy
2019-01-05 01:20:42.060 INFO 9020 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2019-01-05 01:20:42.088 INFO 9020 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-01-05 01:20:42.088 INFO 9020 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.32
2019-01-05 01:20:42.094 INFO 9020 --- [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:\soft-install\jdk8\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Lenovo\Touch Fingerprint Software\;C:\Program Files (x86)\Intel\UCRT\;C:\Program Files\Intel\UCRT\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\soft-install\Anaconda3;D:\soft-install\Anaconda3\Scripts;D:\soft-install\Anaconda3\Library\bin;D:\anzhuangbao\maven\apache-maven-2.2.1-bin\apache-maven-2.2.1\bin;D:\soft-install\jdk8\bin;D:\soft-install\jdk8\jre\bin;D:\soft-install\Lenovo Fingerprint Reader\;D:\soft-install\Lenovo Fingerprint Reader\x86\;C:\Program Files\MySQL\MySQL Server 5.5\bin;D:\soft-install\MySQL\MySQL Server 5.5\bin;D:\soft-install\git2.16\Git\cmd;D:\soft-install\TortoiseGit\bin;D:\soft-install\nodejs\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\lishuai29\AppData\Roaming\npm;.]
2019-01-05 01:20:42.165 INFO 9020 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-01-05 01:20:42.166 INFO 9020 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1229 ms
2019-01-05 01:20:42.230 INFO 9020 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
2019-01-05 01:20:42.234 INFO 9020 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-01-05 01:20:42.235 INFO 9020 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-01-05 01:20:42.235 INFO 9020 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-01-05 01:20:42.235 INFO 9020 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2019-01-05 01:20:42.337 INFO 9020 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:20:42.486 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@12b0404f: startup date [Sat Jan 05 01:20:40 CST 2019]; root of context hierarchy
2019-01-05 01:20:42.538 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/index],methods=[GET]}" onto public java.lang.String com.ls.controller.HelloController.index()
2019-01-05 01:20:42.541 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/]}" onto public java.lang.String com.ls.controller.HelloController.hello(java.lang.String)
2019-01-05 01:20:42.543 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[PUT]}" onto public java.lang.String com.ls.controller.UserController.putUser(java.lang.Long,com.ls.domain.User)
2019-01-05 01:20:42.544 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[DELETE]}" onto public java.lang.String com.ls.controller.UserController.deleteUser(java.lang.Long)
2019-01-05 01:20:42.544 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[POST]}" onto public java.lang.String com.ls.controller.UserController.postUser(com.ls.domain.User)
2019-01-05 01:20:42.545 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[GET]}" onto public com.ls.domain.User com.ls.controller.UserController.getUser(java.lang.Long)
2019-01-05 01:20:42.545 INFO 9020 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[GET]}" onto public java.util.List<com.ls.domain.User> com.ls.controller.UserController.getUserList()
2019-01-05 01:20:42.547 INFO 9020 --- [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)
2019-01-05 01:20:42.548 INFO 9020 --- [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)
2019-01-05 01:20:42.565 INFO 9020 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:20:42.566 INFO 9020 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:20:42.600 WARN 9020 --- [main] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
2019-01-05 01:20:42.634 INFO 9020 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2019-01-05 01:20:42.705 INFO 9020 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2019-01-05 01:20:42.736 INFO 9020 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2019-01-05 01:20:42.739 INFO 9020 --- [main] com.ls.Application : Started Application in 3.585 seconds (JVM running for 5.081)
2019-01-05 01:20:45.517 INFO 9020 --- [http-nio-8080-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2019-01-05 01:20:45.517 INFO 9020 --- [http-nio-8080-exec-2] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2019-01-05 01:20:45.538 INFO 9020 --- [http-nio-8080-exec-2] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 21 ms
2019-01-05 01:21:10.726 INFO 24508 --- [main] com.ls.Application : Starting Application on ZB-PF115ML1 with PID 24508 (D:\IdeaProjects\lishuai-notes\ls-springboot2\springboot-01-quickstart\target\classes started by lishuai29 in D:\IdeaProjects\lishuai-notes)
2019-01-05 01:21:10.729 INFO 24508 --- [main] com.ls.Application : No active profile set, falling back to default profiles: default
2019-01-05 01:21:10.901 INFO 24508 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@65d6b83b: startup date [Sat Jan 05 01:21:10 CST 2019]; root of context hierarchy
2019-01-05 01:21:12.552 INFO 24508 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2019-01-05 01:21:12.567 INFO 24508 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-01-05 01:21:12.567 INFO 24508 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.32
2019-01-05 01:21:12.571 INFO 24508 --- [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:\soft-install\jdk8\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Lenovo\Touch Fingerprint Software\;C:\Program Files (x86)\Intel\UCRT\;C:\Program Files\Intel\UCRT\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\soft-install\Anaconda3;D:\soft-install\Anaconda3\Scripts;D:\soft-install\Anaconda3\Library\bin;D:\anzhuangbao\maven\apache-maven-2.2.1-bin\apache-maven-2.2.1\bin;D:\soft-install\jdk8\bin;D:\soft-install\jdk8\jre\bin;D:\soft-install\Lenovo Fingerprint Reader\;D:\soft-install\Lenovo Fingerprint Reader\x86\;C:\Program Files\MySQL\MySQL Server 5.5\bin;D:\soft-install\MySQL\MySQL Server 5.5\bin;D:\soft-install\git2.16\Git\cmd;D:\soft-install\TortoiseGit\bin;D:\soft-install\nodejs\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\lishuai29\AppData\Roaming\npm;.]
2019-01-05 01:21:12.641 INFO 24508 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-01-05 01:21:12.641 INFO 24508 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1740 ms
2019-01-05 01:21:12.685 INFO 24508 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Servlet dispatcherServlet mapped to [/]
2019-01-05 01:21:12.688 INFO 24508 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-01-05 01:21:12.689 INFO 24508 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-01-05 01:21:12.689 INFO 24508 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-01-05 01:21:12.689 INFO 24508 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2019-01-05 01:21:12.768 INFO 24508 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:21:12.929 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@65d6b83b: startup date [Sat Jan 05 01:21:10 CST 2019]; root of context hierarchy
2019-01-05 01:21:12.967 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/index],methods=[GET]}" onto public java.lang.String com.ls.controller.HelloController.index()
2019-01-05 01:21:12.968 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/]}" onto public java.lang.String com.ls.controller.HelloController.hello(java.lang.String)
2019-01-05 01:21:12.970 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[PUT]}" onto public java.lang.String com.ls.controller.UserController.putUser(java.lang.Long,com.ls.domain.User)
2019-01-05 01:21:12.970 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[DELETE]}" onto public java.lang.String com.ls.controller.UserController.deleteUser(java.lang.Long)
2019-01-05 01:21:12.970 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[POST]}" onto public java.lang.String com.ls.controller.UserController.postUser(com.ls.domain.User)
2019-01-05 01:21:12.971 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[GET]}" onto public com.ls.domain.User com.ls.controller.UserController.getUser(java.lang.Long)
2019-01-05 01:21:12.971 INFO 24508 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/],methods=[GET]}" onto public java.util.List<com.ls.domain.User> com.ls.controller.UserController.getUserList()
2019-01-05 01:21:12.974 INFO 24508 --- [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)
2019-01-05 01:21:12.975 INFO 24508 --- [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)
2019-01-05 01:21:12.995 INFO 24508 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:21:12.996 INFO 24508 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-01-05 01:21:13.033 WARN 24508 --- [main] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
2019-01-05 01:21:13.082 INFO 24508 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2019-01-05 01:21:13.171 INFO 24508 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2019-01-05 01:21:13.214 INFO 24508 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2019-01-05 01:21:13.219 INFO 24508 --- [main] com.ls.Application : Started Application in 3.443 seconds (JVM running for 4.506)
2019-01-05 01:21:17.079 INFO 24508 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2019-01-05 01:21:17.079 INFO 24508 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2019-01-05 01:21:17.093 INFO 24508 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 14 ms