Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I was reading through the documentation on http://www.springframework.net/. I was extremely impressed with this framework despite the amount of xml configuration it requires. I was wondering why this framework is not in the "buzz" . Any shortcomings? They are even up to speed with CLR 4.

share|improve this question
I wanted to make this question a community wiki... is that option gone? – Perpetualcoder Feb 9 '11 at 20:47
Wiki still works; but you cannot mark a question community wiki - see first answer to this question on meta. – Marijn Feb 9 '11 at 21:05

migrated from stackoverflow.com Feb 10 '11 at 7:16

3 Answers

up vote 1 down vote accepted

It's a great framework - as great as the documentation describes. I think that it doesn't get the "buzz it deserves"; perhaps because it lacks some popular features such as "fluent configuration" see for instance this answer.

Spring.net is well maintained, well documented, non-obtrusive and helps me build testable, maintainable and understandable software.

share|improve this answer
@Perpetualcoder - I posted a similar answer before, maybe it's of interest to you. – Marijn Feb 9 '11 at 21:15

I've been using it for 3 years now in web development, and while i haven't used all of its features (the AOP stuff for example), i have found no shortcomings.

I really like the fact that you can do what you want without the framework shoving its way into your coding style

share|improve this answer

The main reason why I do not use Spring is the lack of "easy" documentation. I found it while browsing the web for libraries supporting a certain design pattern (guess which one!). You hit this overwhelming website full of information that is telling to how to do something but never explains why. More diagrams and hand-holding would be wonderful.

share|improve this answer
First Guess: DI / IoC – Perpetualcoder Feb 10 '11 at 18:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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