惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Scott Helme
Scott Helme
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
AWS News Blog
AWS News Blog
S
Securelist
Help Net Security
Help Net Security
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
D
Docker
Simon Willison's Weblog
Simon Willison's Weblog
Microsoft Azure Blog
Microsoft Azure Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Privacy International News Feed
V
Vulnerabilities – Threatpost
I
Intezer
Spread Privacy
Spread Privacy
WordPress大学
WordPress大学
C
Cisco Blogs
有赞技术团队
有赞技术团队
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
Know Your Adversary
Know Your Adversary
C
CERT Recently Published Vulnerability Notes
Y
Y Combinator Blog
S
SegmentFault 最新的问题
G
GRAHAM CLULEY
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
L
LINUX DO - 热门话题
K
Kaspersky official blog
P
Proofpoint News Feed
P
Palo Alto Networks Blog
Cyberwarzone
Cyberwarzone
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
GbyAI
GbyAI
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Tor Project blog
NISL@THU
NISL@THU
L
LangChain Blog
B
Blog
aimingoo的专栏
aimingoo的专栏
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Cisco Talos Blog
Cisco Talos Blog
雷峰网
雷峰网
The Cloudflare Blog
宝玉的分享
宝玉的分享
SecWiki News
SecWiki News
L
Lohrmann on Cybersecurity
C
Cyber Attacks, Cyber Crime and Cyber Security

博客园 - 无名365

.NET 2.0 JSON Parser Provisioning 是什么意思? SOA与云计算 Good understand on WCF Data Contract & Serialization WCF DataContract EmitDefaultValue a xml configuration for unity and interception Programmatically Compress and Decompress Files using c# CodeRun Studio - A free cloud develop and debug service for .Net Cloud IDE 10个最“优秀”的代码注释 Compress and Decompress JQuery Mobile 1.0 Released, Gets Mixed Reaction Interceptor in Unity and Policy Injection in Unity Configuring Unity Container with Policy Injection Configuration Unity Configuration Node IoC and Unity - Configuration Objects and the Art of Data Modeling AppFabric Cache - Cache Cluster EF - How to delete an object without retrieving it LINQ to SQL Extension: Batch Deletion with Lambda Expression
Unity Configuration from Separate Configuration File
无名365 · 2011-11-22 · via 博客园 - 无名365

2011-11-22 09:42  无名365  阅读(757)  评论()    收藏  举报

I mentioned on Twitter the other day that if you have to configure Unity via a configuration file, you probably want to do it in a separate configuration file. Personally I think this is a best practice when using any of the Application Blocks in Enterprise Library, too, but I realize the experience can be a bit of a burden.

A few people asked me for an example of configuring Unity in a separate configuration file which is the motivation for this post. The Unity Documentation is pretty good on this topic. In fact, I pretty much just copy and pasted the code for reading from a separate file in this post, but this post might be a bit easier to find the information.

Reading Unity Configuration from Separate Configuration File

In this example, I am using a simple Console Application. The configuration information is in a separate configuration file, called unity.config, which has one container, called container, that maps a UserRepository to IUserRepository. The UserRepository constructor requires a connection string so I specified the connection string in the constructor parameters in the type configuration.

Program.cs

The GetContainer Method is pretty much boiler-plate code responsible for reading the unity.config file and populating a new container with the configuration information. You could make it more generic by passing in parameters for the name of the file, name of the container, etc. This is basically straight out of the documentation:

private static void Main(string[] args)

{

    IUnityContainer container = GetContainer();

    var repository = container.Resolve<IUserRepository>();

}

private static IUnityContainer GetContainer()

{

    var map = new ExeConfigurationFileMap();

    map.ExeConfigFilename = "unity.config";

    var config = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);

    var section = (UnityConfigurationSection) config.GetSection("unity");

    var container = new UnityContainer();

    section.Containers["container"].Configure(container);

    return container;

}

Unity.config

The configuration file sets up some aliases, specifies the mapping between IUserRepository and UserRepository, provides an example of using a singleton lifetime manager, and contains type configuration that specifies how to construct the UserRepository:

<?xml version="1.0"?>

<configuration>

  <configSections>

    <section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration" />

  </configSections>

  <unity>

    <typeAliases>

      <typeAlias alias="string" type="System.String, mscorlib" />

      <typeAlias alias="singleton" type="Microsoft.Practices.Unity.ContainerControlledLifetimeManager, Microsoft.Practices.Unity" />

      <typeAlias alias="IUserRepository" type="ConsoleApplication3.IUserRepository, ConsoleApplication3" />

      <typeAlias alias="UserRepository" type="ConsoleApplication3.UserRepository, ConsoleApplication3" />

    </typeAliases>

    <containers>

      <container name="container">

        <types>

          <type type="IUserRepository" mapTo="UserRepository" >

            <lifetime type="singleton" />

            <typeConfig extensionType="Microsoft.Practices.Unity.Configuration.TypeInjectionElement, Microsoft.Practices.Unity.Configuration">

              <constructor>

                <param name="connectionString" parameterType="string">

                  <value value="[YourConnectionString]"/>

                </param>

              </constructor>

            </typeConfig>

          </type>

        </types>

      </container>

    </containers>

  </unity>

</configuration>

IUserRepository and UserRepository

And last, a barebones illustration of the interface and concrete implementations of the types just to illustrate the use of the configuration file:

public interface IUserRepository {}

public class UserRepository : IUserRepository

{

    public string ConnectionString { get; private set; }

    public UserRepository(string connectionString) {

        ConnectionString = connectionString;

    }

}

Conclusion

Hopefully this helps you configure Unity in a separate configuration file. I think this is always a good idea as it keep your IoC / Dependency Injection configuration information separate from application settings in your app.config or web.config.

From http://www.pnpguidance.net/post/UnityConfigurationSeparateConfigurationFile.aspx