Springboot定时删除30天之前的数据

欢迎加qq群:453398542 学习讨论,会定期分享资料课程,解答问题。

今天在做定时任务时,发现通过new Date()生成的时间无法与mybatis返回的Date()做like模糊查询,最后发现mybatis返回的Date()类型数据可以直接与String类型做模糊查询,以下为代码。

import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

@Component
@EnableScheduling
@Slf4j
public class ScheduleTaskDeleteWaterquality {

    @Autowired
    private WatetqualityMapper watetqualityMapper;


    @Scheduled(cron = "0 0 0 1/1 * ? ")
    public void deleteWaterquality() { //删除30天前的水质数据
        Date now=new Date();
        String deleteDate=getDeleteDate(now,30);
        try{
            int effectedNum=watetqualityMapper.deleteByDate(deleteDate);
        }catch (Exception e){
            log.error("删除30天前的水质数据失败!"+e.getMessage());
        }


    }

   //获取需要删除的时间
    public static String getDeleteDate(Date now,int days){
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(now);
        calendar.add(calendar.DATE, -days);
        Date delete=calendar.getTime();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        String dateString=sdf.format(delete);
        return dateString;
    }
}
<!--删除30天前的水质数据-->
  <delete id="deleteByDate">
    delete from watetquality
    where wq_spt like CONCAT(CONCAT('%',#{deleteDate,jdbcType=CHAR}),'%')
  </delete>

 

SpringBoot定时任务可以通过使用@Scheduled注解来实现。首先,在启动类上添加@EnableScheduling注解,开启对定时任务的支持。然后,在任意一个被Spring管理的bean的方法上添加@Scheduled注解,指定任务的执行规则和时间间隔。这样,在应用启动后,定时任务会按照规定的时间间隔自动执行。 引用中提到,需要在启动类添加@EnableScheduling注解,并且在任意一个Spring管理的bean的方法上添加@Scheduled注解,来实现定时任务的执行。 下面是一个示例代码,演示了如何使用SpringBoot定时任务来定时数据: ```java @SpringBootApplication @EnableScheduling public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Scheduled(cron = "0 0 0 * * ?") // 每天凌晨执行一次任务 public void runDataTask() { // 这里是你的数据处理逻辑 // 可以调用其他方法或者服务来完成数据的跑批操作 // 例如:dataService.runDataBatch(); } } ``` 在上述示例代码中,使用@Scheduled注解来标识runDataTask方法为定时任务,cron参数指定了定时任务的执行规则。在这个例子中,定时任务每天凌晨0点执行一次。 通过这种方式,你可以在SpringBoot应用中轻松实现定时任务的执行,完成数据的跑批操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [SpringBoot定时任务](https://blog.csdn.net/qingqingyyds/article/details/126627301)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [SpringBoot定时任务(ClickHouse定时写入数据)](https://blog.csdn.net/weixin_56567361/article/details/127012713)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值