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?
feedback
|
|
First of all, what does "type-safe" mean for a dependency injection framework. What I can think of is that you can get a bean from the context by specifying a type, and not just a bean name. Spring 3 allows this. Otherwise, type-safety means that when you can define your dependencies by their type. And you can do this in all versions of spring. Another thing is compile-time safety. With spring pre-3.0 when you had to differentiate between two beans that share the same interface (or supertype) by using their string-based name. In spring 3.0 you can use annotation-based qualifiers (using Another thing to mention is the use of generics. You can have, for example | ||||
|
feedback
|
|
It depends on how you use it and what you mean by type-safe (see Bozho's answer for more info on the latter): if you use the xml config to produce your beans, then you're probably type-safe after start-up. However, if you use the new Java Bean config (which has its own limitations) you get compile-time safety. I'm not advocating the latter over the former, but it's something to consider. | |||
|
feedback
|