有没有办法在spring.net中创建一个不区分大小写的字典?
<dictionary key-type="string" value-type="string">
<entry key="abc">
<ref object="test"/>
</entry>
</dictionary>
有什么办法可以说字典键可以不区分大小写。所以当我搜索abc或ABC或Abc时,我会得到test的值吗?
由于
添加了更多条目
<object id="Test" type="string">
<property name="Process">
<object id="ProcessDictionary" type="System.Collections.Generic.Dictionary<string, string>, mscorlib">
<constructor-arg>
<dictionary key-type="string" value-type="string">
<entry key="abc">
<ref object="test"/>
</entry>
</dictionary>
</constructor-arg>
</object>
</property>
</object>
如何添加构造函数参数以忽略区分大小写?
答案 0 :(得分:0)
在尝试各种弹簧配置以使其工作之后,最后我放弃并最终在代码中使用私有字典变量并通过私有字典处理它。我希望我能找到弹簧本身的方法