Created
August 30, 2018 10:33
-
-
Save joaoqalves/592e613c86dcf1c8cc3ea2251660a1c4 to your computer and use it in GitHub Desktop.
In Memory Batch Configurer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.sql.DataSource; | |
import org.springframework.batch.core.configuration.annotation.DefaultBatchConfigurer; | |
public class InMemoryBatchConfigurer extends DefaultBatchConfigurer { | |
public void setDataSource(DataSource dataSource) { | |
// This is intentionally left blank | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment