|
@@ -33,29 +33,38 @@ public class SaticScheduleTask {
|
|
|
@Resource
|
|
|
private AnalysisNewService analysisNewService;
|
|
|
|
|
|
- //3.添加定时任务
|
|
|
- @Scheduled(cron = "0 0 1 * * ?")
|
|
|
- //或直接指定时间间隔,例如:5秒
|
|
|
- //@Scheduled(fixedRate=5000)
|
|
|
- private void configureTasks1() {
|
|
|
- try {
|
|
|
- operationService.opeMapTask();
|
|
|
- } catch (ParseException e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Scheduled(cron = "0 0 2 * * ?")
|
|
|
- //或直接指定时间间隔,例如:5秒
|
|
|
- //@Scheduled(fixedRate=5000)
|
|
|
- private void configureTasks2() {
|
|
|
- try {
|
|
|
- benchmarkService.createBeanchmarkList();
|
|
|
- } catch (Exception e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- }
|
|
|
+// //3.添加定时任务
|
|
|
+// /**
|
|
|
+// * 控制指令调度
|
|
|
+// */
|
|
|
+// @Scheduled(cron = "0 0 1 * * ?")
|
|
|
+// //或直接指定时间间隔,例如:5秒
|
|
|
+// //@Scheduled(fixedRate=5000)
|
|
|
+// private void configureTasks1() {
|
|
|
+// try {
|
|
|
+// operationService.opeMapTask();
|
|
|
+// } catch (ParseException e) {
|
|
|
+// e.printStackTrace();
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+// /**
|
|
|
+// * 值际五损调度
|
|
|
+// */
|
|
|
+// @Scheduled(cron = "0 0 2 * * ?")
|
|
|
+// //或直接指定时间间隔,例如:5秒
|
|
|
+// //@Scheduled(fixedRate=5000)
|
|
|
+// private void configureTasks2() {
|
|
|
+// try {
|
|
|
+// benchmarkService.createBeanchmarkList();
|
|
|
+// } catch (Exception e) {
|
|
|
+// e.printStackTrace();
|
|
|
+// }
|
|
|
+// }
|
|
|
|
|
|
+ /**
|
|
|
+ * 风电统计分析
|
|
|
+ */
|
|
|
@Scheduled(cron = "0 15 0 * * ?")
|
|
|
//或直接指定时间间隔,例如:5秒
|
|
|
//@Scheduled(fixedRate=5000)
|
|
@@ -80,6 +89,9 @@ public class SaticScheduleTask {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 光伏统计分析
|
|
|
+ */
|
|
|
@Scheduled(cron = "0 0 20 * * ?")
|
|
|
//或直接指定时间间隔,例如:5秒
|
|
|
//@Scheduled(fixedRate=5000)
|