Spring boot定時任務

2021-08-07 22:12:47 字數 359 閱讀 9300

最近做專案,需要使用定時任務,半個小時去更新redis資料,於是便學習了一下經驗。希望可以幫到你們。定時任務可使用三種:

/**

* created by fx on 2017/9/4.

*/@component

@allargsconstructor

public class featuredatatask

}

實現乙個任務類。然後使用註解@scheduled,進行指定時間控制。

接著,必須在springboot程式入口加上

@enablescheduling註解,作用是發現註解@scheduled的任務並後台執行。

SpringBoot 定時任務

第一步 在啟動類中加入如下註解 enablescheduling public class public static void main string args 注意 enablescheduling必須加,否則無法開啟定時任務 第二步 建立定時任務 component public class ...

Spring boot 定時任務

1.在啟動類上加 enablescheduling註解 package com.example.demo import org.springframework.scheduling.annotation.enablescheduling enablescheduling public static ...

SpringBoot定時任務

在需要設定定時的位置加 scheduled 註解 scheduled cron 60 public void deal1 bean public resttemplate resttemplate cron的時間設定表示式 一般有6個,也可能有7個 時段可用值 號可用於所有字段,在分這個字段表示每分...