Monica视频监控处理程序
xc
2021-04-29 5570ea0e7febed5c5929b5fcde2d95ec80dad661
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.hbbh.adapter.schedule;
 
//@Configuration
//@EnableScheduling
public class Task {
 
    /**
     * 间隔5秒 执行一次
     */
    //@Scheduled(cron = "0/5 * * * * ?")
    //@Scheduled(fixedRate=30000)
    private void task01() throws Exception {
        //dataSource.execute();
    }
}