45 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

---
layout: pattern
title: Service Locator
folder: service-locator
permalink: /patterns/service-locator/
categories: Architectural
language: en
2015-12-28 15:52:44 +02:00
tags:
- Game programming
- Performance
---
## Intent
Encapsulate the processes involved in obtaining a service with a
strong abstraction layer.
## Class diagram
![alt text](./etc/service-locator.png "Service Locator")
## Applicability
The service locator pattern is applicable whenever we want
to locate/fetch various services using JNDI which, typically, is a redundant
and expensive lookup. The service Locator pattern addresses this expensive
lookup by making use of caching techniques ie. for the very first time a
particular service is requested, the service Locator looks up in JNDI, fetched
the relevant service and then finally caches this service object. Now, further
lookups of the same service via Service Locator is done in its cache which
improves the performance of application to great extent.
## Typical Use Case
* When network hits are expensive and time consuming
* Lookups of services are done quite frequently
* Large number of services are being used
## Consequences
* Violates Interface Segregation Principle (ISP) by providing pattern consumers with an access
to a number of services that they don't potentially need.
* Creates hidden dependencies that can break the clients at runtime.
## Credits
2020-07-06 13:31:07 +03:00
* [J2EE Design Patterns](https://www.amazon.com/gp/product/0596004273/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=0596004273&linkCode=as2&tag=javadesignpat-20&linkId=48d37c67fb3d845b802fa9b619ad8f31)