๐ Spring Boot์์ @Scheduled
์ฌ์ฉํ๊ธฐ
Spring Boot์ @Scheduled
์ด๋
ธํ
์ด์
์ ํ์ฉํ๋ฉด ์ ํด์ง ์๊ฐ ๊ฐ๊ฒฉ์ผ๋ก ํน์ ์์
์ ์๋ ์คํํ ์ ์์ต๋๋ค.
์๋ฅผ ๋ค์ด, ์ฃผ๊ธฐ์ ์ผ๋ก ๋ด์ค RSS๋ฅผ ๊ฐ์ ธ์ ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ์ ์ฅํ๊ฑฐ๋ ํฌ๋กค๋งํ๋ ์์
์ ์๋ํํ ์ ์์ต๋๋ค.
โ
1. @EnableScheduling
ํ์ฑํ
Spring Boot์์ @Scheduled
์ ์ฌ์ฉํ๋ ค๋ฉด ์ค์ผ์ค๋ง ๊ธฐ๋ฅ์ ํ์ฑํํด์ผ ํฉ๋๋ค.@EnableScheduling
์ ๋ฉ์ธ ํด๋์ค ๋๋ ์ค์ ํด๋์ค์ ์ถ๊ฐํ๋ฉด ๋ฉ๋๋ค.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling // ์ค์ผ์ค๋ง ํ์ฑํ
public class ScheduledApp {
public static void main(String[] args) {
SpringApplication.run(ScheduledApp.class, args);
}
}
โ
2. @Scheduled
์ ํ์ฉํ ์๋ ์คํ ์์
๐ ์ฃผ๊ธฐ์ ์ผ๋ก RSS์์ ๋ด์ค ๊ฐ์ ธ์ค๊ธฐ
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
@Component
public class YahooTechNewsScheduler {
private static final String YAHOO_RSS_URL = "https://www.yahoo.com/news/rss/tech";
// 10์ด๋ง๋ค ์คํ (์ด, ๋ถ, ์๊ฐ, ์ผ, ์, ์์ผ)
@Scheduled(fixedRate = 10000) // 10์ด๋ง๋ค ์คํ
public void fetchNews() {
System.out.println("Fetching Yahoo Tech News...");
try {
// 1. Yahoo Tech RSS ๊ฐ์ ธ์ค๊ธฐ
Document doc = Jsoup.connect(YAHOO_RSS_URL).get();
Elements items = doc.select("item");
List<String> newsList = new ArrayList<>();
// 2. ๊ธฐ์ฌ 5๊ฐ ๊ฐ์ ธ์ค๊ธฐ
for (Element item : items.subList(0, Math.min(5, items.size()))) {
String title = item.selectFirst("title").text();
String link = item.selectFirst("link").text();
newsList.add("Title: " + title + "\nLink: " + link);
}
// 3. ์ถ๋ ฅ
newsList.forEach(System.out::println);
} catch (IOException e) {
e.printStackTrace();
}
}
}
โ
3. @Scheduled
์์ฑ ์์ธ ์ค๋ช
์์ฑ | ์ค๋ช | ์์ |
---|---|---|
fixedRate | ์ด์ ์คํ์ด ๋๋ ํ, ์ง์ ๋ ๊ฐ๊ฒฉ(๋ฐ๋ฆฌ์ด)๋ง๋ค ์คํ | @Scheduled(fixedRate = 5000) (5์ด๋ง๋ค ์คํ) |
fixedDelay | ์ด์ ์คํ์ด ๋๋ ํ, ์ง์ ๋ ์๊ฐ ํ์ ์คํ | @Scheduled(fixedDelay = 5000) (5์ด ํ ์คํ) |
initialDelay | ์ฒ์ ์คํ๋ ๋๊น์ง ๋๊ธฐํ๋ ์๊ฐ(๋ฐ๋ฆฌ์ด) | @Scheduled(initialDelay = 10000, fixedRate = 5000) |
cron | ํฌ๋ก ํํ์์ ์ฌ์ฉํด ํน์ ์๊ฐ์ ์คํ | @Scheduled(cron = "0 0 * * * *") (๋งค ์ ๊ฐ ์คํ) |
โ
4. cron
ํํ์ ํ์ฉ ์์
cron
ํํ์์ ์ฌ์ฉํ๋ฉด ํน์ ์๊ฐ๋์ ๋ง์ถฐ ์คํํ ์ ์์ต๋๋ค.
// ๋งค์ผ ์ค์ 6์์ ์คํ
@Scheduled(cron = "0 0 6 * * *")
// ๋งค์๊ฐ ์ ๊ฐ ์คํ
@Scheduled(cron = "0 0 * * * *")
// ๋งค์ผ 10์ด๋ง๋ค ์คํ
@Scheduled(cron = "*/10 * * * * *")
// ๋งค์ 1์ผ ์ค์ 3์์ ์คํ
@Scheduled(cron = "0 0 3 1 * *")
โ 5. ์คํ ๊ฒฐ๊ณผ ์์
๐ Fetching Yahoo Tech News...
๐ฐ AI Breakthrough in Quantum Computing
๐ https://www.yahoo.com/news/tech/ai-quantum-computing
๐ฐ Apple Announces New iPhone 16
๐ https://www.yahoo.com/news/tech/apple-iphone-16
-------------------------------------------------
๐ Fetching Yahoo Tech News...
๐ฐ AI Breakthrough in Quantum Computing
๐ https://www.yahoo.com/news/tech/ai-quantum-computing
๐ฐ Apple Announces New iPhone 16
๐ https://www.yahoo.com/news/tech/apple-iphone-16
-------------------------------------------------
โ 6. ์ ๋ฆฌ
@EnableScheduling
โ ์ค์ผ์ค๋ง ๊ธฐ๋ฅ ํ์ฑํ@Scheduled
โ ์๋ ์คํ ์ฃผ๊ธฐ๋ฅผ ์ค์ (fixedRate
,fixedDelay
,cron
)Jsoup
์ ํ์ฉํด RSS์์ ๋ด์ค ๊ฐ์ ธ์ค๊ธฐ- ์ฃผ๊ธฐ์ ์ผ๋ก ์ผํ ๋ด์ค RSS๋ฅผ ์์งํ๋ ์๋น์ค ๊ตฌํ ๊ฐ๋ฅ