I am using spring batch to parse my files. I want to use spring Batch Admin for job inspection, job launching, job execution. Spring Batch Admin uses HSQLDB database, which is initialized on start up. My spring batch project uses its own database which includes the appropriate tables for spring batch:
- BATCH_JOB_INSTANCE
- BATCH_JOB_PARAMS
- BATCH_JOB_EXECUTION
- BATCH_STEP_EXECUTION
- BATCH_JOB_EXECUTION_CONTEXT
- BATCH_STEP_EXECUTION_CONTEXT
- BATCH_STEP_EXECUTION_SEQ
- BATCH_JOB_EXECUTION_SEQ
- BATCH_JOB_SEQ
In my database also are included some else tables which are used from my project.
I want Spring Batch Admin to use the upper tables of my database instead of its own database. Is there any way to do that?