一、概述

  通过ant实现项目的自动化部署,jar包生成,替换,tomcat关停、启动,查看项目日志;

  通过java程序调用已编辑好的ant脚本build.xml配置文件中指定的target;

  文中文件路径均为作者自定义路径;读者可根据自己实际情况命名并做相应修改;只要实现目的即可;

二、环境

  jdk版本:jdk1.8.0_161;

  ant版本:apache-ant-1.10.5;

  maven版本:apache-maven-3.5.2;

  IDE:eclipse Luna Release (4.4.0);

三、环境变量配置

  1、ANT_HOME;

  2、CLASSPATH

  3、JAVA_HOME;

  4、Path;

  5、MAVEN_HOME;

  

四、eclipse配置

  1、Window-->Preferences-->Java-->Installed JREs-->Add

  如下图所示:

  

  2、添加JRE环境,如下图配置,

  

  3、注意要将tools.jar包添加进JRE system libraries,(不然在程序调用ant脚本中打jar包的target时会报错)添加方法如下图:

  

五、调用ant脚本的java程序

 import java.io.File;

 import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DefaultLogger;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.ProjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; public class AntDemo {
public static void main(String[] args) throws Exception {
final Logger logger = LoggerFactory.getLogger(AntDemo.class);
String localPath ="D:/devcode/workspace/dataSourceTest/src/main/resources/test-display/build.xml";
File buildFile = new File(localPath.toString());
Project project = new Project();
       String targetName = "test";
try {
DefaultLogger consoleLogger = new DefaultLogger();
consoleLogger.setErrorPrintStream(System.err);
consoleLogger.setOutputPrintStream(System.out);
consoleLogger.setMessageOutputLevel(Project.MSG_INFO);
project.addBuildListener(consoleLogger);
project.fireBuildStarted();
project.init();
ProjectHelper helper = ProjectHelper.getProjectHelper();
helper.parse(project, buildFile);
project.executeTarget(targetName);
project.fireBuildFinished(null);
} catch (BuildException e) {
// 构建抛出异常
project.fireBuildFinished(e);
logger.error("Ant执行异常," + e.toString());
throw new Exception("Ant执行异常," + e.toString(), e);
}
}
}

六、ant脚本-build.xml

 <?xml version="1.0" encoding="UTF-8" ?>
<project name="dataSource" default="test" basedir="D:/devcode/workspace/dataSource">
<property file="D:/build.properties" />
<target name="test">
<echo message="test echo messsage, basedir=${basedir}" />
</target> <!--*****************************export-jar-start***********************************************-->
<target name="compile" depends="delete-jar">
<echo message="--生成jar包开始--" />
<javac srcdir="${src}" destdir="${dest}">
<compilerarg line="-encoding UTF-8 " />
</javac>
<jar jarfile="${dest}\${jar_name}" basedir="${dest}" />
<echo message="--完成jar包完成,本地保存路径 file:${dest}/${jar_name}--" />
</target> <target name="delete-jar">
<delete>
<fileset dir="${dest}" includes="**/*.jar">
</fileset>
</delete>
<echo message="--清空旧本地jar包完成,路径 file:${dest}/${jar_name}--" />
</target> <!--*****************************export-jar-end***********************************************--> <!--*****************************scp-download-jar-start***********************************************-->
<target name="download-jar" description="download" depends="init_backup">
<echo message="--目标服务器待替换jar包下载--" />
<scp todir="${localtion_file}/${system.name}/${host.name}/${backup.date}/${folder.backup}" file="${username}:${password}@${host.name}:
${tomcat.home.linux}/${tomcat.name}/lib/${jar.name}.jar" trust="true" />
<echo message="--目标服务器待替换jar包下载完成,本地保存路径
file:${localtion_file}/${system.name}/${host.name}/${backup.date}/${folder.backup}/${jar.name}.jar--" />
</target> <target name="init_backup" description="create">
<echo message="--本地备份文件夹创建--" />
<mkdir dir="${localtion_file}/${system.name}/${host.name}/${backup.date}/${folder.backup}" />
<echo message="--本地备份文件夹创建完成--" />
</target>
<!--*****************************scp-download-jar-end***********************************************--> <!--*****************************tomcat-stop-start***********************************************-->
<target name="tomcat-stop" description="sshexec">
<echo message="======关停目标服务器...======" />
<sshexec host="${host.name}" username="${username}" password="${password}" port="${port}" command="${tomcat.home.linux}/${tomcat.name}/bin/shutdown.sh" trust="true" />
<echo message="======关停目标服务器完成======" />
</target>
<!--*****************************tomcat-stop-end***********************************************--> <target name="tomcat-start" description="sshexec">
<echo message="======启动服务器...======" />
<sshexec host="${host.name}" username="${username}" password="${password}" port="22" command="${tomcat.home.linux}/${tomcat.name}/bin/startup.sh" trust="true" />
<echo message="======启动服务器完成======" />
</target> </project>

七、测试运行

  

七、常见报错

  因为ant脚本中存在scp标签,用执行文件上传,下载;sshexec标签,用于执行连接服务器并执行Linux命令;

  因此在执行程序过程中,调用target(download-jar)或(tomcat-stop)时,可能会报错;需要单独下载jsch-0.1.54.jar;并将其复制粘贴到D:\development\apache-ant-1.10.5\lib路径下;

  常见报错一:

  Cause: the class org.apache.tools.ant.taskdefs.optional.ssh.SSHExec was not found.

This looks like one of Ant's optional components.

  Action: Check that the appropriate optional JAR exists in

    -ANT_HOME\lib

            -the IDE Ant configuration dialogs

  Do not panic, this is a common problem.

  The commonest cause is a missing JAR.

This is not a bug; it is a configuration problem

  解决方案:

  在程序代码上右键-->Run As-->Run Configurations...-->classpath--User Entries-->Add External JARs...

  

  全选路径D:\development\apache-ant-1.10.5\lib 下的jar包;之所以全选是为了保险,避免缺失jar包;

  

  点击打开即添加成功;注意要事先将jsch-0.1.54.jar包复制到apache-ant-1.10.5\lib路径下;

  

  再次运行,即正常;

通过java程序调用ant build.xml配置文件中指定的target的更多相关文章

  1. Java MyEclipse下Ant build.xml简单实例详解

    一.下载配置ant 1.首先下载ant: http://www.apache.org/ 下载最新的版本2.解压ant 后设置ANT_HOME, PATH中添加ANT_HOME目录下的bin目录(如:A ...

  2. Java eclipse下 Ant build.xml实例详解

    在有eclipse集成环境下ant其实不是很重要,但有些项目需要用到,另外通过eclipse来学习和理解ant是个很好的途径,所以写他demo总结下要点,希望能够帮到大家. 一.本人测试环境eclip ...

  3. 转:Java eclipse下 Ant build.xml实例详解

    在有eclipse集成环境下ant其实不是很重要,但有些项目需要用到,另外通过eclipse来学习和理解ant是个很好的途径,所以写他demo总结下要点,希望能够帮到大家. 一.本人测试环境eclip ...

  4. Java eclipse下 Ant build.xml实例详解 附完整项目源码

    在有eclipse集成环境下ant其实不是很重要,但有些项目需要用到,另外通过eclipse来学习和理解ant是个很好的途径,所以写他demo总结下要点,希望能够帮到大家. 一.本人测试环境eclip ...

  5. Java Ant build.xml详解

    1,什么是antant是构建工具2,什么是构建概念到处可查到,形象来说,你要把代码从某个地方拿来,编译,再拷贝到某个地方去等等操作,当然不仅与此,但是主要用来干这个3,ant的好处跨平台   --因为 ...

  6. (转)Java Ant build.xml详解

    1,什么是ant ant是构建工具2,什么是构建概念到处可查到,形象来说,你要把代码从某个地方拿来,编译,再拷贝到某个地方去等等操作,当然不仅与此,但是主要用来干这个3,ant的好处跨平台   --因 ...

  7. Eclipse 自动生成 Ant的Build.xml 配置文件

    Eclipse 自动生成 Ant的Build.xml 配置文件,生成的方法很隐蔽 选择你要生成Build.xml文件的项目,右键. Export-> General -> Ant Buil ...

  8. Ant build.xml相关属性详解

    关键字: ant build.xml Ant的概念 可能有些读者并不连接什么是Ant以及入可使用它,但只要使用通过Linux系统得读者,应该知道make这个命令.当编译Linux内核及一些软件的源程序 ...

  9. 一个完整的JENKINS下的ANT BUILD.XML文件(Jenkins可以参考)

    一个完整的JENKINS下的ANT BUILD.XML文件 <?xml version="1.0" encoding="UTF-8"?> <p ...

随机推荐

  1. svg常见形状

    SVG是使用XML来描述二维图形和绘图程序的语言.是指可伸缩矢量图形(Scalable Vector Graphics),svg.图像在放大或改变尺寸的情况下图形质量不会有所损失. svg的主要竞争者 ...

  2. idea打开dashboard

    1.编辑workspace.xml文件,搜索 “RunDashboard” 节点 2.在component节点下增加option <option name="configuration ...

  3. SDL播放YUV----单帧

    用到的项目:Tocy-Android-SDLv2 C中的 入口: main.c as_lesson_XXX.c bmp_main : 在C中定义文件的路径: char *filepath = &quo ...

  4. Linux----------nfs服务器的搭建及常识

    一.nfs简介 nfs(network file system)即网络文件系统,是FreeBSD支持的文件系统中的一种,它允许网络中的计算机之间通过TCP/IP网络共享资源. nfs主要适用用linu ...

  5. 台式机安装Linux操作系统无法识别网卡

    在公司一台台式机上安装centos7系统,发现安装好之后,发现没有自动生成eth0网卡. 查看网卡相关信息: lspci|grep Eth 获取到网卡型号后,可以去官网下载对应的安装包进行编译安装即可 ...

  6. IntelliJ IDEA自动导入包去除星号(import xxx.*)

    打开设置>Editor>Code Style>Java>Scheme Default>Imports ① 将Class count to use import with ...

  7. Qt applendPlainText()/append() 多添加一个换行解决方法

    Qt applendPlainText()/append() 多添加一个换行解决方法 void ConsoleDialog::appendMessageToEditor(const QString & ...

  8. python selenium-webdriver 定位frame中的元素 (十三)

    定位元素时经常会出现定位不到元素,这时候我们需要观察标签的上下文,一般情况下这些定位不到的元素存放在了frame或者放到窗口了,只要我们切入进去就可以很容易定位到元素. 处理frame时主要使用到sw ...

  9. Linux 定时任务Crontab的使用

    1.准备好Java程序,导出为Jar文件 如myProject.jar 2.写Shell脚本 startTask.sh echo 'start...' cd  /home/root/yourFolde ...

  10. windows下使用caffe测试mnist数据集

    在win10机子上装了caffe,感谢大神们的帖子,要入坑caffe-windows的朋友们看这里,还有这里,安装下来基本没什么问题. 好了,本博文写一下使用caffe测试mnist数据集的步骤. 1 ...