ALSB自动化

发布于 2024-08-05 07:53:17 字数 100 浏览 2 评论 0原文

WebLogic 的优雅之处之一是 WLST(Weblogic 脚本)。是否可以编写在 ALSB(Aqualogic 服务总线)中完成的操作脚本?

例如:从总线导出资源。

One of the elegant things about WebLogic is WLST (Weblogic Scripting). Is it possible to script actions done in ALSB (Aqualogic Service Bus)?

For example: Exporting resources from the bus.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

御守 2024-08-12 07:53:17

我发现如何导出。您需要像这样获取 ALSBConfigurationMBean 的实例。

 if currentTree() != domainRuntime:
    domainRuntime()

alsbConfigBean = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)

从那里您只需查询正确的参考文献即可。 ALSBConfigurationMBean 的文档为 此处

找到了一些示例 Jython 代码此处

I found out how to export. You need to grab an instance of ALSBConfigurationMBean like so.

 if currentTree() != domainRuntime:
    domainRuntime()

alsbConfigBean = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)

From there you just do a query for the correct references. Documentation for ALSBConfigurationMBean is here

Found some sample Jython code here

清风不识月 2024-08-12 07:53:17

简短的回答是肯定的。请查看使用部署 API

The short answer is yes. Check out Using deployment APIs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文