Spring boot + redis +

22:33:19.050 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Included patterns for restart : []
22:33:19.053 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Excluded patterns for restart : [/spring-boot-starter/target/classes/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot/target/classes/, /spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/]
22:33:19.053 [main] DEBUG org.springframework.boot.devtools.restart.ChangeableUrls - Matching URLs for reloading : [file:/F:/microservicecode/srccode/microservice-admin/target/classes/]

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.5.6.RELEASE)

2018-09-19 22:33:19.477  INFO 2608 --- [  restartedMain] com.itheima.springboot.Application       : Starting Application on djqno1 with PID 2608 (F:\microservicecode\srccode\microservice-admin\target\classes started by DJQ in F:\microservicecode\srccode\microservice-admin)
2018-09-19 22:33:19.478 DEBUG 2608 --- [  restartedMain] com.itheima.springboot.Application       : Running with Spring Boot v1.5.6.RELEASE, Spring v4.3.10.RELEASE
2018-09-19 22:33:19.478  INFO 2608 --- [  restartedMain] com.itheima.springboot.Application       : No active profile set, falling back to default profiles: default
2018-09-19 22:33:19.541  INFO 2608 --- [  restartedMain] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@65261906: startup date [Wed Sep 19 22:33:19 GMT+08:00 2018]; root of context hierarchy
2018-09-19 22:33:20.583  INFO 2608 --- [  restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2018-09-19 22:33:21.885  INFO 2608 --- [  restartedMain] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2018-09-19 22:33:21.898  INFO 2608 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2018-09-19 22:33:21.900  INFO 2608 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.16
2018-09-19 22:33:22.025  INFO 2608 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2018-09-19 22:33:22.026  INFO 2608 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2489 ms
2018-09-19 22:33:22.164  INFO 2608 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2018-09-19 22:33:22.168  INFO 2608 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2018-09-19 22:33:22.169  INFO 2608 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2018-09-19 22:33:22.169  INFO 2608 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2018-09-19 22:33:22.169  INFO 2608 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2018-09-19 22:33:23.062  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@65261906: startup date [Wed Sep 19 22:33:19 GMT+08:00 2018]; root of context hierarchy
2018-09-19 22:33:23.128  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/send]}" onto public void com.itheima.springboot.controller.QueueController.send()
2018-09-19 22:33:23.130  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user/delete/{id}]}" onto public void com.itheima.springboot.controller.UserController.delete(java.lang.Integer)
2018-09-19 22:33:23.131  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user/userList]}" onto public java.util.List<com.itheima.springboot.po.User> com.itheima.springboot.controller.UserController.getAllUsers()
2018-09-19 22:33:23.133  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2018-09-19 22:33:23.133  INFO 2608 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2018-09-19 22:33:23.168  INFO 2608 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-09-19 22:33:23.168  INFO 2608 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-09-19 22:33:23.208  INFO 2608 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-09-19 22:33:23.626  INFO 2608 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2018-09-19 22:33:23.630  WARN 2608 --- [  restartedMain] arterDeprecationWarningAutoConfiguration : spring-boot-starter-redis is deprecated as of Spring Boot 1.4, please migrate to spring-boot-starter-data-redis
2018-09-19 22:33:23.685  INFO 2608 --- [  restartedMain] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2018-09-19 22:33:23.713  INFO 2608 --- [  restartedMain] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 2147483647
2018-09-19 22:33:23.984  INFO 2608 --- [  restartedMain] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2018-09-19 22:33:23.989  INFO 2608 --- [  restartedMain] com.itheima.springboot.Application       : Started Application in 4.916 seconds (JVM running for 5.517)
2018-09-19 22:33:36.509  INFO 2608 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring FrameworkServlet 'dispatcherServlet'
2018-09-19 22:33:36.509  INFO 2608 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization started
2018-09-19 22:33:36.532  INFO 2608 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization completed in 23 ms
2018-09-19 22:33:37.063 DEBUG 2608 --- [nio-8080-exec-8] c.i.s.mapper.UserMapper.getAllUsers      : ==>  Preparing: select * from tb_user 
2018-09-19 22:33:37.090 DEBUG 2608 --- [nio-8080-exec-8] c.i.s.mapper.UserMapper.getAllUsers      : ==> Parameters: 
2018-09-19 22:33:37.120 DEBUG 2608 --- [nio-8080-exec-8] c.i.s.mapper.UserMapper.getAllUsers      : <==      Total: 3

猜你喜欢

转载自blog.csdn.net/strideahead/article/details/82779539