Commit 26b066e8 authored by 赵啸非's avatar 赵啸非

修改重复导入,用户名相同的,做更新操作

parent 9affb916
...@@ -23,13 +23,13 @@ import java.util.Map; ...@@ -23,13 +23,13 @@ import java.util.Map;
@Configuration @Configuration
@Slf4j @Slf4j
public class FilterConfig { public class FilterConfig {
@Value("${xss.enabled}") @Value("${xss.enabled:}")
private String enabled; private String enabled;
@Value("${xss.excludes}") @Value("${xss.excludes:}")
private String excludes; private String excludes;
@Value("${xss.urlPatterns}") @Value("${xss.urlPatterns:}")
private String urlPatterns; private String urlPatterns;
@SuppressWarnings({"rawtypes", "unchecked"}) @SuppressWarnings({"rawtypes", "unchecked"})
......
...@@ -134,7 +134,7 @@ public class AppVersionController extends BaseCRUDJsonBodyMappingController<AppV ...@@ -134,7 +134,7 @@ public class AppVersionController extends BaseCRUDJsonBodyMappingController<AppV
if (ObjectUtils.isEmpty(appEntity)) { if (ObjectUtils.isEmpty(appEntity)) {
throw new AppException("当前应用不存在!appId:" + appVersionEntity.getAppId()); throw new AppException("当前应用不存在!appId:" + appVersionEntity.getAppId());
} }
Rest<String> disRest = this.service.appDistribute(appVersionEntity, getContext()); // Rest<String> disRest = this.service.appDistribute(appVersionEntity, getContext());
SiteEntity siteEntity = siteService.get(appEntity.getSiteId(), getContext()); SiteEntity siteEntity = siteService.get(appEntity.getSiteId(), getContext());
//请求地址 http://domian/app/siteCode/appcode/html //请求地址 http://domian/app/siteCode/appcode/html
String domainUrl = GlobalSysInfo.getParamValue(Constant.PARAM_SERVER_HTTP_URL, "http://192.168.0.98:11078"); String domainUrl = GlobalSysInfo.getParamValue(Constant.PARAM_SERVER_HTTP_URL, "http://192.168.0.98:11078");
......
...@@ -146,7 +146,7 @@ POST {{baseUrl}}/site/syncGovMatterBySiteId ...@@ -146,7 +146,7 @@ POST {{baseUrl}}/site/syncGovMatterBySiteId
Content-Type: application/json Content-Type: application/json
{ {
"id":1 "id":50
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment