Java spring定时任务详解
作者:会飞的小蜗 时间:2022-05-22 19:51:06
一、定时任务
1、cron表达式
语法:秒 分 时 日 月 周 年
(其中“年”Spring不支持,也就是说在spring定时任务中只能设置:秒 分 时 日 月 周)
2、cron示例
3、SpringBoot整合
@EnableScheduling
@Scheduled
实例:
package com.xunqi.gulimall.seckill.scheduled;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.util.concurrent.TimeUnit;
/**
* @Description:
* @Created: with IntelliJ IDEA.
* @author: 夏沫止水
* @createTime: 2020-07-09 18:49
**/
/**
* 定时任务
* 1、@EnableScheduling 开启定时任务
* 2、@Scheduled开启一个定时任务
*
* 异步任务
* 1、@EnableAsync:开启异步任务
* 2、@Async:给希望异步执行的方法标注
*/
@Slf4j
@Component
@EnableScheduling
public class HelloScheduled {
/**
* 1、在Spring中表达式是6位组成,不允许第七位的年份
* 2、在周几的的位置,1-7代表周一到周日
* 3、定时任务不该阻塞。默认是阻塞的
* 1)、可以让业务以异步的方式,自己提交到线程池
* CompletableFuture.runAsync(() -> {
* },execute);
*
* 2)、支持定时任务线程池;设置 TaskSchedulingProperties
* spring.task.scheduling.pool.size: 5
*
* 3)、让定时任务异步执行
* 异步任务
*
* 解决:使用异步任务 + 定时任务来完成定时任务不阻塞的功能
*
*/
@Scheduled(cron = "*/1 * * * * ?")
public void hello() {
log.info("hello...");
try { TimeUnit.SECONDS.sleep(3); } catch (InterruptedException e) { e.printStackTrace(); }
}
}
定时任务默认是阻塞的线程,也就是说即使你设置成每一秒执行一次,但是方法内部的业务时间需要5秒才能执行完,也会造成定时任务每6秒才能执行一次。
当然我们可以开启异步线程:
@EnableAsync
@Async
实例:
package com.xunqi.gulimall.seckill.scheduled;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.util.concurrent.TimeUnit;
/**
* @Description:
* @Created: with IntelliJ IDEA.
* @author: 夏沫止水
* @createTime: 2020-07-09 18:49
**/
/**
* 定时任务
* 1、@EnableScheduling 开启定时任务
* 2、@Scheduled开启一个定时任务
*
* 异步任务
* 1、@EnableAsync:开启异步任务
* 2、@Async:给希望异步执行的方法标注
*/
@Slf4j
@Component
@EnableAsync
@EnableScheduling
public class HelloScheduled {
/**
* 1、在Spring中表达式是6位组成,不允许第七位的年份
* 2、在周几的的位置,1-7代表周一到周日
* 3、定时任务不该阻塞。默认是阻塞的
* 1)、可以让业务以异步的方式,自己提交到线程池
* CompletableFuture.runAsync(() -> {
* },execute);
*
* 2)、支持定时任务线程池;设置 TaskSchedulingProperties
* spring.task.scheduling.pool.size: 5
*
* 3)、让定时任务异步执行
* 异步任务
*
* 解决:使用异步任务 + 定时任务来完成定时任务不阻塞的功能
*
*/
@Async
@Scheduled(cron = "*/1 * * * * ?")
public void hello() {
log.info("hello...");
try { TimeUnit.SECONDS.sleep(3); } catch (InterruptedException e) { e.printStackTrace(); }
}
}
这样就会开启异步线程,并且是非阻塞线程,因为每次都会开启一个线程来执行,我们可以看一下源码配置的截图,这个就是异步执行的默认配置,核心线程数是8,最大线程数是无限大,这时如果一直每秒执行一次,则会造成服务器资源耗尽。
当然,我们可以在配置文件中进行定时任务线程池的设定:
#核心线程数
spring.task.execution.pool.core-size=20
#最大线程数
spring.task.execution.pool.max-size=50
#队列大小
spring.task.execution.pool.queue-capacity=10000
来源:https://blog.csdn.net/YL3126/article/details/120580328
标签:Java,spring,定时,任务
0
投稿
猜你喜欢
java中实现分页的几种常见方式总结
2021-12-24 13:32:49
C#识别出图片里的数字和字母
2023-04-12 08:21:41
C#操作txt文件,进行清空添加操作的小例子
2023-05-24 14:06:07
C++数组指针和二维数组详情
2022-03-31 21:11:07
一文搞懂Java创建线程的五种方法
2023-10-30 18:35:04
SpringBoot+Mybatis项目使用Redis做Mybatis的二级缓存的方法
2021-06-17 20:09:50
Spring一步到位精通拦截器
2022-01-03 18:31:50
Eclipse的Debug调试技巧大全(总结)
2023-11-25 06:14:06
Springboot整合FreeMarker的实现示例
2023-04-09 00:57:57
C#泛型与非泛型性能比较的实例
2022-01-31 17:26:51
C#复制数组的两种方式及效率比较
2023-07-15 04:19:12
android dialog背景模糊化效果实现方法
2023-09-17 02:31:23
Android仿优酷视频的悬浮窗播放效果
2022-04-30 20:44:51
springboot2.5.6集成RabbitMq实现Topic主题模式(推荐)
2021-10-03 22:01:22
C# .NET中Socket简单实用框架的使用教程
2023-09-16 07:59:19
Android项目中引入aar包的正确方法介绍
2021-09-01 20:10:16
谈谈Java中自定义注解及使用场景
2022-08-28 04:45:39
Android开发实现的ViewPager引导页功能(动态加载指示器)详解
2021-10-16 17:40:35
从零开始Java实现Parser Combinator
2023-06-18 18:52:04
Android内嵌Unity并实现互相跳转的实例代码
2023-09-22 08:10:43