Forgive the question if its an old chestnut. :-)
Is it possible to combine step scope to pass job parameters into beans within in a job which are created on context initialisation via @Component annotations.
This is within a webapp I'm working on. If I define the beans using xml they don't autowire dependencies hence we're using @Component throughout our project.
I am pondering something like
<bean id="myBean" ref="componentBean"
scope="step" />
In order to "late bind" parameters at
run time.
TIA,
David.


Reply With Quote