月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2023-08-09 8dc3482deec2f25a0618f7ae1f62a1ce07116d7a
src/main/java/com/moon/server/config/ScheduleConfig.java
@@ -91,27 +91,4 @@
            log.error(ex.getMessage(), ex);
        }
    }
    /**
     * 同步附件
     */
    @Scheduled(fixedRate = 30 * 1000)
    public void syncAttaches() {
        try {
            List<FmeLogEntity> list = attachService.selectFmeLogs();
            if (isBusy || null == list || list.isEmpty()) {
                return;
            }
            isBusy = true;
            for (FmeLogEntity entity : list) {
                attachService.syncAttaches(entity);
                attachService.updateFmeLog(entity.getId());
            }
            isBusy = false;
        } catch (Exception ex) {
            isBusy = false;
            log.error(ex.getMessage(), ex);
        }
    }
}