gpt4 book ai didi

jboss - 有没有办法在使用 CLI 将模块添加到 JBoss 之前进行检查?

转载 作者:行者123 更新时间:2023-12-04 14:13:11 25 4
gpt4 key购买 nike

有没有办法在使用 JBoss CLI 调用添加之前检查模块尚未添加?

例如

module add --name=org.mysql --resources=/home/abc/drivers/mysql/MySQL5.jar



# Want to do similar check for module add
if (outcome != success) of /subsystem=datasources/jdbc-driver=org.mysql:read-resource
# Add it...
end-if

原因是试图添加一个已经存在的模块会导致错误。

最佳答案

您可能想要使用 try-catch 语句:

try
module add --name=org.mysql --resources=/home/abc/drivers/mysql/MySQL5.jar
catch
end-try
或者如果你想覆盖它......
try
module remove --name=org.mysql
catch
end-try
module add --name=org.mysql --resources=/home/abc/drivers/mysql/MySQL5.jar

关于jboss - 有没有办法在使用 CLI 将模块添加到 JBoss 之前进行检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22477353/

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