Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement multithreaded simultaneous timing tasks in Springboot

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Editor to share with you how to achieve multi-threaded and timing tasks in Springboot, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

I. realization

1. Startup class

Add the annotation @ EnableScheduling to the startup class to turn it on, otherwise it won't work.

2. Create a new task class

Add the annotation @ Component to register in the container of spring.

Package com.example.demo.task;import com.example.demo.entity.MyTask;import lombok.extern.slf4j.Slf4j;import org.springframework.scheduling.annotation.SchedulingConfigurer;import org.springframework.scheduling.config.CronTask;import org.springframework.scheduling.config.ScheduledTaskRegistrar;import org.springframework.stereotype.Component;import org.springframework.util.StringUtils;import javax.annotation.PreDestroy;import java.util.Arrays;import java.util.List;import java.util.Objects;import java.util.concurrent.ConcurrentHashMap;import java.util.concurrent.Executors Import java.util.concurrent.ScheduledFuture;/** * @ path:com.example.demo.task.ScheduledTask.java * @ className:ScheduledTask.java * @ description: scheduled tasks * @ author:tanyp * @ dateTime:2020/7/23 21:37 * @ editNote: * / @ Slf4j@Componentpublic class ScheduledTask implements SchedulingConfigurer {private volatile ScheduledTaskRegistrar registrar; private final ConcurrentHashMap

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report