/**
* @description: 解析cron表达式转化为时间 yyyy-MM-dd HH:mm:ss
* @author: chongmengzhao
* @date: 2020/3/14 10:29 上午
*/
public static List<String> cronToDate(String cronExpression) {
System.out.println("接收到的cron表达式信息"+cronExpression);
List<String> result = new ArrayList<String>();
if (cronExpression == null || cronExpression.length() < 1) {
return result;
} else {
CronExpression exp = null;
Calendar calendar = Calendar.getInstance();
String cronDate = calendar.get(Calendar.YEAR) + "-" + (calendar.get(Calendar.MONTH) + 1) + "-" + calendar.get(Calendar.DATE);
String sStart = cronDate + " 00:00:00";
System.out.println("sStart信息"+sStart);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date dStart = null;
spring boot 推理cron 表达式【只支持6位或7位的cron表达式】
最新推荐文章于 2024-09-03 12:48:36 发布
本文介绍了Spring Boot中cron表达式的使用,重点在于其只支持6位或7位的标准表达式,详细解析了各字段含义及其配置示例。
摘要由CSDN通过智能技术生成