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?

link|improve this question

This question would be much more helpful if you better defined what you meant by type-safe, what you are looking for in your DI framework, etc. – matt b Nov 15 '10 at 16:44
@matt b - he had asked this question ('what is type-safe') to the person who said that spring isn't type safe, in the linked question. But a reply was not received, hence this question. – Bozho Nov 15 '10 at 16:49
ah I see, makes more sense now. I've removed my downvote – matt b Nov 15 '10 at 16:57
feedback

2 Answers

up vote 5 down vote accepted

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 javax.inject.Qualifier), so it is compile-time safer as well.

Another thing to mention is the use of generics. You can have, for example @Inject List<MyService> in spring.

link|improve this answer
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.

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.