Advertisement
Guest User

Untitled

a guest
Dec 29th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.54 KB | None | 0 0
  1.  
  2. . ____ _ __ _ _
  3. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  4. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  5. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  6. ' |____| .__|_| |_|_| |_\__, | / / / /
  7. =========|_|==============|___/=/_/_/_/
  8. :: Spring Boot :: (v1.4.3.RELEASE)
  9.  
  10. 2016-12-29 11:37:27.228 INFO 5573 --- [ restartedMain] hello.Application : Starting Application on patryk-ubuntu with PID 5573 (/home/patryk/IdeaProjects/vetclinic-project/target/classes started by patryk in /home/patryk/IdeaProjects/vetclinic-project)
  11. 2016-12-29 11:37:27.240 INFO 5573 --- [ restartedMain] hello.Application : No active profile set, falling back to default profiles: default
  12. 2016-12-29 11:37:27.969 INFO 5573 --- [ restartedMain] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e5872a: startup date [Thu Dec 29 11:37:27 CET 2016]; root of context hierarchy
  13. 2016-12-29 11:37:30.733 INFO 5573 --- [ restartedMain] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
  14. 2016-12-29 11:37:30.785 INFO 5573 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service Tomcat
  15. 2016-12-29 11:37:30.787 INFO 5573 --- [ restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.6
  16. 2016-12-29 11:37:30.927 INFO 5573 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  17. 2016-12-29 11:37:30.928 INFO 5573 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2963 ms
  18. 2016-12-29 11:37:31.219 INFO 5573 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
  19. 2016-12-29 11:37:31.224 INFO 5573 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
  20. 2016-12-29 11:37:31.225 INFO 5573 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  21. 2016-12-29 11:37:31.225 INFO 5573 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
  22. 2016-12-29 11:37:31.226 INFO 5573 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
  23. 2016-12-29 11:37:31.708 INFO 5573 --- [ restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e5872a: startup date [Thu Dec 29 11:37:27 CET 2016]; root of context hierarchy
  24. 2016-12-29 11:37:31.809 INFO 5573 --- [ restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello]}" onto public java.lang.String hello.HelloController.index()
  25. 2016-12-29 11:37:31.813 INFO 5573 --- [ restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[GET]}" onto public java.lang.String hello.HomeController.get(java.lang.String,org.springframework.ui.Model)
  26. 2016-12-29 11:37:31.816 INFO 5573 --- [ 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)
  27. 2016-12-29 11:37:31.817 INFO 5573 --- [ 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)
  28. 2016-12-29 11:37:31.859 INFO 5573 --- [ restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  29. 2016-12-29 11:37:31.859 INFO 5573 --- [ restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  30. 2016-12-29 11:37:31.912 INFO 5573 --- [ restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  31. 2016-12-29 11:37:32.655 INFO 5573 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  32. 2016-12-29 11:37:32.734 INFO 5573 --- [ restartedMain] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
  33. 2016-12-29 11:37:32.864 INFO 5573 --- [ restartedMain] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
  34. 2016-12-29 11:37:32.878 INFO 5573 --- [ restartedMain] hello.Application : Started Application in 6.706 seconds (JVM running for 7.638)
  35. 2016-12-29 11:37:41.270 INFO 5573 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
  36. 2016-12-29 11:37:41.270 INFO 5573 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
  37. 2016-12-29 11:37:41.290 INFO 5573 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 19 ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement