本文整理汇总了Java中org.springframework.batch.core.configuration.annotation.BatchConfigurer类的典型用法代码示例。如果您正苦于以下问题:Java BatchConfigurer类的具体用法?Java BatchConfigurer怎么用?Java BatchConfigurer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BatchConfigurer类属于org.springframework.batch.core.configuration.annotation包,在下文中一共展示了BatchConfigurer类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getJobRepository
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(JobRepository.class)
public JobRepository getJobRepository() throws Exception {
BatchConfigurer batchConfigurer = getBatchConfigurer();
if (batchConfigurer != null) {
return batchConfigurer.getJobRepository();
}
JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean();
factory.setDataSource(dataSource);
factory.setTransactionManager(transactionManager);
factory.afterPropertiesSet();
// factory.setIsolationLevelForCreate("ISOLATION_DEFAULT");
return factory.getObject();
}
示例2: getJobLauncher
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(JobLauncher.class)
public JobLauncher getJobLauncher() throws Exception {
BatchConfigurer batchConfigurer = getBatchConfigurer();
if (batchConfigurer != null) {
return batchConfigurer.getJobLauncher();
}
return null;
}
示例3: getJobExplorer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(JobExplorer.class)
public JobExplorer getJobExplorer() throws Exception {
BatchConfigurer batchConfigurer = getBatchConfigurer();
if (batchConfigurer != null) {
return batchConfigurer.getJobExplorer();
}
JobExplorerFactoryBean jobExplorerFactoryBean = new JobExplorerFactoryBean();
jobExplorerFactoryBean.setDataSource(dataSource);
return jobExplorerFactoryBean.getObject();
}
示例4: batchConfigurer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
@Conditional(UseMarkLogicBatchCondition.class)
public BatchConfigurer batchConfigurer(
@Qualifier(value = "markLogicJobRepositoryDatabaseClientProvider") DatabaseClientProvider databaseClientProvider,
BatchProperties batchProperties) {
return new MarkLogicBatchConfigurer(databaseClientProvider, batchProperties);
}
示例5: getBatchConfigurer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
protected BatchConfigurer getBatchConfigurer() {
if (isEmpty(this.batchConfigurers)) {
return null;
}
return this.batchConfigurers.get(0);
}
示例6: batchConfigurer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
BatchConfigurer batchConfigurer() {
return new DefaultBatchConfigurer(dataSource());
}
示例7: batchConfigurer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
BatchConfigurer batchConfigurer(DataSource dataSource) {
return new DefaultBatchConfigurer(dataSource);
}
示例8: batchConfigurer
import org.springframework.batch.core.configuration.annotation.BatchConfigurer; //导入依赖的package包/类
@Bean
public BatchConfigurer batchConfigurer() {
return new CustomBatchConfigurer(this.dataSource);
}