Closed
Description
As of v5.0.1, there is no way to specify the database type through @EnableBatchProcessing
. It should be possible to specify that parameter like other parameters, for example:
@Configuration
@EnableBatchProcessing(tablePrefix="Test", databaseType="Oracle")
public class MyBatchJobConfiguration {
}
The workaround to this is to manually customize the job repository bean by using JobRepositoryFactoryBean#setDatabaseType
.