Type safety « Core « Spring Q&A





1. Type safety: Unchecked cast    stackoverflow.com

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 ...

2. is spring framework 3.0 type-safe    stackoverflow.com

In another question I asked, raised a concern that spring framework is not type safe. Is it true, or fixed, and can you give an example what it means exactly? ...

3. Type Safety Warning    forum.springsource.org

Type Safety Warning I am passing a form values to my service method. i get a type safety error at lot of places. for e.g. my method is like this:- public ...