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