Using Spring, is it possible to creat a Map<Integer, Double>? If so, what is the syntax? Any pointer.
so that I can percentageLookup = springContext.getBean("percentageLookup");
With above config, the key is of type
String, String.
percentageLookup.get("100") = 2
percentageLookup.get(100) = null
1M Thanks.