I am wondering why the following issues a warning about an unsafe / unchecked operation:
Map<String, ProxySession> sessionMap = (Map<String, ProxySession>) se.getSession().getServletContext().getAttribute("myattribute");
Is the cast wrong? I can't understand what I am missing here.
P.S. I don't want to get rid of the warning, I want to understand the unsafe operation.
Thanks!
It means that the cast will check that the returned object is a
Map
of some kind, but it won't be able to check anything about its contents, due to type erasure. At execution time, a map is a map is a map... so if someone put aMap<Integer, String>
into your session instead, that line of code would still succeed. You'd only get an error when you tried to use one of the entries, e.g. by iterating over the entries and fetching the key and value.Welcome to the wacky world of Java generics :(