LinkedHashMap « Core « Spring Q&A





1. Can Spring use LinkedMap instead of LinkedHashMap for jdk1.3    forum.springsource.org

Can spring be changed to use org.apache.commons.collections.map.LinkedMap instead of LinkedHashMap for jdk 1.3 compatiblility? If so please email me at KeithGarry.Boyce at bcbsma.com for status.

2. Consistentency problem in source assigining linkedhashmap    forum.springsource.org

In AbstractAutowireCapableBeanFactory it's done like Code: if (JdkVersion.getMajorJavaVersion() >= JdkVersion.JAVA_14) { resolved = LinkedHashMapCreator.createLinkedHashMap(mm.size()); } else { resolved = new HashMap(mm.size()); } In DefaultXmlBeanDefinitionParser it's done like Code: if (JdkVersion.getMajorJavaVersion() >= ...

3. Can't read a value in a LinkedHashMap    forum.springsource.org

Can't read a value in a LinkedHashMap my environment;spring 2.5,hibernate3,iceface 1.7 when I try to retrieve the data in Collections.synchronizedMap(new LinkedHashMap()); , I always get the null value. If i can ...

4. LinkedHashMap versus HashMap    forum.springsource.org

I was reading today that Spring will create a LinkedHashMap to represent a Map reference within a bean configuration. I am curious to know what the motivation is behind using LinkedHashMap ...