Commit 4c9af49a authored by “yiyousong”'s avatar “yiyousong”
parents bfa7a507 9b2790f1
......@@ -23,13 +23,13 @@ import java.util.Map;
@Configuration
@Slf4j
public class FilterConfig {
@Value("${xss.enabled}")
@Value("${xss.enabled:}")
private String enabled;
@Value("${xss.excludes}")
@Value("${xss.excludes:}")
private String excludes;
@Value("${xss.urlPatterns}")
@Value("${xss.urlPatterns:}")
private String urlPatterns;
@SuppressWarnings({"rawtypes", "unchecked"})
......
......@@ -134,7 +134,7 @@ public class AppVersionController extends BaseCRUDJsonBodyMappingController<AppV
if (ObjectUtils.isEmpty(appEntity)) {
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());
//请求地址 http://domian/app/siteCode/appcode/html
String domainUrl = GlobalSysInfo.getParamValue(Constant.PARAM_SERVER_HTTP_URL, "http://192.168.0.98:11078");
......
......@@ -146,7 +146,7 @@ POST {{baseUrl}}/site/syncGovMatterBySiteId
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