Castle IOC容器构建配置详解(二)
主要内容
1.基本类型配置
2.Array类型配置
3.List类型配置
4.Dictionary类型配置
5.自定义类型转换
一.基本类型配置
在Castle IOC的配置文件中,大家可能都已经注意一个问题了,就是不管组件接收的是什么基本数据类型,我们一律没有在配置文件中指定,也就是说,不管组件接收的类型是int型或者是String类型,我们都可以这样去配置:
1
2
3
4
5
|
< component id = "MyComponent" > < parameters > < port >10</ port > </ parameters > </ component > |
这是因为在Castle IOC中,MicroKernel中的SubSystem中有一个TypeConverter,它专门负责类型的转换。参数的注入一般都是通过构造函数或者公有的属性,基本数据类型在配置文件我们不需要用专门的节点去配置,但是对于一些复杂的数据类型久有些不一样。目前Castle IOC能够支持的数据类型如下。
类型 | 节点 | 示例 |
System.Int32, Int16, Int64 | - | <parameters>
<port>10</port> </parameters> |
System.UInt32, UInt16, UInt64 | - | <parameters>
<port>10</port> </parameters> |
System.Char | - | <parameters>
<letter>a</letter> </parameters> |
System.Single, Double, Decimal | - | <parameters>
<threshold>13.22</threshold> </parameters> |
System.String | - | <parameters>
<server>mail.host.com</server> </parameters> |
System.Byte, SByte | - | <parameters>
<rcolor>144</rcolor> </parameters> |
System.Boolean | - | <parameters>
<enabled>0</enabled> </parameters> |
System.DateTime | - | <parameters>
<initial>11022005</initial> </parameters> |
System.Type | - | <parameters>
<type>Components.MyComponent, Components</type> </parameters> |
System.Array | array | 参见后面 |
System.Collections.IList | list | 参见后面 |
System.Collections.IDictionary | dictionary | 参见后面 |
如果有其它的类型,我们需要编写自定义的TypeConverter。
二.Array类型配置
组件构造函数有一个Array的参数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class MyComponent { private int[] orders; public int[]Orders { get{ return this.orders;} } public MyComponent() { } public MyComponent(int[]orders) { this.orders = orders; } } |
这时候我们的配置文件可以如下去写
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? xml version = "1.0" encoding = "utf-8" ?> < configuration > < component id = "e" type = "CastleDemo.MyComponent,CastleDemo" > < parameters > < Orders > < item type = "System.Int32" > < item >1</ item > < item >2</ item > < item >3</ item > </ item > </ Orders > </ parameters > </ component > </ configuration > |
三.List类型配置
组件构造函数有一个IList类型的参数
1
2
3
4
5
6
7
8
9
|
public class MyComponent { private IList _hosts; public MyComponent(IList hosts) { this._hosts = hosts; } public IList Hosts { |
这时候我们的配置文件应该如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? xml version = "1.0" encoding = "utf-8" ?> < configuration > < component id = "mycomponent" type = "CastleDemo.MyComponent,CastleDemo" > < parameters > < hosts > < list type = "System.String" > < item >server1</ item > < item >server2</ item > < item >server3</ item > < item >server4</ item > </ list > </ hosts > </ parameters > </ component > </ configuration > |
四.Dictionary类型配置
组件构造函数有一个Idictionary类型的参数
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class MyComponent { private IDictionary _dictionary; public MyComponent(IDictionary d) { this._dictionary = d; } public IDictionary Dictionary { get{ return this._dictionary;} } // } |
配置文件应该如下去写:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? xml version = "1.0" encoding = "utf-8" ?> < configuration > < component id = "MyComponent" type = "CastleDemo.MyComponent,CastleDemo" > < parameters > < d > < dictionary > < entry key = "a" >a</ entry > < entry key = "b" >b</ entry > < entry key = "c" >c</ entry > </ dictionary > </ d > </ parameters > </ component > </ configuration > |
或者我们可以在配置文件中分别指定Key和Value的数据类型,分别使用keyType和valueType。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? xml version = "1.0" encoding = "utf-8" ?> < configuration > < component id = "MyComponent" type = "CastleDemo.MyComponent,CastleDemo" > < parameters > < d > < dictionary keyType = "System.String, mscorlib" valueType = "System.String, mscorlib" > < entry key = "a" >a</ entry > < entry key = "b" >b</ entry > < entry key = "c" >c</ entry > </ dictionary > </ d > </ parameters > </ component > </ configuration > |
五.自定义类型转换
要实现我们自定义的类型转换,在这之前我们还是花一点时间来看看Castle IOC中是如何实现类型的转换的。在SubSystems中有一个Conversion,专门负责类型的转换,通过一个类型转换器ConversionManager来实现对类型转换的管理,在DefaultConversionManager初始化的时候,会加载以下几个类型转换:
1
2
3
4
5
6
7
8
9
|
protected virtual void InitDefaultConverters() { Add( new PrimitiveConverter() ); Add( new TypeNameConverter() ); Add( new EnumConverter() ); Add( new ListConverter() ); Add( new DictionaryConverter() ); Add( new ArrayConverter() ); } |
这些类型转换器之间的结构图如下:
图1
PrimitiveConverter:负责基本数据类型的转换
TypeNameConverter:负责把一个类型的名字转换成这个类型的实例
EnumConverter:负责枚举类型的转换
ListConverter:负责Ilist数据类型的转换
DictionaryConverter:负责Idictionary数据类型转换
ArrayConverter:负责Array数据类型转换
以其中的PrimitiveConverter为例来看一下它的实现代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
public class PrimitiveConverter : AbstractTypeConverter { private Type[] types; public PrimitiveConverter() { types = new Type[] { typeof (Char), typeof (DateTime), typeof (Decimal), typeof (Boolean), typeof (Int16), typeof (Int32), typeof (Int64), typeof (UInt16), typeof (UInt32), typeof (UInt64), typeof (Byte), typeof (SByte), typeof (Single), typeof (Double), typeof (String) }; } public override bool CanHandleType(Type type) { return Array.IndexOf(types, type) != -1; } public override object PerformConversion(String value, Type targetType) { if (targetType == typeof(String)) return value; try { return Convert.ChangeType(value, targetType); } catch(Exception ex) { String message = String.Format( "Could not convert from '{0}' to {1}", value, targetType.FullName); throw new ConverterException(message, ex); } } public override object PerformConversion(IConfiguration configuration, Type targetType) { return PerformConversion(configuration.Value, targetType); } } |
可以看到,Castle IOC会把所有的配置参数都当作String类型接收,如果目标类型是String,则直接返回结果,否则再进行类型转换。由此我们可以分析得出,要实现自己的类型转换,有以下两步:
1.编写的自己的类型转换类,实现接口ITypeConverter
1
2
3
4
|
public class MyTypeConverter : ITypeConverter { // } |
2.添加自己的类型转换到ConversionManager中
1
2
3
4
|
IKernel kernel = new DefaultKernel(); IConversionManager conversionMng = (IConversionManager) kernel.GetSubSystem( SubSystemConstants.ConversionManagerKey ); conversionMng.Add(new MyTypeConverter()); |
关于Castle IOC容器中构建配置信息就到这里了,我总共分为了一,二两部分来讲解。Castle IOC系列的文章后续还有很多,希望大家继续关注!
Castle IOC容器构建配置详解(二)的更多相关文章
- Castle IOC容器构建配置详解(一)
主要内容 1.配置什么 2.几种配置方式 3.Include 介绍 4.Properties介绍 5.条件状态 一.配置什么 Castle IOC中并不像Spring.net那样贯穿着一个思想就是一切 ...
- logback -- 配置详解 -- 二 -- <appender>
附: logback.xml实例 logback -- 配置详解 -- 一 -- <configuration>及子节点 logback -- 配置详解 -- 二 -- <appen ...
- Spring源码解析二:IOC容器初始化过程详解
IOC容器初始化分为三个步骤,分别是: 1.Resource定位,即BeanDefinition的资源定位. 2.BeanDefinition的载入 3.向IOC容器注册BeanDefinition ...
- Spring框架 之IOC容器 和AOP详解
主要分析点: 一.Spring开源框架的简介 二.Spring下IOC容器和DI(依赖注入Dependency injection) 三.Spring下面向切面编程(AOP)和事务管理配置 一.S ...
- logback配置详解(二)
<appender> <appender>: <appender>是<configuration>的子节点,是负责写日志的组件. <appende ...
- (转)Apache2 httpd.conf 配置详解 (二)
转之--http://jafy00.blog.51cto.com/2594646/508205 DocumentRoot "/usr/local/apache-2.2.6/htdocs&qu ...
- logback -- 配置详解 -- 四 -- <filter>
附: logback.xml实例 logback -- 配置详解 -- 一 -- <configuration>及子节点 logback -- 配置详解 -- 二 -- <appen ...
- logback -- 配置详解 -- 三 -- <encoder>
附: logback.xml实例 logback -- 配置详解 -- 一 -- <configuration>及子节点 logback -- 配置详解 -- 二 -- <appen ...
- logback -- 配置详解 -- 一 -- <configuration>及子节点
附: logback.xml实例 logback -- 配置详解 -- 一 -- <configuration>及子节点 logback -- 配置详解 -- 二 -- <appen ...
随机推荐
- ssh-keygen的用法
一.概述 1.就是为了让两个linux机器之间使用ssh不需要用户名和密码.采用了数字签名RSA或者DSA来完成这个操作 2.模型分析 假设 A (192.168.20.59)为客户机器,B(192. ...
- 三种map的循环
for(Map.Entry<String, List> entry : map.entrySet()) { System.out.println(entry.getKey()); List ...
- Linux free -m 详细说明
一.free命令 free命令由procps.*.rpm提供(在Redhat系列的OS上).free命令的所有输出值都是从/proc/meminfo中读出的. 在系统上可能有meminfo(2)这个函 ...
- When not to automate 什么时候不进行自动化
The cornerstone of test automation is the premise that the expected application behavior is known. W ...
- 《深入理解C#》第3版 学习进度备忘
学习资源:<深入理解C#>第3版 知识基础支持: <C# in a nutshell> O Reilly出版社,是一本从头介绍C#的优秀图书.<Essential C#5 ...
- ansibleplaybook的使用
1.简单格式要求 [root@ansibleserver ansible]# cat nagios.yml --- - hosts: nagiosserver tasks: - name: ensur ...
- 谈谈final、finally和finalize
final: final为修饰符, 如果类被声明为final,则不能派生新子类. 如果变量被声明为final,则必须在声明时初始化,在以后的引用只能读取,不可修改. 如果方法被final声明,则只能使 ...
- [翻译]Python——十年语言之冠
最近我发现了这个PYPL——编程语言流行指数.它对各种语言的流行指标进行了二次发掘.作者指出TIOBE指数很可能不能反映出真实情况,归咎于一些编程语言的名称会导致误解.他引入了一些新术语,利用谷歌趋势 ...
- bzoj 3289 Mato的文件管理(莫队算法+BIT)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=3289 [题意] 回答若干个询问:[l,r]区间内的逆序对个数. [思路] 莫队算法,B ...
- Python 学习笔记(五)杂项
1. Assert assert len(unique_characters) <= 10, 'Too many letters' #…等价于: if len(unique_characters ...