取消定时同步,手动同步加入白名单

This commit is contained in:
zhaokaiyao@91isoft.com
2021-10-14 15:11:06 +08:00
parent 2caec798ad
commit 4e66ba832f
3 changed files with 5 additions and 2 deletions
@@ -44,6 +44,8 @@ public class WebMvcConfig implements WebMvcConfigurer {
addInterceptor.excludePathPatterns("/slrs/sar-stand-project-team/save");
//tc模块结构单元数据
addInterceptor.excludePathPatterns("/api/sarModelTree/save");
addInterceptor.excludePathPatterns("/api/DataSync/importUserData");
addInterceptor.excludePathPatterns("/api/DataSync/importOrgData");
// 添加自定义拦截器,并拦截对应 url
addInterceptor.addPathPatterns("/**");
@@ -23,8 +23,9 @@ public class ScheduledSync {
private IDataSyncService iDataSyncService;
@Scheduled(cron = "0 */40 * * * ?") //40分钟执行同步一次
// @Scheduled(cron = "0 */40 * * * ?") //40分钟执行同步一次
// @Scheduled(cron="*/5 * * * * ?")
@Async
public void syncSchedulingTasks() throws Exception {
iDataSyncService.orgDataSync(); //时间短
@@ -33,7 +33,7 @@ import java.util.*;
@RestController
@Api(description = "|SarStandPutTime|")
@RequestMapping("/DataSync")
@RequestMapping("/${restPath}/DataSync")
public class DataSyncController {