I have a configuration like below:
batch:job id="reconciliationJob" job-repository="jobRepository" restartable="true"
and while running the application context, I get something like this in the log:
[INFO] [] [] Overriding the bean definition for a bean 'reconciliationJob': replacement [Generic bean: class [org.springframework.batch.core.configuration.xml.SimpleFlowFactoryBean]; Volume =; abstract = false; lazyInit = false; autowireMode = 0; dependencyCheck = 0; autowireCandidate = TRUE; primary = false; factoryBeanName = NULL; factoryMethodName = NULL; initMethodName = NULL; destroyMethodName = null] using [Generic bean: class [org.springframework.batch.core.configuration.xml.JobParserJobFactoryBean]; Volume =; abstract = false; lazyInit = false; autowireMode = 0; dependencyCheck = 0; autowireCandidate = TRUE; primary = false; factoryBeanName = NULL; factoryMethodName = NULL; initMethodName = NULL; destroyMethodName = NULL]
How can I solve this problem?
source share