|
@@ -10,6 +10,8 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
+import javax.annotation.PostConstruct;
|
|
|
+
|
|
|
/**
|
|
|
* @ClassName: DredgVideoIdSchedule
|
|
|
* @description: TODO
|
|
@@ -23,7 +25,8 @@ public class DredgeVideoIdSchedule {
|
|
|
@Autowired
|
|
|
private DredgingProjectShipsService shipsService;
|
|
|
|
|
|
- @Scheduled(cron = "0 0 3 * * ? ")
|
|
|
+ //@Scheduled(cron = "0 0 3 * * ? ")
|
|
|
+ @PostConstruct
|
|
|
public void updateVideoIdSchedule(){
|
|
|
List<String> dredgingImportRules = shipsService.getAllProjectId();
|
|
|
for (String dredgingImportRule : dredgingImportRules) {
|