Hi all,
I have a simple Spring Batch job where I want one Spring bean called "oracleLoader" to load some data and another bean called "oracleWriter" to write that data. Here is the spring configuration XML file for it...
And here is the code from my
Junit...
Right now this is failing with the error....
I am guessing this is because of the
in my configuration file, but I am at a loss how to fix it. Is there a different way I should be defining my batch job.
Thanks for any help.