일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- KAKAOLOGINAPI
- 김영한JPA
- 데이터베이스 방언
- http
- Git
- HTTP3
- initialDelay
- gitrevert
- Transaction not successfully started
- Invalid bound statement (not found)
- 캐쉬가능
- fixedDelay
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- 멱등활용
- DB방언
- @Table
- SpringBoot
- 무상태프로토콜
- @Entity
- 매핑정보가없는필드
- 네이버로그인API
- hibernate.dialect
- RFC723x
- anyMatch
- gitreset
- JPA
- 자바ORM표준프로그래밍
- 네이버 연결된 서비스
- org.apache.ibatis.binding.BindingException
- HTTPMESSAGE
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