Design pattern to reduce coupling between components, by dynamically injecting into a software component dependencies that it needs to function.
314
votes
22answers
26k views
Why do I need an IoC container as opposed to straightforward DI code? [closed]
I've been using Dependency Injection (DI) for a while, injecting either in a constructor, property, or method. I've never felt a need to use an Inversion of Control (IoC) container. However, the ...
157
votes
11answers
8k views
What is dependency injection?
There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question:
...
147
votes
21answers
22k views
What are the downsides to using Dependency Injection? [closed]
I'm trying to introduce DI as a pattern here at work and one of our lead developers would like to know: What - if any - are the downsides to using the Dependency Injection pattern?
Note I'm looking ...
125
votes
15answers
22k views
Which .NET Dependency Injection frameworks are worth looking into?
Which C#/.NET Dependency Injection frameworks are worth looking into?
And what can you say about their complexity and speed.
57
votes
11answers
10k views
Dependency Injection vs Factory Pattern
Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and ...
55
votes
12answers
2k views
Is there an alternative to bastard injection? (AKA poor man's injection via default constructor)
I most commonly am tempted to use "bastard injection" in a few cases. When I have a "proper" dependency-injection constructor:
public class ThingMaker {
...
public ThingMaker(IThingSource ...
51
votes
4answers
5k views
Dependency Inject (DI) “friendly” library
I'm pondering the design of a C# library, that will have several different high level functions. Of course, those high-level functions will be implemented using the SOLID class design principles as ...
49
votes
18answers
2k views
Must Dependency Injection come at the expense of Encapsulation?
If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class.
This exposes the ...
46
votes
6answers
4k views
How do the major C# DI/IoC frameworks compare?
At the risk of stepping into holy war territory, What are the strengths and weaknesses of these popular DI/IoC frameworks, and could one easily be considered the best? ..:
Ninject
Unity
...
46
votes
16answers
5k views
What are the benefits of dependency injection containers?
I understand benefits of dependency injection itself. Let's take Spring for instance. I also understand benefits of other Spring featureslike AOP, helpers of different kinds, etc. I'm just wondering, ...
44
votes
9answers
85k views
inject property value into Spring bean
I have a bunch of Spring beans which are picked up from the classpath via annotations, e.g.
@Repository("personDao")
public class PersonDaoImpl extends AbstractDaoImpl implements PersonDao {
// ...
41
votes
9answers
2k views
Is it a good practice to have logger as a singleton?
I had a habit to pass logger to constructor, like:
public class OrderService : IOrderService {
public OrderService(ILogger logger) {
}
}
But that is quite annoying, so I've used it a ...
40
votes
14answers
3k views
Dependency injection through constructors or property setters?
I hope this isn't a duplicate. I did a search but there are a lot of dependency injection posts and I couldn't find any needles in the haystack.
So here's my question. I'm refactoring a class and ...
37
votes
3answers
3k views
What is Castle Windsor, and why should I care?
I'm a long-time Windows developer, having cut my teeth on win32 and early COM. I've been working with .Net since 2001, so I'm pretty fluent in C# and the CLR. I'd never heard of Castle Windsor until ...
34
votes
3answers
3k views
How to use log4net with Dependency Injection
I'm trying to figure out what the right patter and usage of log4net is with a dependency injection framework.
Log4Net uses the ILog interface but requires me to call
...
33
votes
3answers
7k views
MEF (Managed Extensibility Framework) vs IoC/DI
What problems does MEF (Managed Extensibility Framework) solves that cannot be solved by existing IoC/DI containers?
32
votes
6answers
4k views
Autofac or Ninject? - which should I go for?
I'm hitting paralysis by analysis I think...
Which should I go for for my first IOC container: Autofac or Ninject?
(Just want an open source, nice and simple, IOC container)
32
votes
8answers
2k views
How to explain Dependency Injection to a 5-year old
Could anybody point out a good dependency injection tutorial? I found a ton on Google but none of them that would assume the reader is a just Java beginner.
Thanks!
31
votes
3answers
4k views
Why exactly isn't MEF a DI/IoC Container?
It's been said on the blogosphere and by MS themselves that MEF isn't another IoC Container.
Ok...but why? It seems the same to me. Maybe it's not as good as Unity or castle Windsor, but it still ...
30
votes
5answers
4k views
Can anyone recommend a IOC Container for C++?
I miss dependency injection more than all the raindrops in the ocean.
29
votes
4answers
4k views
Is there a pattern for initializing objects created via a DI container
I am trying to get Unity to manage the creation of my objects and I want to have some initialization parameters that are not known until run-time:
At the moment the only way I could think of the way ...
29
votes
6answers
14k views
Can I pass constructor parameters to Unity's Resolve() method?
I am using Microsoft's Unity for dependency injection and I want to do something like this:
IDataContext context = _unityContainer.Resolve<IDataContext>();
var repositoryA = ...
28
votes
4answers
4k views
Google Guice vs. JSR-299 CDI / Weld
Weld, the JSR-299 Contexts and Dependency Injection reference implementation, considers itself as a kind of successor of Spring and Guice.
CDI was influenced by a number of existing Java ...
28
votes
12answers
13k views
Injecting Mockito mocks into a Spring bean
I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on ...
28
votes
3answers
3k views
Google Guice vs. PicoContainer for Dependency Injection
My team is researching dependency injection frameworks and is trying to decide between using Google-Guice and PicoContainer.
We are looking for several things in our framework:
A small code ...
28
votes
13answers
3k views
Understanding the need for a DI framework
This might be a naive question. I'm currently learning the Spring framework and dependency injection. While the basic principle of DI is rather easy to grasp, it's not immediately obvious why you need ...
28
votes
13answers
7k views
Dependency injection framework for Cocoa?
Interface Builder can be used for basic dependency injection in a Cocoa app, but is anyone aware of more complete dependency injection frameworks for Objective-C/Cocoa for when you don't want to ...
27
votes
10answers
3k views
Unit testing code with a file system dependency
I am writing a component that, given a ZIP file, needs to:
Unzip the file.
Find a specific dll among the unzipped files.
Load that dll through reflection and invoke a method on it.
I'd like to ...
24
votes
4answers
2k views
Dependency Injection Constructor Madness
I find that my constructors are starting to look like this:
public MyClass(Container con, SomeClass1 obj1, SomeClass2, obj2.... )
with ever increasing parameter list. Since "Container" is my ...
24
votes
2answers
5k views
Comparing Castle Windsor, Unity and StructureMap
In a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted to understand how these IoC’s stack up against each other and the benefits/additional facilities that ...
24
votes
6answers
3k views
Castle Windsor Are There Any Downsides?
I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are ...
24
votes
6answers
2k views
Using Dependency Injection frameworks for classes with many dependencies
I have been looking at various dependency injection frameworks for .NET as I feel the project I am working on would greatly benefit from it. While I think I have a good grasp of the capabilities of ...
23
votes
1answer
1k views
How do I use StructureMap with generic unclosed types using Scan with a “greedy” constructor
Between various Stack Overflow questions and blog posts there is a pretty reasonable amount of documentation on the topic of open generics and StructureMap. Unfortunately, I must be missing something ...
23
votes
8answers
3k views
Why is IoC / DI not common in Python?
In Java IoC / DI is a very common practice which is extensively used in web applications, nearly all available frameworks and Java EE. On the other hand, there are also lots of big Python web ...
22
votes
1answer
723 views
Why not use an IoC container to resolve dependencies for entities/business objects?
I understand the concept behind DI, but I'm just learning what different IoC containers can do. It seems that most people advocate using IoC containers to wire up stateless services, but what about ...
20
votes
3answers
641 views
What is different between and purpose of MEF and Unity?
I just start study DI (I'm working on WPF/Silverlight but I have a plan to move to ASP.NET). After I read some DI articles from internet there are two Frameworks that I'm interested in, MEF and Unity. ...
20
votes
4answers
2k views
What should I consider when choosing a dependency injection framework for .NET
see also Which C#/.NET Dependency
Injection frameworks are worth looking
into?
There are now many dependency injection frameworks to choose from. You used to often be forced to use a given ...
20
votes
2answers
4k views
Custom Controller Factory, Dependency Injection / Structuremap problems with ASP.NET MVC
I recently tried to implement dependency injection using StructureMap. I managed to follow the example all the way but I'm encountering a thrown exception every time I try to run the application. ...
19
votes
3answers
2k views
What is the intention of Ninject modules?
I'm a complete newbie to nInject
I've been pulling apart someone else's code and found several instances of nInject modules - classes that derive from Ninject.Modules.Module, and have a load method ...
19
votes
11answers
4k views
Dependency Injection book recommendation(s) [closed]
It seems like there are very few books (yes, I read books) on Dependency Injection. The Amazon tag for "dependency injection" lists only a few titles, and all of them are specifically about Spring for ...
19
votes
9answers
3k views
Which Dependency Injection Tool Should I Use?
I am thinking about using Microsoft Unity for my Dependency Injection tool in our User Interface.
Our Middle Tier already uses Castle Windsor, but I am thinking I should stick with Microsoft.
Does ...
18
votes
2answers
1k views
Guice best practices and anti-patterns
I'm not sure if there is merit to this question or not, but are there any best practices and anti-patterns specific to Google Guice?
Please direct any generic DI patterns to this question.
18
votes
4answers
2k views
Unit Testing File I/O
Reading through the existing unit testing related threads here on Stack Overflow, I couldn't find one with a clear answer about how to unit test file I/O operations. I have only recently started ...
17
votes
4answers
6k views
Can someone explain Microsoft Unity?
I've been reading the articles on MSDN about Unity (Dependency Injection, Inversion of Control), but I think I need it explained in simple terms (or simple examples). I'm familiar with the MVPC ...
17
votes
3answers
2k views
NInject: Where do you keep your reference to the Kernel?
I'm using NInject on a new web application and there are two things that are unclear to me:
Don't I need to keep a reference to the Kernel around (Session/App variable) to insure that GC doesn't ...
17
votes
12answers
843 views
Does anyone have a good analogy for dependency injection?
I have read a lot of articles on Dependency Injection as well as watched a lot of videos, but I still can't get my head around it. Does anyone have a good analogy to explain it?
I watched the first ...
17
votes
6answers
892 views
ASP.NET How to best create a test DB when doing TDD?
what's the best practice for creating test persistence layers when doing an ASP.NET site (eg. ASP.NET MVC site)?
Many examples I've seen use Moq (or another mocking framework) in the unit test ...
17
votes
2answers
2k views
Ruby dependency injection libraries
I've been looking at some Ruby dependency injection libraries. In particularly, I checked out Needle and Copland. They've been around for quite awhile, yet not a lot of usages.
What are some of ...
16
votes
3answers
229 views
Prefixing interfaces with I?
I am currently reading "Clean Code" By Rober Martin (UncleBob), and generally loving the musings of UncleBob. However, I got a bit confused, when I read that he avoids prefixing interfaces like ...
16
votes
3answers
2k views
Hidden Features of Google Guice
Google Guice provides some great dependency injection features.
I came across the @Nullable feature recently which allows you to mark constructor arguments as optional (permitting null) since Guice ...