Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to implement IOC without a global static service (non-service locator solution)?

we want to use Unity for IOC. All i've seen is the implementation that there is one global static service (let's call it the the IOCService) which holds a reference to the Unity container, which registers all interface/class combinations and every class asks that object: give me an implementation for Ithis or IThat.

Frequently i see a response that this pattern is not good because it leads to a dependency from ALL classes to the IOCService (not to the Unity container because it is only known inside the IOCService).

But what i don't see often, is: what is the alternative way?

Michel

EDIT: found out that the global static service is called the service locator, added that to the title.

like image 420
Michel Avatar asked Jun 09 '10 14:06

Michel


People also ask

What is IoC container in. NET Core?

ASP.NET Core contains a built-in dependency injection mechanism. In the Startup. cs file, there is a method called ConfigureServices which registers all application services in the IServiceCollection parameter. The collection is managed by the Microsoft.

What is dependency injection in dot NET Core?

Dependency injection (also known as DI) is a design pattern in which a class or object has its dependent classes injected (passed to it by another class or object) rather than create them directly. Dependency injection facilitates loose coupling and promotes testability and maintenance.

Is service locator A IoC?

An IoC container can be used as a service locator. No, a container doesn't 'use' any pattern. It's really up to the programmer using the container to use a pattern. It's all in how you wire it together.

What is the difference between service locator and dependency injection?

The main difference is how the dependencies are located, in Service Locator, client code request the dependencies, in DI Container we use a container to create all of objects and it injects dependency as constructor parameters (or properties). Dependency Injection doesn't require the use of a DI Container though.


1 Answers

The alternative is to have a single instance of your container at the highest application level only, then use that container to resolve every object instance you need to create in that layer.

For example, the main method of most executables just looks like this (minus exception handling):

private static void main(string[] args) {       Container container = new Container();       // Configure the container - by hand or via file       IProgramLogic logic = container.Resolve<IProgramLogic>();       logic.Run(); } 

Your program (represented here by the IProgramLogic instance) doesn't have to know anything about your container, because container.Resolve will create all its dependencies - and its dependencies' dependencies, on down to leaf classes with no dependencies of their own.


ASP.NET is a harder case, because web forms doesn't support constructor injection. I typically use Model-View-Presenter in my web forms applications, so my Page classes really only have one dependency each - on their presenter. I don't unit test them (everything interesting and testable is in my presenters, which I do test), and I don't ever substitute presenters. So I don't fight the framework - I just expose a container property on my HttpApplication class (in global.asax.cs) and use it directly from my Page files:

protected void Page_Load(object sender, EventArgs args) {     ICustomerPresenter presenter = Global.Container.Resolve<ICustomerPresenter>();     presenter.Load(); } 

That's service locator of course - though the Page classes are the only thing coupled to the locator: your presenter and all of its dependencies are still fully decoupled from your IoC container implementation.

If you have a lot of dependencies in your Page files (that is, if you do not use Model-View-Presenter), or if it's important to you to decouple your Page classes from your Global application class, you should try to find a framework that integrates into the web forms request pipeline and use property injection (as suggested by Nicholas in the comments below) - or write your own IHttpModule and perform the property injection yourself.

like image 195
Jeff Sternal Avatar answered Oct 31 '22 02:10

Jeff Sternal