From 78e90ab278099e36c2f0e29b85c6c3cb0af4ac3b Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Thu, 20 Jul 2017 13:08:26 -0500 Subject: [PATCH] Updated to use latest Boot paradigms --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 57dbcb86f..4f8b57d72 100644 --- a/index.html +++ b/index.html @@ -75,8 +75,6 @@ The quickest way to get started with Spring Batch is to use Spring Boot. ````java @Configuration - @EnableBatchProcessing - @EnableAutoConfiguration public class BatchConfiguration { @Autowired @@ -108,6 +106,8 @@ The quickest way to get started with Spring Batch is to use Spring Boot. 3. Create a main class to run your batch job from ````java + @EnableBatchProcessing + @SpringBootApplication public class Main { public static void main(String [] args) { System.exit(SpringApplication.exit(SpringApplication.run(