1. 程式人生 > >Spring.Net框架二:配置Spring.Net框架環境

Spring.Net框架二:配置Spring.Net框架環境

存在 示例代碼 release 特定 pan 找不到文件 anim 新的 動物

一、下載DLL文件

去Spring的官方網站下載並解壓,然後直接添加dll文件的引用就可以了。在上一篇文章中,已經介紹過Spring.Net框架中需要使用到的dll文件。這些程序集文件位於Spring.NET-1.3.1\Spring.NET\bin\net\4.0\debug或Spring.NET-1.3.1\Spring.NET\bin\net\4.0\release中。

二、編程方式的容器

在Spring.Net中,對於通過編程方式使用容器的環境,提供了Spring.Context.Support.StaticApplicationContext,我們可以直接創建這個容器,並加入一些配置。在下面的例子中,我們定義了一個接口 IAnimal,然後定義了兩個類Dog和Cat,分別實現IAnimal接口:

IAnimal接口:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     /// <summary>
10     /// 動物接口
11     /// </summary>
12     public interface IAnimal
13     {
14         /// <summary>
15 /// 吃的方法 16 /// </summary> 17 void Eat(); 18 } 19 }

Dog類:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     /// <summary>
10     /// 定義Dog類實現IAnimal接口
11 /// </summary> 12 public class Dog:IAnimal 13 { 14 /// <summary> 15 /// 實現吃的方法 16 /// </summary> 17 public void Eat() 18 { 19 Console.WriteLine("狗在吃飯"); 20 } 21 } 22 }

Cat類:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     /// <summary>
10     /// 定義Cat類實現IAnimal接口
11     /// </summary>
12     public class Cat:IAnimal
13     {
14         /// <summary>
15         /// 實現吃的方法
16         /// </summary>
17         public void Eat()
18         {
19             Console.WriteLine("貓在吃飯!");
20         }
21     }
22 }

主程序中調用:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             // 創建容器
14             Spring.Context.Support.StaticApplicationContext context = new Spring.Context.Support.StaticApplicationContext();
15             // 註冊狗類
16             context.RegisterPrototype("IAnimal", typeof(Dog), null);
17             IAnimal animal = context.GetObject("IAnimal") as IAnimal;
18             animal.Eat();
19             Console.ReadKey();
20         }
21     }
22 }

結果:

技術分享

如果想調用Cat類的Eat()方法,只需要修改註冊的代碼即可:

// 註冊Cat類
context.RegisterPrototype("IAnimal", typeof(Cat), null);

三、XML方式容器

在開發中,我們通常通過XML配置文件來完成配置。Spring.Net提供了Spring.Context.Support.XmlApplicationContext,此時,對象的配置信息寫在一個XML的配置文件中,這個XML的配置文件有特定的格式,這些規定以XML Schema的形式保存在Spring.NET-1.3.1\Spring.NET\doc\schema文件夾的spring-objects-1.3.xsd中。

對於上面的例子,我們可以編寫如下的配置文件ObjectSchema.xml:

1 <?xml version="1.0" encoding="utf-8" ?>
2 <objects xmlns="http://www.springframework.net">
3   <object id="bll" type="SpringDemo.Dog,SpringDemo"></object>
4 </objects>

然後在代碼中就可以直接使用容器了:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             // 直接使用容器:路徑使用的相對路徑
14             Spring.Context.Support.XmlApplicationContext context = new Spring.Context.Support.XmlApplicationContext("ObjectSchema.xml");
15             IAnimal animal = context.GetObject("bll") as IAnimal;
16             animal.Eat();
17             Console.ReadKey();
18         }
19     }
20 }

如果想使用Cat類,直接修改ObjectSchema.xml文件就可以,把type修改為:type="SpringDemo.Cat,SpringDemo"。

註意:

上面的代碼中加載XML文件使用的是相對路徑,要修改XML的屬性,把復制到輸出目錄改成“始終復制”,否則加載XML文件的時候會提示找不到文件的錯誤。或者使用XML文件的絕對路徑。

四、通過應用程序配置文件來自動加載Spring.Net配置

Spring.Net提供了Spring.Context.Support.ContextHandler幫助我們直接在啟動程序的時候加載配置信息。實際的配置文件通過spring節點中context節點下的resource節點的uri屬性的值指定,文件的話使用file://協議描述,還可以使用其他的協議。例如嵌入在程序集中的配置文件可以使用assembly://,直接寫在配置文件中則為config://。

配置文件:

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <configuration>
 3   <configSections>
 4     <sectionGroup name="spring">
 5       <!--定義上下文切面-->
 6       <section name="context" type="Spring.Context.Support.ContextHandler,Spring.Core"/>
 7     </sectionGroup>
 8   </configSections>
 9   <spring>
10     <context>
11        <!--使用ObjectSchema.xml文件裏面的配置信息-->
12       <resource uri="file://ObjectSchema.xml"/>
13     </context>
14   </spring>
15     <startup> 
16         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
17     </startup>
18 </configuration>

程序中直接使用:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     class Program
10     {
11       
12         static void Main(string[] args)
13         {
14             
15             Spring.Context.IApplicationContext context = Spring.Context.Support.ContextRegistry.GetContext();
16             IAnimal animal = context.GetObject("bll") as IAnimal;
17             animal.Eat();
18             Console.ReadKey();
19         }
20     }
21 }

如果想使用其他實現類,直接修改ObjectSchema.xml文件即可。

五、將所有的配置信息都保存在應用程序配置文件中
還可以不再使用另外的Spring配置文件(即ObjectSchema.xml),而是將所有的配置信息都保存在應用程序配置文件中。
這需要使用一個新的配置處理器Spring.Context.Support.DefaultSectionHandler,它可以幫助我們解析spring配置信息。
此時的配置文件改成如下的形式,註意:現在的resource中使用config://表示使用配置文件中的信息。

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <configuration>
 3   <configSections>
 4     <sectionGroup name="spring">
 5       <!--定義上下文切面-->
 6       <section name="context" type="Spring.Context.Support.ContextHandler,Spring.Core"/>
 7       <section name="objects" type="Spring.Context.Support.DefaultSectionHandler,Spring.Core"/>
 8     </sectionGroup>
 9   </configSections>
10   <spring>
11     <context>
12        <!--使用ObjectSchema.xml文件裏面的配置信息-->
13       <resource uri="config://spring/objects"/>
14     </context>
15     <objects>
16       <object id="bll" type="SpringDemo.Cat,SpringDemo" />
17     </objects>
18   </spring>
19     <startup> 
20         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
21     </startup>
22 </configuration>

主程序中調用:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace SpringDemo
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13 
14             Spring.Context.IApplicationContext context = Spring.Context.Support.ContextRegistry.GetContext();
15             IAnimal animal = context.GetObject("bll") as IAnimal;
16             animal.Eat();
17             Console.ReadKey();
18         }
19     }
20 }

示例代碼下載地址:http://files.cnblogs.com/files/dotnet261010/SpringDemo.rar

Spring.Net框架二:配置Spring.Net框架環境