apzl_leasing/WebContent/AppConfig/ControlCenter/ClearConfigFileCache.jsp
2018-06-03 22:26:41 +08:00

16 lines
388 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ page contentType="text/html; charset=GBK"%><%@
include file="/IncludeBeginMDAJAX.jsp"%><%
/*
* 同步缓存
* 清空缓存中的数据重新读入ConfigFile
*/
String sReturn = "SUCCESS";
try{
CurConfig.reload(application);
}catch(Exception er){
out.println("清空缓存失败:"+er);
sReturn = "FAILED";
throw er;
}
out.println(sReturn);
%><%@ include file="/IncludeEndAJAX.jsp"%>