gpt4 book ai didi

singleton - WebLogic集群单例服务

转载 作者:行者123 更新时间:2023-12-03 06:50:15 25 4
gpt4 key购买 nike

我目前正在尝试使用 WebLogic 集群通过 WebLogic 实现单例服务。我读过一些关于 WebLogic 上的集群单例服务的文献,我知道我必须实现 weblogic.cluster.singleton.SingletonService我想要集群化为单例的对象上的接口(interface)。

import weblogic.cluster.singleton.SingletonService;

public class SingletonOrchestrator implements SingletonService {

public void activate() {
System.out.println(":: activate CALLED FOR SingletonOrchestrator");
}
public void deactivate() {
System.out.println(":: deactivate CALLED FOR SingletonOrchestrator");
}

(...)

}

我能够将其部署为 WebLogic 上的应用程序,尽管它在部署后似乎不会调用 activate()deactivate() 方法。我不知道我还需要做什么才能让它在我的 WebLogic 集群中作为单例服务工作。

有人有这方面的经验吗?谁能提供一个可行的示例并向我解释我还需要做什么?

最佳答案

安装步骤详见Automatic Migration of User-Defined Singleton Services :

  • 实现单例服务接口(interface)
  • 部署它并配置迁移行为

    • 在应用程序中打包并部署单例服务(在 weblogic-application.xml 中)。
      〜或〜
    • 将单例服务部署为 WebLogic Server 中的独立服务(在 config.xml 中)。
    • (可选)配置单例服务的迁移行为。

另请查看Configure a Singleton Service在管理控制台联机帮助中。

关于singleton - WebLogic集群单例服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2461355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com