我每天都会获得一个war文件,并通过远程桌面连接(Windows服务器)将其部署在玻璃鱼服务器上。我想让它做自动部署,例如我只是将war文件放在某个预定义的位置并运行脚本,该脚本部署最新的war并重新启动glass fish server。
那我该怎么办?任何批处理脚本或任何其他脚本?
答案 0 :(得分:0)
You can put your WAR file in the auto deploy folder of GlassFish:
as-install/domains/domain1/autodeploy
或者您可以使用脚本deploy with the asadmin tool
Or you can use the REST interface to deploy:
curl -s -S \
-H 'Accept: application/json' -X POST \
-H 'X-Requested-By: dummy' \
-F id=@/path/to/application.war \
-F force=true http://localhost:4848/management/domain/applications/application