Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the state of Spring.Net?

I'm currently evaluating the technologies we want to use for our next project. It will mainly be a backend for automatic data manipulation. It has some dependencies and we can only build it on top of .Net 3.5 at the moment.

Spring.net seems like a good match for our requirements, since it brings a DI container, ADO.Net helpers, NHibernate, Unit testing helpers and other goodies in one maintained package. How established is Spring.Net in the community and what's the state? It seems like being actively maintained, but who uses it and can share some experience? I'm esp. interested in the DI container it has and the ADO.Net module. Does the DI container support proper auto wiring?

like image 619
Rene Schulte Avatar asked Jan 06 '11 10:01

Rene Schulte


2 Answers

I've been actively using spring.net for over a year now and like it a lot.

What I like:

  • it is non-obtrusive; gives you all the freedom you need
  • well documented
  • it guides me to building understandable, testable and maintainable software, by moving out almost all infrastructural code from my presentation and domain objects; I find that I can easily and reliably make changes to my code

I think it could use improvement:

  • learning curve at the start can be steep
  • the xml di congfiguration isn't really friendly to starters; I don't think it's as bad as many suggest though, especially when using Resharper and installing the xsd schema's in Visual Studio
like image 148
Marijn Avatar answered Oct 03 '22 23:10

Marijn


I've used Spring.NET for several years. First starting with just the DI stuff, gradually learning more about the techniques and applying more and more functionality from the framework. AoP, services, ado.net templates. If you know where to find the items you need it really is a time-saver, it takes quite some time though to get acquainted with it. Although there is a lot of documentation, you'll find yourself trying out a lot of things.

I got some posts on my blog on Spring.NET: http://blog.bennymichielsen.be/category/springnet/

like image 45
BennyM Avatar answered Oct 03 '22 21:10

BennyM