cron表达式生成网站

http://cron.qqe2.com/

 

在java中使用需要使用@Scheduled注解

    /**
     * @description 每天早上8:00对即将到期的管理处的项目经理发送项目即将到期提醒
     * @author: liyinlong
     * @date 2019-05-08 16:09
     */
    @Scheduled(cron = "0 0 8 1/1 * ?")
    @Transactional
    public void sendManagementBeingOutOfDateMessage(){
        log.info("开始发送项目到期提醒===>");
    }

 

你可能感兴趣的:(定时任务,cron)