You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.