일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- RFC723x
- anyMatch
- HTTPMESSAGE
- 데이터베이스 방언
- Invalid bound statement (not found)
- hibernate.dialect
- HTTP3
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- 김영한JPA
- SpringBoot
- Transaction not successfully started
- gitreset
- gitrevert
- fixedDelay
- 네이버로그인API
- http
- 무상태프로토콜
- 매핑정보가없는필드
- @Entity
- 자바ORM표준프로그래밍
- JPA
- @Table
- 네이버 연결된 서비스
- DB방언
- KAKAOLOGINAPI
- org.apache.ibatis.binding.BindingException
- 캐쉬가능
- initialDelay
- Git
- 멱등활용
Archives
- Today
- Total
목록@EnableScheduling (1)
twocowsong
@Scheduled
특정 월, 일, 시간에 자동으로 실행되게 하고싶은 경우가 있습니다. (예를들면 DB데이터를 월말 월초에 조회하여 엑셀파일로 만든는경우?) 스프링부트에서는 간편하게 Scheduled를 사용하여 만들수 있습니다. Scheduled를 사용하기 위한 준비 @SpringBootApplication @EnableScheduling public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } @SpringBootApplication이 존재하는 클래스에서 @EnableScheduling를 꼭 추가해주어야 실행이 가능합니다. 지정된 시간만큼 반복 하는 방..
IT/SpringBoot
2022. 1. 23. 19:07