使用 ubuntu 终端在 wildfly 10.0.0 中部署我的 war 文件
Deploying my war file in wildfly 10.0.0 using ubuntu terminal
请告诉我 ubuntu 终端的命令,以便在 wildfly 服务器 10.0.0 中部署我的 war 文件。
提前致谢
如果您 运行 处于独立模式,您可以将文件拖放到 standalone/deployments 文件夹中。
对于独立或域模式,您可以使用 CLI 命令部署 war 文件
bin/jboss-cli.sh
使用 "deploy my.war" 并且对于域模式,您需要添加 server-group 名称,您可以使用 tab-completion 以获得正确的语法。
请告诉我 ubuntu 终端的命令,以便在 wildfly 服务器 10.0.0 中部署我的 war 文件。
提前致谢
如果您 运行 处于独立模式,您可以将文件拖放到 standalone/deployments 文件夹中。 对于独立或域模式,您可以使用 CLI 命令部署 war 文件 bin/jboss-cli.sh 使用 "deploy my.war" 并且对于域模式,您需要添加 server-group 名称,您可以使用 tab-completion 以获得正确的语法。