Merge branch 'develop_3' into 'develop_master'

Develop 3

See merge request LiuChao/foton-slrs-system-rest!201
This commit is contained in:
王夏晖
2021-10-14 15:14:10 +08:00
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 {