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
- Security
- 에러
- Vue
- 스프링
- 자바
- 시큐리티
- 넥사크로
- error
- Spring
- Java
- 쿼리
- 함수
- GitHub
- 방법
- 오라클
- 생성
- IntelliJ
- 알고리즘
- db
- JPA
- kotlin
- 프로그래머스
- Git
- mybatis
- aws
- JavaScript
- 코틀린
- Eclipse
- jquery
- oracle
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