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