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 |
Tags
- java
- VMware
- 주민번호마스킹
- 서울에어비앤비
- CentOS8
- 멀티쓰레드프로그래밍
- Codewars
- Eclipse
- 이것이리눅스다
- Python
- 시즌1
- 6kyu
- class파일바로보기
- 서울복층에어비앤비
- 중첩쿼리
- 오류
- CentOS
- 남산타워뷰
- 파이썬
- Linux
- 이클립스
- 사용자변경
- Oralce
- https
- JavaScript
- SQL
- 8kyu
- 자바기초스터디
- monthPicker
- 7kyu
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