ASP.NET下使用xml反序列化、缓存依赖实现个性化配置文件的实时生效

所属分类: 网络编程 / ASP.NET 阅读数: 641
收藏 0 赞 0 分享

因为一些配置属性比较多,存在多组属性,因此结合xml解析、缓存技术,实现配置文化的自动解析、存入缓存、缓存依赖实时更新配置内容。

配置文件反序列化存入缓存的核心方法:

public Class.Settings GetSettings()
 {
 if (HttpRuntime.Cache["settings"] != null)
  return (Class.Settings)HttpRuntime.Cache["settings"];
 string rootPath = GetPath();
 #region rootPath
 if (rootPath == "")
 {
  log.Write(MsgType.Fatal, "配置文件根目录rootPath为空");
  return null;
 }
 else
 {
  if (!rootPath.EndsWith("\\"))
  rootPath += "\\";
  rootPath = rootPath + "settings\\settings.config";
 }
 #endregion
 if (!File.Exists(rootPath))
 {
  log.Write(MsgType.Fatal, "配置文件根目录rootPath为空");
  return null;
 }
 string content = File.ReadAllText(rootPath, Encoding.Default);
 Class.Settings model = PublicMethod.XmlSerialize.DeserializeXML<Class.Settings>(content);
 log.Write(MsgType.Information, "读取配置文件");
 CacheDependency cd = new CacheDependency(rootPath);
 HttpRuntime.Cache.Add("settings", model, cd, DateTime.Now.AddMinutes(5), TimeSpan.Zero, CacheItemPriority.High, null);
 return model;
 }

上面自动获取rootPath的方法:

 /// <summary>
 /// 取当前根目录的方法 
 /// </summary>
 private static string GetPath()
 {
 string rootPath = "";
 System.Diagnostics.Process p = System.Diagnostics.Process.GetCurrentProcess();
 //WebDev.WebServer visual studio web server
 //xxx.vhost  Winform
 //w3wp   IIS7
 //aspnet_wp  IIS6
 //iisexpress  vs2013
 string processName = p.ProcessName.ToLower();
 if (processName == "aspnet_wp" || processName == "w3wp" || processName == "webdev.webserver" || processName == "iisexpress")
 {
  if (System.Web.HttpContext.Current != null)
  rootPath = System.Web.HttpContext.Current.Server.MapPath("~/");
  else //当控件在定时器的触发程序中使用时就为空
  {
  rootPath = System.AppDomain.CurrentDomain.BaseDirectory;
  }
 }
 return rootPath;
 }

Settings实体类的定义,要注意,这里的实体类要和settings配置文件对应,否则反序列化会出错:

[XmlRoot(Namespace = "", IsNullable = false, ElementName = "settings")]
public class Settings
{
 #region 属性
 [XmlElement("logger")]
 public LoggerConfig logger { get; set; }
 #endregion
 #region 子类
 [XmlType(TypeName = "logger")]
 public class LoggerConfig
 {
 public string loglevel { get; set; }
 public string savepath { get; set; }
 } 
 #endregion
}

settings.config的内容实例

<?xml version='1.0' encoding='utf-8'?>
 <settings>
 <logger>
 <loglevel>0</loglevel>
 <savepath>d:\log</savepath>
 </logger>
<queryurl>http://11.56.254.234:88/shashachaxunserver/shashachaxun</queryurl>
<receiveurl>http://172.16.1.131:88/ThirdPay/ChinaUMS/xml.aspx</receiveurl>
<turnurl>http://172.16.1.131:88/ThirdPay/ChinaUMS/query.aspx</turnurl>
 </chinaums>
 </settings>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

更多精彩内容其他人还在看

.NET 数据库连接池

如果您通过使用另一个 Execute 方法(例如,ExecuteScalar、ExecuteNonQuery 和 ExecuteXMLReader)执行查询
收藏 0 赞 0 分享

asp.net sqlconnection con.close和con.dispose区别

con.close是用来关闭和数据库的连接,相对于open
收藏 0 赞 0 分享

ASP.NET 多次提交的解决办法

只要把这2个方法放到页面最下面(就是调用scriptmanager的RegisterStartupScript方法)
收藏 0 赞 0 分享

ASP.NET 多次提交的解决办法2

对“添加”、“提交”、“保存”、“更新”等按钮需要对数据库进行写操作的按钮,一定要在页面初始化时加载脚本,防止多次重复点击
收藏 0 赞 0 分享

firebird Embedded模式(.net 3.5)

实现的关键:copy fbembed.dll icudt30.dll icuuc30.dll到system32文件夹下
收藏 0 赞 0 分享

js 父页中的单选按钮取值

js 父页单选按钮取值函数
收藏 0 赞 0 分享

js控制.net验证控件是否可用。

js .net验证控件的代码
收藏 0 赞 0 分享

ASP.NET AJAX时用alert弹出对话框

ASP.NET AJAX alert弹出对话框 解决 asp.net onClientClick 与 验证控件冲突问题
收藏 0 赞 0 分享

Asp.NET 多层登陆实现代码

昨天尝试学着PETSHOP的分层思想,写了个.NET下的登陆例子,不过比PETSHOP要精简很多,采用access数据库,方便学习。希望对大家有帮助。
收藏 0 赞 0 分享

aspx 中文汉字显示为乱码

要保证文件本身为utf-8编码格式。 .cs文件也是一样。
收藏 0 赞 0 分享
查看更多