Alfons Spiegelhauer opened SPR-3049 and commented
The collection classes derived from AbstractFactoryBean  must support generic types.
Otherwise the result will be incorrect.
Sample:
public class NamedUrlMap extends HashMap<String, java.net.URL> {
}
application-context:
<util:map id="namedUrlRegistry" map-class="NamedUrlMap ">
<entry key="pechorin" value="classpath:a.xsd"/>
<entry key="raskolnikov" value="classpath:b/c.xsd"/>
</util:map>
After bean creation the type of the value elements is String and not URL
Affects: 2.0.2