Singleton Service in weblogic for cluster timer
I am using Weblogic 11. Ejb3.0
I am trying to set up a timer in a cluster environment. I understood from the net that it possible to do via the Singleton service of weblogic.
anyone could show me some concrete implementation how to do it and开发者_JAVA百科 how to connect the java code to that service so it will trigger the code in the set time?
thanks,
ray.
A SingletonService is a service which would be active only in one node of a cluster. It is not directly related to timers.
If you want to set up an EJB3 Timer in a cluster environment you can check this blog entry.
精彩评论