Dependency Injection book recommendation(s) - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T09:06:53Zhttp://stackoverflow.com/feeds/question/150980http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150980/dependency-injection-book-recommendations7Dependency Injection book recommendation(s)Portman2008-09-29T22:17:58Z2009-08-13T18:44:08Z
<p>It seems like there are very few books (yes, I read books) on Dependency Injection. The <a href="http://www.amazon.com/tag/dependency%20injection" rel="nofollow">Amazon tag</a> for "dependency injection" lists only a few titles, and all of them are specifically about Spring for Java.</p>
<p>Are there any books out there that cover DI/IoC in general? Or any that include a survey of multiple DI frameworks? Or any that cover .NET in lieu of or in addition to Java?</p>
<p>Or do we have to rely on this newfangled interweb instead of dead trees...</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151008#151008-2Answer by xmjx for Dependency Injection book recommendation(s)xmjx2008-09-29T22:32:38Z2008-09-29T22:32:38Z<p>Dependency Injection is /one/ Design Pattern. I'd be astonished if there is more than a few pages in a few books about it.</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151019#1510194Answer by Avdi for Dependency Injection book recommendation(s)Avdi2008-09-29T22:35:15Z2008-09-29T22:35:15Z<p>I'd be very wary of a book on DI, because there's just not that much to say on the topic. It makes for a good chapter in a Best Practices or Patterns book, but I can't see getting a book out of it.</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151028#1510284Answer by Alan for Dependency Injection book recommendation(s)Alan2008-09-29T22:36:00Z2008-09-29T22:36:00Z<p>As far as I can tell, there are no books on DI/IoC in general, but the classic write up on this is by <a href="http://martinfowler.com/articles/injection.html" rel="nofollow">Martin Fowler</a>.</p>
<p>If you had to investigate a specific DI/IoC framework and get an explanation of DI/IoC as a side effect, I would recommend the 1st chapter of <a href="http://www.manning.com/walls3/" rel="nofollow">Spring in Action</a> or watch Bob Lee's explanation on <a href="http://video.google.com/videoplay?docid=2948853912335655747" rel="nofollow">video</a>.</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151031#1510313Answer by JasonTrue for Dependency Injection book recommendation(s)JasonTrue2008-09-29T22:36:41Z2008-09-29T22:39:31Z<p>Jimmy Nilson's book covers the concept with a focus on the DotNet environment (<a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">Applying Domain-Driven Design and Patterns</a>), and Martin Fowler's <a href="http://www.martinfowler.com/bliki/" rel="nofollow">Bliki</a> covers the idea more generally, but it's not really complicated enough to warrant an entire book.</p>
<p>As for a survey of different alternatives, I don't think any books cover more than a couple of options.</p>
<p>For DotNet, you probably want to investigate Spring.net, StructureMap, Ninject (and I'm sure there are others).</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151261#1512610Answer by anjanb for Dependency Injection book recommendation(s)anjanb2008-09-30T00:03:25Z2008-09-30T00:03:25Z<p>From Apress came the 1st book on Dependency Inject -- <a href="http://apress.com/book/view/1590599977" rel="nofollow">http://apress.com/book/view/1590599977</a> -- Google Guice: Agile Lightweight Dependency Injection Framework</p>
<p>Of course, there are other books which talk about Spring's Dependency Injection -- <br>
1) Spring in Action by Manning<br>
2) Professional Java development with Spring Framework (<a href="http://rads.stackoverflow.com/amzn/click/0764574833" rel="nofollow">http://www.amazon.com/Professional-Java-Development-Spring-Framework/dp/0764574833</a>) -- which is a lil dated now BUT still a decent book for understanding DI</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/151840#1518400Answer by Rinat Abdullin for Dependency Injection book recommendation(s)Rinat Abdullin2008-09-30T05:15:13Z2008-09-30T05:15:13Z<p>There are not worthy books on the concept, since the idea of the DI/IOC (as it is being used in .NET) is rather new and still settles down.</p>
<p>You could start with this <a href="http://www.hanselman.com/blog/ListOfNETDependencyInjectionContainersIOC.aspx" rel="nofollow">overview of .NET Dependency Injection Containers (IOC) and then proceed to the tutorials provided by the specific implementation.</p>
<p>I'd recommend to start with Castle</a> (widely used) and <a href="http://code.google.com/p/autofac/" rel="nofollow">Autofac</a> (more flexible, simple and leverages .NET 3.5)</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/153523#1535235Answer by Andreas Petersson for Dependency Injection book recommendation(s)Andreas Petersson2008-09-30T15:20:52Z2008-09-30T15:20:52Z<p>there is a <a href="http://manning.com/prasanna/" rel="nofollow">whole 375 pages book on multiple DI frameworks,</a> by Dhanji R. Prasanna covering java, ruby, c# but only as a preview in ebook format, it will be published printed in feb 2009.</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/156111#1561111Answer by Ryan McGeary for Dependency Injection book recommendation(s)Ryan McGeary2008-10-01T03:21:26Z2008-11-26T14:27:38Z<p>This doesn't answer the question directly, but Jim Weirich has a good write up on Dependency Injection. It's titled <a href="http://onestepback.org/index.cgi/Tech/Ruby/DependencyInjectionInRuby.rdoc" rel="nofollow">Dependecy Injection in Ruby</a>, but it explains the underlying concepts well.</p>
<p>Consequently, Jim Weirich also sums up <a href="http://onestepback.org/index.cgi/Tech/Ruby/DependencyInjectionInOneSentence.red" rel="nofollow">Dependency Injection in One Sentence</a>. </p>
<blockquote>
<p><em>If you had one sentence to explain to a Java programmer why Dependency Injection is rarely necessary in Ruby, what would it be?</em></p>
<p>Dependency injection provides vital flexibility in Java [or .NET] and unneeded overhead in Ruby [et al].</p>
</blockquote>
<p>While I understand this answer could be seen as off-topic or flamebait, the intention is really meant to provoke thought on the subject, nothing more.</p>
http://stackoverflow.com/questions/150980/dependency-injection-book-recommendations/1273841#12738410Answer by chillenious for Dependency Injection book recommendation(s)chillenious2009-08-13T18:44:08Z2009-08-13T18:44:08Z<p><a href="http://www.youtube.com/watch?v=hBVJbzAagfs" rel="nofollow">Dhanji R. Prasanna's</a> book <a href="http://www.manning.com/prasanna/" rel="nofollow">Dependency Injection In Action</a> is great.</p>
<p>I used to think - having written DI frameworks years ago before the term even got coined - that DI was all hype. However, since I recently had to work with a code base completely based on singletons and factories, I now see the problems with <em>not</em> using DI for at least portions of your code. That DI-less code was incredibly tightly coupled, which had the unfortunate effect that simple changes result in an avalanche of cascading effects.</p>
<p>Reading Dependency In Action was an eye opener in the sense that it articulated what I instinctively knew, but what never quite crystalized in my mind. Also, there are interesting tips throughout the book about some of the common pitfalls when implementing DI, and even a chapter with tips for framework developers!</p>
<p>I think more people can learn from this book than they realize. In my experience, a lot of people use frameworks like Spring because everyone else uses it, without really understanding the core problem it solves. This book will give you that background.</p>