My database Sap Hana db is not supported for Spring Batch. I am looking for a guide on how to implement my own DAOs for SimpleJobRepository for SpringBatch. Has tried this b
I manage to fix the problem above by implementing my own DataFieldMaxValueIncrementerFactory and my own DatabaseType then I autowired the values to SimpleJobServerFactory.
Spring Batch 3 offers the opportunity to inject custom database types.
Check DatabaseType and JobRepositoryFactotyBean.setDatabaseType() (instead of let SB autodetect database type from datasource).
Of course you need to create scripts for metadata tables creation (use this blog post for an example and official doc)