# 82. 批处理应用

本节回答在Spring Boot中使用Spring Batch时出现的问题。

**注** 默认的，批处理应用需要一个`数据源`来存储job细节。如果你想要脱离那个，你将会需要实现`BatchConfigurer`,查看[`@EnableBatchProcessing`的Javadoc](https://docs.spring.io/spring-batch/apidocs/org/springframework/batch/core/configuration/annotation/EnableBatchProcessing.html) 获取更多细节。

有关Spring Batch的更多信息，请参见[Spring Batch项目页面](https://projects.spring.io/spring-batch/)。
