Tag

ScheduledTask

0 views collected around this technical thread.

Java Captain
Java Captain
Apr 20, 2025 · Backend Development

Dynamic Adjustment of Scheduled Tasks in SpringBoot Using ThreadPoolTaskScheduler

This article explains how to dynamically modify the execution time of SpringBoot scheduled tasks by combining ScheduledTaskRegistrar with ThreadPoolTaskScheduler, decoupling business logic from triggers, and provides complete code examples for adding, updating, and removing tasks at runtime.

Dynamic SchedulingJavaScheduledTask
0 likes · 9 min read
Dynamic Adjustment of Scheduled Tasks in SpringBoot Using ThreadPoolTaskScheduler
Selected Java Interview Questions
Selected Java Interview Questions
Jan 23, 2024 · Backend Development

Design and Implementation of a Local Cache Component in Spring Boot

This article explains how to build a robust, thread‑safe local cache for Spring Boot applications by defining cache domain models, abstract managers, a centralized registry, and scheduled refresh tasks, while providing complete Java code examples and best‑practice recommendations.

CacheConcurrentHashMapDesignPattern
0 likes · 23 min read
Design and Implementation of a Local Cache Component in Spring Boot
Selected Java Interview Questions
Selected Java Interview Questions
Jan 19, 2024 · Backend Development

Implementing Scheduled Tasks with SpringBoot ThreadPoolTaskScheduler

This article demonstrates how to store, create, update, and delete scheduled tasks in a SpringBoot application by leveraging ThreadPoolTaskScheduler, covering task configuration, utility classes, Cron expressions, and practical testing with full code examples.

CronJavaScheduledTask
0 likes · 10 min read
Implementing Scheduled Tasks with SpringBoot ThreadPoolTaskScheduler
Java Captain
Java Captain
Jan 13, 2021 · Backend Development

Scheduled Email Sending with Spring Boot, JavaMail, and HttpClient

This tutorial demonstrates how to build a Spring Boot Maven project that fetches random sentences from an online API, configures JavaMail with POP3/SMTP credentials, and uses a scheduled task to automatically send emails, including deployment tips for Linux and Windows.

EmailAutomationHttpClientScheduledTask
0 likes · 7 min read
Scheduled Email Sending with Spring Boot, JavaMail, and HttpClient