Trying to configure Spring Batch Job Repository
I'm trying to setup a Spring Batch project from scratch to understand how the plumbing fits together (as opposed to using an eclipse / Spring Batch template project).
I've followed this series of tutorials upto this point http://numberformat.wordpress.com/20...ob-repository/ .
Where I'm getting stuck is trying to configure the internal job repository to work with my database (Postgres in my case). I've done this in the past by tweaking working spring batch template projects and I feel the approach presented in the tutorial is somewhat cumbersome (specifying DDLs , initializer classes etc ..., as opposed to using inbuilt Spring functionality).
However, when I attempt to execute a simple batch program, I get the following error. Looking at the DB, the tables and sequences are created (verified by wiping them and re-executing the program) but it appears that there is a duplicate attempt to create them (that fails).
Thanks in advance for any help. The XML config should be visible when the moderator approves their posting