Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Git
- Vue
- Eclipse
- 프로그래머스
- aws
- 코틀린
- 시큐리티
- Java
- 스프링
- jquery
- 쿼리
- 함수
- Spring
- mybatis
- 방법
- JavaScript
- JPA
- oracle
- GitHub
- IntelliJ
- 자바
- 생성
- 오라클
- Security
- db
- 넥사크로
- 에러
- kotlin
- error
- 알고리즘
Archives
- Today
- Total
목록웹/Spring Batch (1)
송민준의 개발노트
스프링 배치 초기세팅
@SpringBootApplication // 총 4개의 설정 클래스를 실행시키며 스프링 배치의 모든 초기화 및 실행 구성이 이루어진다 @EnableBatchProcessing public class SpringBatchApplication { public static void main(String[] args) { SpringApplication.run(SpringBatchApplication.class, args); } } 스프링 배치 초기화 설정 클래스는 총 3가지가 있다. 1. BatchAutoConfiguration - 배치가 초기화 될 때 자동으로 실행되는 설정 클래스 - Job을 수행하는 JobLauncherApplicationRunner 빈을 생성 2. SimpleBatchConfigura..
웹/Spring Batch
2022. 7. 25. 23:03