All Questions
6 questions
0
votes
1
answer
443
views
Avoid Service locator in strategy design pattern [closed]
Take a look on that pseudocode
class A,B,C implements StrategyInterface
{
private dep;
constructor(Dep dep) {
this->dep = dep;
}
}
class StrategyResolver
{
private ...
1
vote
1
answer
637
views
Is this valid implementation of ServiceLocator pattern in java?
I have an existential doubt. I saw an implementation of ServiceLocator pattern in C++ in some blog (Service Locator). So, I'm trying to extend the same implementation on Java SE (without any other ...
1
vote
0
answers
300
views
An alternative to service locator for an application which should be expansible
I'm working on a game which has different items which all have different behavior. All items can be improved by buying different upgrades for different aspects of the item. I save the player's data in ...
1
vote
3
answers
1k
views
Is JNDI bad as service locator design pattern?
I'm a Java EE nooby developer, According to many resources on the internet which claim that service locator design pattern is an anti-pattern because it hides classes dependecies and more things and ...
1
vote
1
answer
2k
views
Looking for help with implementation of Service Locator pattern
I have a small web application that I am building. Primarily to improve my unit testing ability (and also decouple my code further) I am implementing a service locator pattern to look up concrete ...
2
votes
1
answer
2k
views
Guice-style service locator
Has anybody ever seen/attempted to write a service locator pattern which uses a Guice style configuration system?
Currently I have a GWT project (which happens to use GWT-RPC) that uses a command ...