原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(十) Configuration Application Block

到目前为止,我们使用的模块都是在同一个配置文件中,这显然是不灵活的,我们希望每个功能模块能独立的在一个配置文件中体现,这样不仅易于管理,易于扩展,也易于阅读和分类.企业库当然考虑到了这个问题并且提供了解决方案,本章就是讲解如何使用Configuration Application Block来将各个模块分割到独立的配置文件中的.

和以前一样,我们先提需求,再用实例做讲解,这样比较形象生动些:

  1)      创建一个工程,里面用到企业库的Data 数据访问模块和Log日志处理模块

  2)      2个模块的配置分别保存在不同的配置文件中(Data.config和Log.config中)

  3)      在程序中调用这2个模块

1. 用VS 2008新建一个控制台应用程序.接着运行EntLibConfig.exe, 选择Blocks菜单 ,单击Add Data Settings .并设置Connection String属性,可以随意设置一个连接字符串,在此只做测试使用,配置好后保存成Data.config,保存到你的控制台程序目录下:

2. 再打开一个EntLibConfig.exe. 选择Blocks菜单 ,单击Add Logging Settings .设置如下所示,日志模块的详细介绍请参考我之前的文章.配置好之后保存成Log.config,并保存到你的控制台程序目录下.

3.   再打开一个EntLibConfig.exe. 选择Blocks菜单 ,单击Add Configuration Settings . 点击Sources面板右上角的加号按钮—Add SourcesAdd File-based Configuration Source.设置创建好的File-based Configuration SourceName属性为Data ConfigurationSource.接着将File Path属性设置为前面创建好的Data.config文件: 

 

4.   点击Redirected Sections面板右上角的加号按钮—Add Redirected Sections.设置Configuration Source的属性为Data Configuration Source: 

5. 同3,4步一样,我们再设置Log模块的配置,最后设置如下图所示:

6. 好了,保存该配置文件为App.config,同样保存到前面建立好的控制台程序目录下,这时候你的程序目录下应该有如下3个文件啦:

7. 创建一个新的控制台应用程序,将App.config添加到程序内,并加入需要的Dll文件:

添加引用:

using System.Configuration;using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;using Microsoft.Practices.EnterpriseLibrary.Data;using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Manageability;using Microsoft.Practices.EnterpriseLibrary.Data.Configuration;using Microsoft.Practices.EnterpriseLibrary.Logging;

8. 测试:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;using Microsoft.Practices.EnterpriseLibrary.Data;using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Manageability;using Microsoft.Practices.EnterpriseLibrary.Data.Configuration;using Microsoft.Practices.EnterpriseLibrary.Logging;namespace test{    class Program    {        staticvoid Main(string[] args)        {            //从Data.config配置文件获取设置            DatabaseProviderFactory dbFactory =                new DatabaseProviderFactory(GetFileConfigurationSource("Data Configuration Source"));            Database db = dbFactory.Create("Connection String");            Console.WriteLine(db.ConnectionString);            //从Log.config的配置文件获取设置            LogWriter lw =new LogWriterFactory(GetFileConfigurationSource("Log Configuration Source")).Create();            lw.Write("");        }        privatestatic FileConfigurationSource GetFileConfigurationSource(string SourceName)        {            //获取App.config            Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);            //获取资源节点集合            ConfigurationSourceSection section =                (ConfigurationSourceSection)config.GetSection(ConfigurationSourceSection.SectionName);            //获取重定向配置文件资源配置节点            FileConfigurationSourceElement elem =                (FileConfigurationSourceElement)section.Sources.Get(SourceName);            //获取重定向配置文件资源            FileConfigurationSource fileSource =new FileConfigurationSource(elem.FilePath);            return fileSource;        }    }}

9. 运行结果:

打开rolling.log可以看见如下内容:

至此,我们就解决了前面提出的所有需求啦,我们将数据库模块和日志模块的配置分别创建在Data.config和Log.config文件中,并用App.config作为字典来查询各个模块和配置文件的从属关系,这样使得各个模块间的耦合度大大降低,简化了管理.好了,Microsoft Enterprise Library的系列教程到此算是告一段落了.6,7月份要准备期考啦,考完试我再做其他的系列教程吧,请大家届时关注,哈哈

黄聪:Microsoft Enterprise Library 5.0 系列教程(十) Configuration Application Block的更多相关文章

  1. 黄聪:Microsoft Enterprise Library 5.0 系列教程(六) Security Application Block

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(六) Security Application Block 开发人员经常编写需要安全功能的应用程序.这些应用程序 ...

  2. 黄聪:Microsoft Enterprise Library 5.0 系列教程(四) Logging Application Block

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(四) Logging Application Block 企业库日志应用程序模块工作原理图:   从上图我们可以 ...

  3. 黄聪:Microsoft Enterprise Library 5.0 系列教程(三) Validation Application Block (高级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(三) Validation Application Block (高级) 企业库验证应用程序模块之配置文件模式: ...

  4. 黄聪:Microsoft Enterprise Library 5.0 系列教程(三) Validation Application Block (初级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(三) Validation Application Block (初级) 企业库提供了一个很强大的验证应用程序模 ...

  5. 黄聪:Microsoft Enterprise Library 5.0 系列教程(二) Cryptography Application Block (高级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(二) Cryptography Application Block (高级) 本章介绍的是企业库加密应用程序模块 ...

  6. 黄聪:Microsoft Enterprise Library 5.0 系列教程(二) Cryptography Application Block (初级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(二) Cryptography Application Block (初级) 企业库加密应用程序模块提供了2种方 ...

  7. 黄聪:Microsoft Enterprise Library 5.0 系列教程(一) Caching Application Block (高级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(一) Caching Application Block (高级) Caching Application Bl ...

  8. 黄聪:Microsoft Enterprise Library 5.0 系列教程(一) : Caching Application Block (初级)

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(一) : Caching Application Block (初级) 本篇文章具体官方解释请参照以下链接: h ...

  9. Microsoft Enterprise Library 5.0 系列教程(四) Logging Application Block

    Download dll: http://www.microsoft.com/en-us/download/confirmation.aspx?id=15104 http://www.cnblogs. ...

随机推荐

  1. CPU 球迷助威清理灰尘图形的全过程

    主机因为使用时间长的电源风扇,风扇轴承石油枯竭,导致拒绝或不转的风扇转速,热量使电源不能得到有效排除,往往会造成电脑死机,有几种方法来解决. 单省钱的办法例如以下: 1.把电源从主机上拆下,例如以下图 ...

  2. 591 - Box of Bricks

     Box of Bricks  Little Bob likes playing with his box of bricks. He puts the bricks one upon another ...

  3. Delphi中WebBrowser自动填表模板

    unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, ...

  4. Eclipse添加和查看书签

    添加书签: 在编辑框左边栏右击 > Add Bookmark > 编辑书签名称(可以直接使用默认名称)> OK 查看书签: Window > Show View > Ot ...

  5. Gap 锁

    14.3.1 InnoDB Locking InnoDB 锁 本章节描述InnoDB 使用的锁类型: Shared and Exclusive Locks Intention Locks Record ...

  6. 轻松学会多线程(四)——synchronized同步keyword知多少

    每个对象都有一把独占锁. 独占锁仅仅限制线程对它的同步方法的訪问,对非同步方法,独占锁没有意义. synchronizedkeyword能够作为函数的修饰符,也能够作为函数内的语句,也就是平时说的同步 ...

  7. Spark中的Scheduler

    Spark中的Scheduler scheduler分成两个类型.一个是TaskScheduler与事实上现,一个是DAGScheduler. TaskScheduler:主要负责各stage中传入的 ...

  8. 如何搭建NTP服务(转)

    最近,在搭建Oracle RAC过程中,需要用到DNS和NTP,其中,DNS用于域名.IP管理,NTP用于时间同步.其实,很久以前搭建过这两种服务,但技术,本质上,符合“用进废退”的客观规律.用得越频 ...

  9. .net Mvc文件下载的功能,大文件下载完成之后修改数据库功能

    原文:.net Mvc文件下载的功能,大文件下载完成之后修改数据库功能 我服务器上文件只能下载一次,下载了之后就不能下载了,大文件或网速不好时,可能服务端文件流发送完了,客户端还没下载完,导致下载失败 ...

  10. 使用mysql-mmm实现MySQL高可用集群

    背景:之前实现的mysql同步复制功能(见笔者之前文章http://blog.csdn.net/kingofworld/article/details/39210937)仅仅是双机热备功能,还不能做到 ...