Is there any easy way to automatically deploy a web service / java web app, etc to a remote tomcat server? currently i have to manually copy the .war file.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Personally, I add a "deploy" target in build.xml that contains an <scp> tag to transfer the war file.
UPDATE:
Here is an example:
<target name="deploy" depends="dist"> <scp todir="${user.name}@www.myserver.com:tomcat-base/webapps/" keyfile="${user.home}/.ssh/myserver.key" passphrase="BlaBlaBla" trust="true"> <fileset dir="dist" includes="myapp.war"/> </scp> </target>