Skip to content

Instantly share code, notes, and snippets.

@mminella
Created October 11, 2017 20:29
Show Gist options
  • Save mminella/05ed32cd4bd589decf1450b06a40022d to your computer and use it in GitHub Desktop.
Save mminella/05ed32cd4bd589decf1450b06a40022d to your computer and use it in GitHub Desktop.
➜ spring-boot-transaction-manager-spring-batch git:(master) ✗ java -jar target/spring-boot-transaction-manager-spring-batch-1.5.6.RELEASE.jar
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.6.RELEASE)
2017-10-11 15:25:49.424 INFO 63017 --- [ main] example.Application : Starting Application v1.5.6.RELEASE on Michaels-MBP-5 with PID 63017 (/Users/mminella/Documents/IntelliJWorkspace/spring-boot-transaction-manager-spring-batch/target/spring-boot-transaction-manager-spring-batch-1.5.6.RELEASE.jar started by mminella in /Users/mminella/Documents/IntelliJWorkspace/spring-boot-transaction-manager-spring-batch)
2017-10-11 15:25:49.429 DEBUG 63017 --- [ main] example.Application : Running with Spring Boot v1.5.6.RELEASE, Spring v4.3.10.RELEASE
2017-10-11 15:25:49.430 INFO 63017 --- [ main] example.Application : No active profile set, falling back to default profiles: default
2017-10-11 15:25:49.523 INFO 63017 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5cb0d902: startup date [Wed Oct 11 15:25:49 CDT 2017]; root of context hierarchy
2017-10-11 15:25:49.952 INFO 63017 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'transactionManager' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=configurationForTransactionManager; factoryMethodName=transactionManager; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [example/config/ConfigurationForTransactionManager.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.batch.core.configuration.annotation.SimpleBatchConfiguration; factoryMethodName=transactionManager; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/batch/core/configuration/annotation/SimpleBatchConfiguration.class]]
2017-10-11 15:25:50.389 WARN 63017 --- [ main] o.s.c.a.ConfigurationClassEnhancer : @Bean method ScopeConfiguration.stepScope is non-static and returns an object assignable to Spring's BeanFactoryPostProcessor interface. This will result in a failure to process annotations such as @Autowired, @Resource and @PostConstruct within the method's declaring @Configuration class. Add the 'static' modifier to this method to avoid these container lifecycle issues; see @Bean javadoc for complete details.
2017-10-11 15:25:50.402 WARN 63017 --- [ main] o.s.c.a.ConfigurationClassEnhancer : @Bean method ScopeConfiguration.jobScope is non-static and returns an object assignable to Spring's BeanFactoryPostProcessor interface. This will result in a failure to process annotations such as @Autowired, @Resource and @PostConstruct within the method's declaring @Configuration class. Add the 'static' modifier to this method to avoid these container lifecycle issues; see @Bean javadoc for complete details.
2017-10-11 15:25:51.003 INFO 63017 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-10-11 15:25:51.017 INFO 63017 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-10-11 15:25:51.018 INFO 63017 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.16
2017-10-11 15:25:51.126 INFO 63017 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2017-10-11 15:25:51.126 INFO 63017 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1607 ms
2017-10-11 15:25:51.248 INFO 63017 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-10-11 15:25:51.251 INFO 63017 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-10-11 15:25:51.251 INFO 63017 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-10-11 15:25:51.252 INFO 63017 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-10-11 15:25:51.252 INFO 63017 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-10-11 15:25:51.731 INFO 63017 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5cb0d902: startup date [Wed Oct 11 15:25:49 CDT 2017]; root of context hierarchy
2017-10-11 15:25:51.832 INFO 63017 --- [ 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)
2017-10-11 15:25:51.833 INFO 63017 --- [ 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,javax.servlet.http.HttpServletResponse)
2017-10-11 15:25:51.865 INFO 63017 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-11 15:25:51.866 INFO 63017 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-11 15:25:51.921 INFO 63017 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-11 15:25:52.408 INFO 63017 --- [ main] o.s.jdbc.datasource.init.ScriptUtils : Executing SQL script from class path resource [org/springframework/batch/core/schema-hsqldb.sql]
2017-10-11 15:25:52.421 INFO 63017 --- [ main] o.s.jdbc.datasource.init.ScriptUtils : Executed SQL script from class path resource [org/springframework/batch/core/schema-hsqldb.sql] in 13 ms.
2017-10-11 15:25:52.609 INFO 63017 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-10-11 15:25:52.680 INFO 63017 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-10-11 15:25:52.683 INFO 63017 --- [ main] o.s.b.a.b.JobLauncherCommandLineRunner : Running default command line with: []
2017-10-11 15:25:52.684 INFO 63017 --- [ main] example.Application : Started Application in 3.609 seconds (JVM running for 4.045)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment