Spring Boot์—์„œ Scheduler ์‚ฌ์šฉํ•˜๊ธฐ: ์ฃผ๊ธฐ์ ์œผ๋กœ RSS์—์„œ ๋‰ด์Šค ๊ฐ€์ ธ์˜ค๊ธฐ

์•ผํ›„ ๋‰ด์Šค RSS์—์„œ ์ฃผ๊ธฐ์ ์œผ๋กœ ๋ฐ์ดํ„ฐ ์ˆ˜์ง‘
Share

๐Ÿ“Œ 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๋ฅผ ์ˆ˜์ง‘ํ•˜๋Š” ์„œ๋น„์Šค ๊ตฌํ˜„ ๊ฐ€๋Šฅ

You may also like...