Tagged Questions
3
votes
1answer
277 views
Java - Automatic implementation of service locator pattern using annotations
Spring almost provides what I want. In Spring you can simply annotate classes with @Component and then use "context:component-scan" to have Spring automatically search for components. Then later you ...
3
votes
3answers
769 views
Is it bad to use servicelocation instead of constructor injection to avoid writing loads of factory classes
Right now we use DI/IOC and when we need to pass extra parameters to a constructor we use a factory class e.g.
public class EmailSender
{
internal EmailSender(string toEmail, string ...
2
votes
3answers
802 views
J2EE/EJB + service locator: is it safe to cache EJB Home lookup result?
In a J2EE application, we are using EJB2 in weblogic.
To avoid losing time building the initial context and looking up EJB Home interface, I'm considering the Service Locator Pattern.
But after a ...
0
votes
2answers
523 views
EJB call from swing
I have app on GF V3.01 server and remote methods in EJB container. When I call remote methods from my remote swing app process take long time to execute. I read about ServiceLocator , but can no find ...
0
votes
3answers
506 views
Testing ServiceLocator using JUnit
This is a follow up question to my previous question.
I am trying to write test case for my ServiceLocator class but it gives me the following error:
com/iplanet/ias/admin/common/ASException
...