vote up 3 vote down star
2

What are the advantages and disadvantages of using a Service Locator versus a singleton? I've read that singletons are bad but I'm wondering if s Service Locator would be generally a better way of doing things.

flag

1 Answer

vote up 4 vote down

Both approaches are bad in that it's not obvious from class contract what are its' dependencies. That is,

private void foo()
{
    var x = SomeSingleton.Instance.GetX();
    var y = ServiceLocator.GetService<IProvider>().GetY();
}

has references to SomeSingleton and IProvider buried deep somewhere inside.

However, compared to pure singleton approach, service locators are generally much better in that they allow for simpler centralized configuration, lifetime management, etc. They also allow for better testability (you can always mock calls to GetService<T>), lower coupling, separation of concerns, etc.

link|flag
2  
I would go so far as to consider both anti-patterns, but I agree that Service Locator is marginally preferable. The best solution would be to implement proper Dependency Injection. – Mark Seemann Aug 25 at 13:47
from what I understand from DI, wouldn't it require all the objects that used to access the singleton directly to have an reference to the ex-singleton object? – Steve the Plant Aug 25 at 13:53

Your Answer

Get an OpenID
or

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