0

I need to to change the spring batch application where I don't need to persist in the spring batch metadata tables, instead I need to use the in memory metadata. My application is not Spring-Boot application, and I am using java configuration for spring. Also I need to persist into the application tables so I need to use datasource.

Vikas
  • 107
  • 1
  • 10

1 Answers1

0

Add in-memory DB to your Gradle project dependencies, for example, h2 :

compile 'com.h2database:h2:1.4.194'

Batch automatically will store the metadata in h2.

Valeriy K.
  • 2,616
  • 1
  • 30
  • 53