Field or property 'jobParameters' cannot be found on object of type 'org.springframework.beans.factory.config.BeanExpressionContext' - Spring Batch
This Error happens when you are trying to retrieve a Job Execution parameter and inject it into a Bean. The bean can be anything a Task let, or a StatmentSetter the error can happen.
E.g Implementation
Using a scope of
Check out the Documentation here ..
http://docs.spring.io/spring-batch/reference/html/configureStep.html#step-scope
E.g Implementation
<bean id="flatFileItemReader" scope="step" class="org.springframework.batch.item.file.FlatFileItemReader"> <property name="resource" value="#{jobParameters[input.file.name]}" /> </bean>
The error is because of the Scope parameter missingUsing a scope of
Step
is required in order to use late binding since the bean cannot actually be instantiated until the Step
starts, which allows the attributes to be found. Because it is not part of the Spring container by default, the scope must be added explicitly.Check out the Documentation here ..
http://docs.spring.io/spring-batch/reference/html/configureStep.html#step-scope
Comments
Post a Comment