北斗定位
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScheduleService.java 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.telpo.dipperposition.task;
  2. import com.telpo.dipperposition.service.IDipperDataAsyncTaskService;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.scheduling.annotation.Scheduled;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * @program: DataPushServer
  9. * @description: 定时执行任务服务
  10. * @author: king
  11. * @create: 2021-01-17 16:24
  12. */
  13. @Component
  14. @Slf4j
  15. public class ScheduleService {
  16. @Autowired
  17. private IDipperDataAsyncTaskService dipperDataAsyncTaskService;
  18. /*
  19. * 调用9012端口的接口获取星历数据。
  20. * 通过TCP连接服务器agnss.techtotop.com:9012,发送bds获取星历数据。
  21. * 每30分钟获取1次,30秒超时,
  22. * 如果失败,则可以等待10秒再获取1次。 *
  23. */
  24. @Scheduled(cron = "${scheduler.task.cron}")
  25. public void pullData() {
  26. log.info("开始星历数据同步!");
  27. // 获取推送失败的记录
  28. try {
  29. // 如果失败,则可以等待10秒再获取1次。
  30. int tryTimes = 59;
  31. dipperDataAsyncTaskService.pullAstEPH(tryTimes);
  32. } catch (InterruptedException e) {
  33. log.error("获取星历数据重试睡眠发生异常:", e);
  34. } catch (Exception e) {
  35. log.error("执行定时获取星历数据发生异常:", e);
  36. }
  37. }
  38. }