In my spring application context file, I have something like:

<util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String">
    <entry key="some_key" value="some value" />
    <entry key="some_key_2" value="some value" />	
</util:map>

In java class, the implementation looks like:

private Map<String, String> someMap = new HashMap<String, String>();
someMap = (HashMap<String, String>)getApplicationContext().getBean("someMap");

In Eclipse, I see a warning that says:

Type safety: Unchecked cast from Object to HashMap

What did I do wrong? How do I resolve the issue?

link|improve this question

60% accept rate
feedback

6 Answers

up vote 47 down vote accepted

Well, first of all, you're wasting memory with the new HashMap creation call. Your second line completely disregards the reference to this created hashmap, making it then available to the garbage collector. So, don't do that, use:

private Map<String, String> someMap = (HashMap<String, String>)getApplicationContext().getBean("someMap");

Secondly, the compiler is complaining that you cast the object to a HashMap without checking if it is a HashMap. But, even if you were to do:

if(getApplicationContext().getBean("someMap") instanceof HashMap) {
    private Map<String, String> someMap = (HashMap<String, String>)getApplicationContext().getBean("someMap");
}

You would probably still get this warning. The problem is, getBean returns Object, so it is unknown what the type is. Converting it to HashMap directly would not cause the problem with the second case (and perhaps there would not be a warning in the first case, I'm not sure how pedantic the Java compiler is with warnings for Java 5). However, you are converting it to a HashMap<String, String>.

HashMaps are really maps that take an object as a key and have an object as a value, HashMap<Object, Object> if you will. Thus, there is no guarentee that when you get your bean that it can be represented as a HashMap<String, String> because you could have HashMap<Date, Calendar> because the non-generic representation that is returned can have any objects.

If the code compiles, and you can execute String value = map.get("thisString"); without any errors, don't worry about this warning. But if the map isn't completely of string keys to string values, you will get a ClassCastException at runtime, because the generics cannot block this from happening in this case.

link|improve this answer
Love your answer – Sid Aug 2 '11 at 21:42
This was a while ago, but I was looking for an answer on type checking a Set<CustomClass> before a cast, and you can't instanceof on a parametrized generic. e.g. if(event.getTarget instanceof Set<CustomClass>) You can only type check a generic with a ? and that won't remove the cast warning. e.g. if(event.getTarget instanceof Set<?>) – garlicman Feb 14 at 15:56
feedback

The problem is that a cast is a runtime check - but due to type erasure, at runtime there's actually no difference between a HashMap<String,String> and HashMap<Foo,Bar> for any other Foo and Bar.

Use @SuppressWarnings("unchecked") and hold your nose. Oh, and campaign for reified generics in Java :)

link|improve this answer
4  
I'll take Java's reified generics over untyped NSMutableWhatever, which feels like a ten-year leap backwards, any day of the week. At least Java is trying. – Yar Aug 3 '11 at 20:21
Exactly. If you insist on type checking, it can only be done with HashMap<?,?> and that won't remove the warning since its the same as not type checking the generic types. It's not the end of the world, but annoying that you're caught either suppressing a warning or living with it. – garlicman Feb 14 at 16:00
feedback

I came up with a routine to actually check the cast to parameterized HashMap, which eliminates the unchecked cast warning:

link

I'd say this is the "correct" solution, but whether or not its worth it might be debatable. :)

link|improve this answer
+1 This is excellent! Thanks.. – Saj Mar 18 '09 at 8:32
Could you explain this more? instanceof does not work, how did you eliminate the warning exactly? Thanks -- edit-> nevermind: figured out how to click. – Rondo Jul 21 '11 at 18:16
feedback

A warning is just that. A warning. Sometimes warnings are irrelevant, sometimes they're not. They're used to call your attention to something that the compiler thinks could be a problem, but may not be.

In the case of casts, it's always going to give a warning in this case. If you are absolutely certain that a particular cast will be safe, then you should consider adding an annotation like this (I'm not sure of the syntax) just before the line:

@SuppressWarnings (value="unchecked")
link|improve this answer
feedback

You are getting this message because getBean returns an Object reference and you are casting it to the correct type. Java 1.5 gives you a warning. That's the nature of using Java 1.5 or better with code that works like this. Spring has the typesafe version

someMap=getApplicationContext().getBean<HashMap<String, String>>("someMap");

on its todo list.

link|improve this answer
feedback

Doesn't

getApplicationContext().getBean<HashMap<String, String>>("someMap");

just transfer the warning into the getBean method? Great for us when we're using a library. But not a solution our code, when the issue happens. And doesn't the same issue still exist? i.e. now there's no warning, but there's still an equal possibility that the returned HashMap has wrong generic types. Seems to me that the method "suppresses" the warning without actually addressing the root-cause of the issue in any meaningful way.

Is there an improvement here? I don't see it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.