|
@@ -0,0 +1,37 @@
|
|
|
+package com.gyee.runeconomy.task;
|
|
|
+
|
|
|
+import com.gyee.common.util.DateUtils;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconBenchmarkingBetweenService;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
+import org.springframework.scheduling.annotation.Scheduled;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Configuration //1.主要用于标记配置类,兼备Component的效果。
|
|
|
+@EnableScheduling // 2.开启定时任务
|
|
|
+public class SaticScheduleTask {
|
|
|
+
|
|
|
+ private IProEconBenchmarkingBetweenService iProEconBenchmarkingBetweenService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 定时调度任务
|
|
|
+ */
|
|
|
+ @Scheduled(cron = "0 0 1 * * ?")
|
|
|
+ //或直接指定时间间隔,例如:5秒
|
|
|
+ //@Scheduled(fixedRate=5000)
|
|
|
+ private void configureTasks1() {
|
|
|
+ Date yestday = DateUtils.getYestday(new Date());
|
|
|
+ String date = DateUtils.toDate1(yestday);
|
|
|
+ try {
|
|
|
+ //值际对标定时
|
|
|
+ iProEconBenchmarkingBetweenService.saveBeanchmarkList(date,date);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|