- 浏览: 627750 次
- 性别:
- 来自: 北京
最新评论
以前的项目都是用别人的build.xml
下定决心自己写一个build.xml
以加深对软件的理解:
下下第一版。
根目录下写了一个build.xml
当然这是用myecllips生成的项目了。
ctrl+alt+x+q运行一下
看来没问题。
------------------------------------
下一步
构建目录树:
1.src/java是放源码的
2.src/test是放测试与mock代码的。
3.src/source放配置文件用。
-------------------
以上三个目录在eclipse中指向neutral/WebRoot/WEB-INF/classes
-------------------
4.testlib是放测试时才会用到的包
5.userlib放运行时用的包。
添加目录定义区
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 187 milliseconds
―――――――――――――――――――――――――
重头戏。。。。
编译过程叫compile
----
注1:在all中加入compile
否则是不会运行地。。。。。。。
注2:在源目录下写个程序吧。。。。。
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
compile:
[echo] 编译
BUILD FAILED
C:\Documents and Settings\maomao\workspace\neutral\build.xml:40: destination directory "C:\Documents and Settings\maomao\workspace\neutral\build\class" does not exist or is not a directory
Total time: 234 milliseconds
没找到目录错误。。。
所以我们加入另一个任务
构造目录
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
buildingpath:
[echo] 构建目录
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\class
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\test
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\product
compile:
[echo] 编译
[javac] Compiling 2 source files to C:\Documents and Settings\maomao\workspace\neutral\build\class
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 1 second
顺序没关系只要依赖对了就OK
不过第二次的日志就成这样子了
对您老来说肯定很容易的
下定决心自己写一个build.xml
以加深对软件的理解:
下下第一版。
根目录下写了一个build.xml
当然这是用myecllips生成的项目了。
<?xml version ="1.0" ?> <project name="neutral" default="all" basedir="." > <!-- ================================= target: all ================================= --> <target name="all" description="--> description"> </target> </project>
ctrl+alt+x+q运行一下
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
all:
BUILD SUCCESSFUL
Total time: 125 milliseconds
all:
BUILD SUCCESSFUL
Total time: 125 milliseconds
看来没问题。
------------------------------------
下一步
构建目录树:
1.src/java是放源码的
2.src/test是放测试与mock代码的。
3.src/source放配置文件用。
-------------------
以上三个目录在eclipse中指向neutral/WebRoot/WEB-INF/classes
-------------------
4.testlib是放测试时才会用到的包
5.userlib放运行时用的包。
添加目录定义区
<?xml version ="1.0" ?> <project name="neutral" default="all" basedir="." > <!-- ================================= target: all ================================= --> <target name="all" description="--> description"> <echo message="mynameis">maodajun</echo> </target> <property name="build.dir" location="build" description=""/><!-- ANT 临时 文件 区--> <property name="src.dir" location="src" description=""/><!--源文件区 --> <property name="product.class" location="${build.dir}/product" description="成品区"/><!--成品存放区 --> <property name="source.class" location="${build.dir}/class" description="编译区" /><!-- 源文件编译区--> <property name="junittest.class" location="${build.dir}/test" description="测试编译区"/><!—单元测试文件编译区--> <property name="source.dir" location="${src.dir}/java" description=" 源码"/><!-- 源代码--> <property name="junittest.dir" location="${src.dir}/test" description=" 测试码"/><!-- 测试码--> <property name="context.dir" location="${src.dir}/source" description="配置区"/><!-- 应用配置文件--> <property name="jsp.dir" location="WebRoot/WebRoot/WEB-INF/jsp" description="配置区"/><!-- 应用配置文件--> <property name="user.lib" location="lib/user" description="用户库"/><!-- 用户所需要的lib 库--> <property name="test.lib" location="lib/test" description="测试库"/> <!-- 测试所需要的lib 库 --> <echo> +--${product.class} |--${source.class} |--${test.class} +--${source.dir} |--${junittest.dir} |--${context.dir} |--${jsp.dir} +--${user.lib} |--${test.lib} </echo> </project>
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 187 milliseconds
―――――――――――――――――――――――――
重头戏。。。。
编译过程叫compile
----
注1:在all中加入compile
否则是不会运行地。。。。。。。
注2:在源目录下写个程序吧。。。。。
package com.alcargo.tianhangteam.tools; import org.apache.log4j.Logger; public class HelloWorld { public static void main(String[] args) { System.out.println("hellowrld"); } }
<?xml version ="1.0" ?> <project name="neutral" default="all" basedir="." > <!-- ================================= target: all ================================= --> <target name="all" depends="compile" description="--> description"> <echo message="mynameis">maodajun</echo> </target> <property name="build.dir" location="build" description=""/><!-- ANT 临时 文件 区--> <property name="src.dir" location="src" description=""/><!--源文件区 --> <property name="product.class" location="${build.dir}/product" description="成品区"/><!--成品存放区 --> <property name="source.class" location="${build.dir}/class" description="编译区" /><!-- 源文件编译区--> <property name="junittest.class" location="${build.dir}/test" description="测试编译区"/><!-- 测试文件编译区--> <property name="source.dir" location="${src.dir}/java" description=" 源码"/><!-- 源代码--> <property name="junittest.dir" location="${src.dir}/test" description=" 测试码"/><!-- 测试码--> <property name="context.dir" location="${src.dir}/source" description="配置区"/><!-- 应用配置文件--> <property name="jsp.dir" location="WebRoot/WebRoot/WEB-INF/jsp" description="配置区"/><!-- 应用配置文件--> <property name="user.lib" location="lib/user" description="用户库"/><!-- 用户所需要的lib 库--> <property name="test.lib" location="lib/test" description="测试库"/> <!-- 测试所需要的lib 库 --> <echo> +--${product.class} |--${source.class} |--${junittest.class} +--${source.dir} |--${junittest.dir} |--${context.dir} |--${jsp.dir} +--${user.lib} |--${test.lib} </echo> <!-- ================================= target: compile ================================= --> <target name="compile" depends="" description="--> 编译源文件"> <javac srcdir="${source.dir}" destdir="${source.class}"> </javac> </target> </project>
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
compile:
[echo] 编译
BUILD FAILED
C:\Documents and Settings\maomao\workspace\neutral\build.xml:40: destination directory "C:\Documents and Settings\maomao\workspace\neutral\build\class" does not exist or is not a directory
Total time: 234 milliseconds
没找到目录错误。。。
所以我们加入另一个任务
构造目录
<!-- - - - - - - - - - - - - - - - - - target: 构建目录 - - - - - - - - - - - - - - - - - --> <target name="buildingpath" description="构建所需要目录"> <echo message="构建目录"></echo> <mkdir dir="${source.class}"/> <mkdir dir="${junittest.class}"/> <mkdir dir="${product.class}"/> </target>
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
buildingpath:
[echo] 构建目录
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\class
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\test
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\product
compile:
[echo] 编译
[javac] Compiling 2 source files to C:\Documents and Settings\maomao\workspace\neutral\build\class
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 1 second
顺序没关系只要依赖对了就OK
不过第二次的日志就成这样子了
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
buildingpath:
[echo] 构建目录
compile:
[echo] 编译
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 718 milliseconds
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
buildingpath:
[echo] 构建目录
compile:
[echo] 编译
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 718 milliseconds
<?xml version ="1.0" ?> <project name="neutral" default="all" basedir="." > <!-- ================================= target: all ================================= --> <target name="all" depends="clean,compile" description="--> description"> <echo message="mynameis">maodajun</echo> </target> <property name="build.dir" location="build" description=""/><!-- ANT 临时 文件 区--> <property name="src.dir" location="src" description=""/><!--源文件区 --> <property name="product.class" location="${build.dir}/product" description="成品区"/><!--成品存放区 --> <property name="source.class" location="${build.dir}/class" description="编译区" /><!-- 源文件编译区--> <property name="junittest.class" location="${build.dir}/test" description="测试编译区"/><!-- 测试文件编译区--> <property name="source.dir" location="${src.dir}/java" description=" 源码"/><!-- 源代码--> <property name="junittest.dir" location="${src.dir}/test" description=" 测试码"/><!-- 测试码--> <property name="context.dir" location="${src.dir}/source" description="配置区"/><!-- 应用配置文件--> <property name="jsp.dir" location="WebRoot/WebRoot/WEB-INF/jsp" description="配置区"/><!-- 应用配置文件--> <property name="user.lib" location="lib/user" description="用户库"/><!-- 用户所需要的lib 库--> <property name="test.lib" location="lib/test" description="测试库"/> <!-- 测试所需要的lib 库 --> <echo> +--${product.class} |--${source.class} |--${junittest.class} +--${source.dir} |--${junittest.dir} |--${context.dir} |--${jsp.dir} +--${user.lib} |--${test.lib} </echo> <!-- ================================= target: compile ================================= --> <target name="compile" depends="buildingpath" description="--> 编译源文件"> <echo message="编译"></echo> <javac srcdir="${source.dir}" destdir="${source.class}"> </javac> </target> <!-- - - - - - - - - - - - - - - - - - target: 构建目录 - - - - - - - - - - - - - - - - - --> <target name="buildingpath" description="构建所需要目录"> <echo message="构建目录"></echo> <mkdir dir="${source.class}"/> <mkdir dir="${junittest.class}"/> <mkdir dir="${product.class}"/> </target> <!-- - - - - - - - - - - - - - - - - - target: 清除上次的文件 - - - - - - - - - - - - - - - - - --> <target name="clean" description="删除编译文件与文件所在的目录"> <echo message="清除临时文件目录"></echo> <deltree dir="${build.dir}"/> </target> </project>
引用
Buildfile: C:\Documents and Settings\maomao\workspace\neutral\build.xml
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
clean:
[echo] 清除临时文件目录
[deltree] DEPRECATED - The deltree task is deprecated. Use delete instead.
[deltree] Deleting: C:\Documents and Settings\maomao\workspace\neutral\build
buildingpath:
[echo] 构建目录
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\class
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\test
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\product
compile:
[echo] 编译
[javac] Compiling 2 source files to C:\Documents and Settings\maomao\workspace\neutral\build\class
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 1 second
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\build\product
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\class
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\build\test
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\src\java
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\test
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\src\source
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\WebRoot\WebRoot\WEB-INF\jsp
[echo] +--C:\Documents and Settings\maomao\workspace\neutral\lib\user
[echo] |--C:\Documents and Settings\maomao\workspace\neutral\lib\test
clean:
[echo] 清除临时文件目录
[deltree] DEPRECATED - The deltree task is deprecated. Use delete instead.
[deltree] Deleting: C:\Documents and Settings\maomao\workspace\neutral\build
buildingpath:
[echo] 构建目录
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\class
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\test
[mkdir] Created dir: C:\Documents and Settings\maomao\workspace\neutral\build\product
compile:
[echo] 编译
[javac] Compiling 2 source files to C:\Documents and Settings\maomao\workspace\neutral\build\class
all:
[echo] mynameismaodajun
BUILD SUCCESSFUL
Total time: 1 second
评论
5 楼
castbsd
2008-11-25
<javac /> 中最基本的五年元素一个都不能少
<javac srcdir="${src.dir} destdir=${classes.dir}
encoding="utf-8" target="1.6"
classpathref="compile.path"
/>
这样写会避免很多问题.
同时会让生活更加灿烂!
<javac srcdir="${src.dir} destdir=${classes.dir}
encoding="utf-8" target="1.6"
classpathref="compile.path"
/>
这样写会避免很多问题.
同时会让生活更加灿烂!
4 楼
wu_jiaxiang
2008-09-28
moven不错
3 楼
抛出异常的爱
2008-09-28
以前用的都是别人写的.....
现在要自己写个
现在要自己写个
2 楼
YuLimin
2008-09-27
偶眼花,五六年前用Java而一直不用ANT的人是神人:)
1 楼
cddcdd
2008-09-13
对您老来说肯定很容易的
发表评论
-
vlc 必要的参数
2021-08-31 17:18 0vlc.exe -vvv -Idummy "rt ... -
grafana+mysql 页面设计
2019-02-25 08:51 0前提 1。主要是SELECT 。 2。使用mysql ... -
测试用例到底怎么才值的写
2016-04-30 10:32 0有个方法是这样的 public function ... -
postman cookies登陆设置
2016-04-28 09:30 2054必须登陆才能测试的接口如何测试? 打开这个开关就可以共用coo ... -
将png 切成ios android能用的格式
2016-04-28 01:24 741由于要求不高找了个在线切图的工具 http://images. ... -
如何在原有系统中加入功能(一数据库)
2016-04-24 11:06 821第一步想办法把建表语句导入一powerdesginer ... -
php递归 格式化 数字类型
2016-04-20 12:35 792/** * 数字转日期递归 ... -
freemind 怎么处理成为word
2015-06-11 19:37 16写文章用freemind打了一个草稿. 先导出成为htm ... -
架构师之路(工欲善其事,必先利其器)纸牌屋
2014-03-27 06:48 0起因:小胖的一个征集实现过程 https://gist.git ... -
油猴对抗一般广告
2012-11-14 00:07 1885看小说 好多好多的广告是必然的.. 所以 去掉iframe 去 ... -
回答一些很有共性的东西
2011-02-24 21:24 5604我作软件第二第三年时 ... -
粗糙的object打印日志用....
2010-11-04 18:40 2167function logJquery(o){ ... -
拳皇连招
2010-09-29 13:46 2371从列表中找到录入的后N位 class KOFTest { ... -
一个activeX方法 刚刚发现
2010-09-14 19:14 1510解答:此题 http://www.iteye.com/prob ... -
[反例]超短代码,意义不明
2010-08-19 17:49 1562public String logout(HttpServl ... -
站读帝
2010-07-26 09:29 1309http://www.hudong.com/wiki/%E7% ... -
不要重复发明轮子
2010-07-06 17:20 2172一直以为不要重复发明轮子的意义很简单. 今天看了人件.... ... -
答复: 不用判断语句求俩数中的大(或者小)数
2010-05-31 12:55 2125跳大神也是一种艺术: public class MaxMin ... -
集合合并
2010-05-28 10:15 1957用于时间表的合并 时间段的合并工作. public cla ... -
删除重名的记录
2010-04-05 23:04 1941面试看到这种题。。。。。 我估计考官的正确答案有可能是错的 所 ...
相关推荐
### ant学习笔记:深入了解ant构建工具 #### 引言 `ant`,作为一款源自动网络的学习笔记,主要探讨了Apache Ant这一强大的构建工具。Apache Ant是一款开源的、跨平台的构建工具,专为Java应用程序设计,旨在简化并...
《Ant学习笔记:详解Ant执行命令参数与系统属性》 Ant,作为一个基于Java的构建工具,因其跨平台性以及XML格式的构建脚本而被广泛应用于自动化构建过程,如编译、打包、测试等。本篇文章将深入探讨Ant执行命令的...
根据提供的文件信息,这里将深入解析“ant学习笔记:一个简单的java编译部署实例”,涵盖标题、描述、标签以及部分内容中提及的关键知识点。 ### Apache Ant简介 Apache Ant是一款开源的Java环境下的自动化构建...
Ant 1.9.1是Ant的一个版本,学习笔记通常记录了使用该工具的基本操作和配置方法。 ### Ant的下载和安装 要使用Ant,首先需要下载并安装。在Windows系统中,通常需要配置环境变量以便于命令行中使用Ant命令。ANT_...
总的来说,这个“ant个人学习笔记和简单示例”应该能帮助你掌握Ant的基本用法,理解构建过程的自动化,以及如何编写和维护自己的构建文件。通过学习和实践其中的示例,你将能够熟练地运用Ant来构建和管理Java项目,...
### 经典Ant笔记知识点详解 #### 一、Ant简介及功能 - **定义与作用:** - Ant是一款开源的Java平台上的自动化构建工具,主要用于简化软件项目的构建过程,支持多种任务,如编译Java源代码、运行Java程序、复制...
在“Ant学习笔记”中,我们可以深入探讨以下几个关键知识点: 1. **Ant基本概念**:Ant是Apache软件基金会下的一个项目,主要由Java编写。它的核心类库`ant.jar`包含了所有执行构建任务所需的组件。XML文件,通常...
**Ant学习笔记** Apache Ant,一个Java库和命令行工具,其任务是驱动构建过程。它是Java世界中广泛使用的构建工具,类似于Unix世界的Make。Ant以其XML格式的构建文件(通常命名为`build.xml`)而闻名,这个文件包含...
"Ant ant ant antant ant ant antant ant ant ant" 这个描述可能是在强调Ant在项目构建过程中的重复性和不可或缺性,暗示着它在工程中的频繁使用和核心地位。 Ant的设计理念是“一切都是XML”,它通过XML格式的构建...
ant ant下载 ant配置ant ant下载 ant配置ant ant下载 ant配置
《Ant构建工具学习指南》 Ant,作为Java领域的一个强大构建工具,它的主要作用在于将复杂的项目构建过程规范化、自动化,使得开发者能够更专注于代码的编写而非构建流程。本文将深入探讨Ant的基本概念、安装配置、...
ANT,全称Apache Ant,是一个基于Java的构建工具,它以XML格式定义构建脚本,使得项目构建过程具有良好的可读性和可维护性。ANT在Java世界中扮演的角色类似于C语言中的make工具,用于自动化执行诸如编译、打包、测试...
### ant的学习笔记知识点详解 #### 一、Ant的作用与特性 Ant是一款强大的自动化构建工具,主要应用于Java项目,能够高效地处理项目的编译、打包、测试等任务。它采用XML格式编写构建脚本,这使得Ant具有良好的跨...
Apache Ant 是一个开源的构建工具,广泛用于Java项目构建,由Apache软件基金会开发。这个"apache-ant-1.6.5-bin.zip"文件是Ant的1.6.5版本的二进制发行版,适合在Windows操作系统上使用。Ant是基于Java的,它的主要...
开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6开发工具 ant-1.9.6...