Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 서울에어비앤비
- 주민번호마스킹
- 자바기초스터디
- https
- 중첩쿼리
- 사용자변경
- 6kyu
- Linux
- 이것이리눅스다
- 남산타워뷰
- Eclipse
- monthPicker
- 7kyu
- JavaScript
- 시즌1
- 오류
- SQL
- Oralce
- 이클립스
- 멀티쓰레드프로그래밍
- 서울복층에어비앤비
- java
- Python
- VMware
- 8kyu
- CentOS8
- Codewars
- 파이썬
- class파일바로보기
- CentOS
Archives
- Today
- Total
목록Quartz (1)
보통사람
Spring Boot Quartz 연동 예제
환경설정 개발툴 : InteliJ Spring Boot : 2.7.14 Quartz : 2.3.2 Java : 11 Gradle 1. bulid.gradle 파일에 추가 implementation "org.springframework.boot:spring-boot-starter-quartz" 2. @Scheduled 어노테이션을 이용 스케쥴러를 적용할 메소드에 @Scheduled 어노테이션을 사용한다. @Controller public class QuartzController { @Scheduled(cron = "0/5 * * * * ?") public void everyFiveSeconds() { DateTimeFormatter patten = DateTimeFormatter.ofPattern("yyy..
Spring
2023. 8. 13. 00:34