Skip to content

Instantly share code, notes, and snippets.

@mraible
Created July 13, 2015 19:03
Show Gist options
  • Save mraible/e89ff7f5b5c620ca9def to your computer and use it in GitHub Desktop.
Save mraible/e89ff7f5b5c620ca9def to your computer and use it in GitHub Desktop.
spring-boot with Shiro Startup
2015-07-13 13:02:13.117 INFO 10456 --- [lication.main()] security.Application : Starting Application on mraible-2.local with PID 10456 (/Users/mraible/dev/java-webapp-security-examples/apache-shiro/target/classes started by mraible in /Users/mraible/dev/java-webapp-security-examples/apache-shiro)
2015-07-13 13:02:13.145 INFO 10456 --- [lication.main()] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5accd554: startup date [Mon Jul 13 13:02:13 MDT 2015]; root of context hierarchy
2015-07-13 13:02:13.473 INFO 10456 --- [lication.main()] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'beanNameViewResolver': replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]]
2015-07-13 13:02:13.663 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'webSecurityConfig' of type [class security.WebSecurityConfig$$EnhancerBySpringCGLIB$$a9ad28e1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.787 DEBUG 10456 --- [lication.main()] org.apache.shiro.realm.AuthorizingRealm : No authorizationCache instance set. Checking for a cacheManager...
2015-07-13 13:02:13.787 INFO 10456 --- [lication.main()] org.apache.shiro.realm.AuthorizingRealm : No cache or cacheManager properties have been set. Authorization cache cannot be obtained.
2015-07-13 13:02:13.795 DEBUG 10456 --- [lication.main()] o.a.s.spring.LifecycleBeanPostProcessor : Initializing bean [realm]...
2015-07-13 13:02:13.796 DEBUG 10456 --- [lication.main()] org.apache.shiro.realm.AuthorizingRealm : No authorizationCache instance set. Checking for a cacheManager...
2015-07-13 13:02:13.796 INFO 10456 --- [lication.main()] org.apache.shiro.realm.AuthorizingRealm : No cache or cacheManager properties have been set. Authorization cache cannot be obtained.
2015-07-13 13:02:13.796 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'realm' of type [class org.apache.shiro.realm.jdbc.JdbcRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.805 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'securityManager' of type [class org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.842 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$5ef49654] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.854 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'transactionAttributeSource' of type [class org.springframework.transaction.annotation.AnnotationTransactionAttributeSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.862 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'transactionInterceptor' of type [class org.springframework.transaction.interceptor.TransactionInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:13.866 INFO 10456 --- [lication.main()] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.config.internalTransactionAdvisor' of type [class org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2015-07-13 13:02:14.080 INFO 10456 --- [lication.main()] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8443 (https)
2015-07-13 13:02:14.212 INFO 10456 --- [lication.main()] o.apache.catalina.core.StandardService : Starting service Tomcat
2015-07-13 13:02:14.213 INFO 10456 --- [lication.main()] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.0.23
2015-07-13 13:02:14.461 INFO 10456 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2015-07-13 13:02:14.461 INFO 10456 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1319 ms
2015-07-13 13:02:14.516 DEBUG 10456 --- [ost-startStop-1] o.a.s.spring.web.ShiroFilterFactoryBean : Creating Shiro Filter instance.
2015-07-13 13:02:14.524 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/login] from String definition [authc]
2015-07-13 13:02:14.524 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/login] to filter [authc] with config [null]
2015-07-13 13:02:14.525 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/logout] from String definition [logout]
2015-07-13 13:02:14.525 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/logout] to filter [logout] with config [null]
2015-07-13 13:02:14.525 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/api/health] from String definition [authc,roles[guest],ssl[8443]]
2015-07-13 13:02:14.525 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/api/health] to filter [authc] with config [null]
2015-07-13 13:02:14.525 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/api/health] to filter [roles] with config [guest]
2015-07-13 13:02:14.526 DEBUG 10456 --- [ost-startStop-1] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/api/health] to filter [ssl] with config [8443]
2015-07-13 13:02:14.540 DEBUG 10456 --- [ost-startStop-1] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'hiddenHttpMethodFilter'
2015-07-13 13:02:14.558 DEBUG 10456 --- [ost-startStop-1] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'characterEncodingFilter'
2015-07-13 13:02:14.861 INFO 10456 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean : Mapping servlet: 'webServlet' to [/console/*]
2015-07-13 13:02:14.862 INFO 10456 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2015-07-13 13:02:14.863 INFO 10456 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2015-07-13 13:02:14.864 INFO 10456 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2015-07-13 13:02:14.864 INFO 10456 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'shiroFilter' to: [/*]
2015-07-13 13:02:15.040 INFO 10456 --- [lication.main()] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5accd554: startup date [Mon Jul 13 13:02:13 MDT 2015]; root of context hierarchy
2015-07-13 13:02:15.091 INFO 10456 --- [lication.main()] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/api/health]}" onto public security.Health security.HealthResource.health()
2015-07-13 13:02:15.092 INFO 10456 --- [lication.main()] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2015-07-13 13:02:15.092 INFO 10456 --- [lication.main()] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest)
2015-07-13 13:02:15.103 INFO 10456 --- [lication.main()] o.s.w.s.handler.SimpleUrlHandlerMapping : Root mapping to handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
2015-07-13 13:02:15.104 INFO 10456 --- [lication.main()] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
2015-07-13 13:02:15.268 INFO 10456 --- [lication.main()] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-07-13 13:02:15.268 INFO 10456 --- [lication.main()] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-07-13 13:02:15.307 INFO 10456 --- [lication.main()] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-07-13 13:02:15.594 INFO 10456 --- [lication.main()] o.s.jdbc.datasource.init.ScriptUtils : Executing SQL script from URL [file:/Users/mraible/dev/java-webapp-security-examples/apache-shiro/src/main/resources/schema.sql]
2015-07-13 13:02:15.598 INFO 10456 --- [lication.main()] o.s.jdbc.datasource.init.ScriptUtils : Executed SQL script from URL [file:/Users/mraible/dev/java-webapp-security-examples/apache-shiro/src/main/resources/schema.sql] in 4 ms.
2015-07-13 13:02:15.599 INFO 10456 --- [lication.main()] o.s.jdbc.datasource.init.ScriptUtils : Executing SQL script from URL [file:/Users/mraible/dev/java-webapp-security-examples/apache-shiro/src/main/resources/data.sql]
2015-07-13 13:02:15.601 INFO 10456 --- [lication.main()] o.s.jdbc.datasource.init.ScriptUtils : Executed SQL script from URL [file:/Users/mraible/dev/java-webapp-security-examples/apache-shiro/src/main/resources/data.sql] in 2 ms.
2015-07-13 13:02:15.679 INFO 10456 --- [lication.main()] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2015-07-13 13:02:15.895 INFO 10456 --- [lication.main()] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8443 (https)
2015-07-13 13:02:15.897 INFO 10456 --- [lication.main()] security.Application : Started Application in 3.014 seconds (JVM running for 5.523)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment