因为我需要在weblogic服务器中取消部署库之前强制停止所有应用程序引用。
如何使用weblogic命令行参考在weblogic服务器的库设置中的“引用此库中的应用程序”选项卡中获取应用程序列表。
因此我可以停止这些应用程序而不是停止所有应用程序。
答案 0 :(得分:0)
此信息可从LibraryRuntimeMBean.ReferencingRuntimes获得 看看这个documentation
答案 1 :(得分:0)
在WLST中,您可以迭代库并获取应用程序名称。
serverRuntime()
listLibraries=cmo.getLibraryRuntimes()
for library in listLibraries :
for referencingRuntime in library.getReferencingRuntimes() :
print referencingRuntime.getName()