Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Guys,

I am a j2ee developer. I want to know when exactly service locator design pattern will be followed for developing a j2ee application. Could you please give me certain idea ? --- Rakesh
Posted

1 solution

The service locator design pattern is used when we want to use JNDI lookup and use business component such an EJB beans and JMS component and services such as datasources. Considering high cost of looking up JNDI for a service, Service Locator pattern makes use of caching technique. For the first time Service locator lookup in JNDI and cache it. Further lookup on the same service via Service Locator is done in its cache which improves performance.
If you using a DI container like Spring then you don’t need to implement service locator pattern. If you are using any JNDI lookup then it is better to use service locator pattern.
 
Share this answer
 
Comments
Shubhashish_Mandal 27-Jun-13 3:03am    
+4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900