包含Spring.Net中的通用字典的通用字典

时间:2012-04-22 07:21:38

标签: c# spring dictionary spring.net

我有一个包含属性的对象:

public Dictionary<string, Dictionary<string, List<ContextMenuItemModel>>> ContextMenuModel { get; set; }

如何使用Spring.Net配置此属性?

1 个答案:

答案 0 :(得分:6)

好吧,在xml中配置它并不漂亮,考虑切换到Spring.Net代码配置为configure your spring context in C#

无论如何,要在xml中执行此操作,请使用泛型.net集合的构造函数。例如,List<T>采用IList<T>构造函数,因此您可以按如下方式配置字符串列表:

<object id="list1" type="System.Collections.Generic.List&lt;string>">
  <constructor-arg>
    <list element-type="string">
      <value>abc</value> 
      <value>def</value> 
    </list>
  </constructor-arg>
</object>

请注意,在xml中,您必须使用&lt;,因为使用<并非合法的xml。讨论设置泛型集合值in the Spring.net docs

通用Dictionary<string, System.Collections.Generic.List<string>>可以采用类似的方式配置,this answer中也对此进行了讨论:

<object id="dic1" type="System.Collections.Generic.Dictionary&lt;string, System.Collections.Generic.List&lt;string>>">
  <constructor-arg>
    <dictionary key-type="string" value-type="System.Collections.Generic.List&lt;string>">
      <entry key="keyToList1" value-ref="list1" />
      <entry key="keyToList2" value-ref="list2" /> 
    </dictionary>
  </constructor-arg>
</object>

你可能会看到下一个即将到来:

<object id="dic0" type="System.Collections.Generic.Dictionary&lt;string, System.Collections.Generic.Dictionary&lt;string, System.Collections.Generic.List&lt;string>>>">
  <constructor-arg>
    <dictionary key-type="string" value-type="System.Collections.Generic.Dictionary&lt;string, System.Collections.Generic.List&lt;string>>">
      <entry key="keyToDic1 " value-ref="dic1" />
    </dictionary>
  </constructor-arg>  
</object>

可以注射:

<object id="MyObject" type="MyNamespace.MyClass, MyAssembly">
  <property name="ContextMenuModel" ref="dic0" />
</object>

这不是很漂亮,但你可以稍微improve the readability of your xml using type aliases