分享
 
 
 

Struts学习笔记[3]使用ant来发布Struts应用

王朝java/jsp·作者佚名  2006-01-31
窄屏简体版  字體: |||超大  

使用ant来发布Struts应用

用ant来编译规模较大的工程比较方便,每个工程对应一个build.xml文件。这个文件包含与这个工程有关的路径信息和任务。每个build.xml文件都包含一个<project>元素,和一个或多个<target>元素。ANT提供了内置任务集,用户可以开发自己的任务元素。下表为ANT的内置任务:

ANT任务

描述

Property

设置name/value形式的属性

Mkdir

创建目录

Copy

拷贝文件或文件夹

Delete

删除文件或文件夹

Javac

翻译java源文件

War

为Web应用打包

Javadoc

为java源文件创建JavaDoc文档

1.Build.xml文件的<project>元素有三个属性:

l name属性,即指定工程的名字

l basedir属性,指定工程的路径,设置为”.”,就表示工程的路径为build.xml所在的文件夹

l default属性,必须是给定的属性,用来指定工程默认的target元素,如果运行ant时不指定参数即target,则使用default所指向的target。在上面的例子中,默认的target为help。则在命令提示符中输入ant指令,则执行help target所需要完成的功能。

2.建立一个名为build.properties的文件,内容为

tomcat.home=d:\tomcat

webapps.home=d:\tomcat\webapps

则在build.xml文件里面使用<property file=”build.properties”>来调用build.properties文件,这样就可以在build.xml文件里面使用${tomcat.home}和${webapps.home}来指定tomcat的安装目录,和工程压缩后应该存放的地点webapps.home。

3.设置公共属性

一个工程可以设置很多属性,属性由name和value构成,例如:

<property name=”app.home” value=”.”/>。

在build.xml文件中的其他地方如果需要访问属性,则使用的语法格式为${属性名},例如:<property name=”src.home” value=”${app.home}/src”/>。

4.一个规范的build.xml例子:

<project name="helloapp" default="help" basedir=".">

<!-- ========= Property Definitions========== -->

<!--

All properties should be defined in this section.

Any host-specific properties should be defined

in the build.properties file.

In this app, the following properties are defined in build.properties:

In this app, the following properties are defined in build.properties:

In this app, the following properties are defined in build.properties:

In this app, the following properties are defined in build.properties:

In this app, the following properties are defined in build.properties:

o tomcat.home - the home directory of your Tomcat installation

o tomcat.home - the home directory of your Tomcat installation

o tomcat.home - the home directory of your Tomcat installation

o tomcat.home - the home directory of your Tomcat installation

o tomcat.home - the home directory of your Tomcat installation

o webapps.home - the place to copy the war file to deploy it

-->

<property file="build.properties" />

<property name="app.home" value="." />

<property name="app.name" value="helloapp" />

<property name="javadoc.pkg.top" value="hello" />

<property name="src.home" value="${app.home}/src"/>

<property name="src.home" value="${app.home}/src"/>

<property name="src.home" value="${app.home}/src"/>

<property name="src.home" value="${app.home}/src"/>

<property name="src.home" value="${app.home}/src"/>

<property name="lib.home" value="${app.home}/lib"/>

<property name="classes.home" value="${app.home}/classes"/>

<property name="deploy.home" value="${app.home}/deploy"/>

<property name="doc.home" value="${app.home}/doc"/>

<property name="web.home" value="${app.home}/web"/>

<property name="build.home" value="${app.home}/build"/>

<property name="build.home" value="${app.home}/build"/>

<property name="build.home" value="${app.home}/build"/>

<property name="build.home" value="${app.home}/build"/>

<property name="build.home" value="${app.home}/build"/>

<property name="build.classes" value="${build.home}/WEB-INF/classes"/>

<property name="build.lib" value="${build.home}/WEB-INF/lib"/>

<!-- ========== Compilation Classpath =========-->

<!--

This section creates the classpath for compilation.

-->

<path id="compile.classpath">

<path id="compile.classpath">

<path id="compile.classpath">

<path id="compile.classpath">

<path id="compile.classpath">

<!-- The object files for this application -->

<!-- The object files for this application -->

<!-- The object files for this application -->

<!-- The object files for this application -->

<!-- The object files for this application -->

<pathelement location="${classes.home}"/>

<!-- The lib files for this application -->

<!-- The lib files for this application -->

<!-- The lib files for this application -->

<!-- The lib files for this application -->

<!-- The lib files for this application -->

<fileset dir="${lib.home}">

<include name="*.jar"/>

<include name="*.zip"/>

</fileset>

<!-- All files/jars that Tomcat makes available -->

<fileset dir="${tomcat.home}/common/lib">

<include name="*.jar"/>

</fileset>

<pathelement location="${tomcat.home}/common/classes"/>

</path>

</path>

</path>

</path>

</path>

<!-- ============== Build Targets below here============= -->

<!-- ============== "help" Target ========= -->

<!--

This is the default ant target executed if no target is specified.

This helps avoid users just typing 'ant' and running a

default target that may not do what they are anticipating...

-->

<target name="help" >

<echo message="Please specify a target! [usage: ant <targetname>]" />

<echo message="Here is a list of possible targets: "/>

<echo message=" clean-all.....Delete build dir, all .class and war files"/>

<echo message=" prepare.......Creates directories if required" />

<echo message=" compile.......Compiles source files" />

<echo message=" build.........Build war file from .class and other files"/>

<echo message=" deploy........Copy war file to the webapps directory" />

<echo message=" javadoc.......Generates javadoc for this application" />

</target>

<!-- ================ "clean-all" Target========== -->

<!--

This target should clean up any traces of the application

so that if you run a new build directly after cleaning, all

files will be replaced with what's current in source control

-->

<target name="clean-all" >

<delete dir="${build.home}"/>

<delete dir="${classes.home}"/>

<delete dir="${deploy.home}"/>

<!-- can't delete directory if Tomcat is running -->

<delete dir="${webapps.home}/${app.name}" failonerror="false"/>

<!-- deleting the deployed .war file is fine even if Tomcat is running -->

<!-- deleting the deployed .war file is fine even if Tomcat is running -->

<!-- deleting the deployed .war file is fine even if Tomcat is running -->

<!-- deleting the deployed .war file is fine even if Tomcat is running -->

<!-- deleting the deployed .war file is fine even if Tomcat is running -->

<delete dir="${webapps.home}/${app.name}.war" />

<!-- delete the javadoc -->

<delete dir="${doc.home}"/>

</target>

<!-- =========== "prepare" Target======== -->

<!--

This target is executed prior to any of the later targets

to make sure the directories exist. It only creates them

if they need to be created....

Other, similar, preparation steps can be placed here.

-->

<target name="prepare">

<target name="prepare">

<target name="prepare">

<target name="prepare">

<target name="prepare">

<echo message="Tomcat Home = ${tomcat.home}" />

<echo message="Tomcat Home = ${tomcat.home}" />

<echo message="Tomcat Home = ${tomcat.home}" />

<echo message="Tomcat Home = ${tomcat.home}" />

<echo message="Tomcat Home = ${tomcat.home}" />

<echo message="webapps Home = ${webapps.home}" />

<mkdir dir="${classes.home}"/>

<mkdir dir="${classes.home}"/>

<mkdir dir="${classes.home}"/>

<mkdir dir="${classes.home}"/>

<mkdir dir="${classes.home}"/>

<mkdir dir="${deploy.home}"/>

<mkdir dir="${doc.home}"/>

<mkdir dir="${doc.home}/api"/>

<mkdir dir="${build.home}"/>

<mkdir dir="${build.home}"/>

<mkdir dir="${build.home}"/>

<mkdir dir="${build.home}"/>

<mkdir dir="${build.home}"/>

<mkdir dir="${build.home}/WEB-INF" />

<mkdir dir="${build.home}/WEB-INF/classes" />

<mkdir dir="${build.home}/WEB-INF/lib" />

</target>

<!-- ============= "compile" Target ===========-->

<!--

This only compiles java files that are newer

than their corresponding .class files.

-->

<target name="compile" depends="prepare" >

<javac srcdir="${src.home}" destdir="${classes.home}" debug="yes" >

<classpath refid="compile.classpath"/>

</javac>

</target>

<!--===================="build"Target=====================-->

<!--

This target builds the war file for the application

by first building the directory structure of the

application in ${build.home} and then creating the

war file using the ant <war> task

-->

<target name="build" depends="compile" >

<!-- Copy all the webapp content (jsp's, html, tld's, xml, etc. -->

<!-- Copy all the webapp content (jsp's, html, tld's, xml, etc. -->

<!-- Copy all the webapp content (jsp's, html, tld's, xml, etc. -->

<!-- Copy all the webapp content (jsp's, html, tld's, xml, etc. -->

<!-- Copy all the webapp content (jsp's, html, tld's, xml, etc. -->

<!-- Note that this also copies the META-INF directory -->

<copy todir="${build.home}">

<fileset dir="${web.home}"/>

</copy>

<!-- Now, copy all the Java class files -->

<copy todir="${build.home}/WEB-INF/classes">

<fileset dir="${classes.home}"/>

</copy>

<!-- Now, copy all the properties files, etc that go on the classpath -->

<copy todir="${build.home}/WEB-INF/classes">

<fileset dir="${src.home}">

<include name="**/*.properties" />

<include name="**/*.prop" />

</fileset>

</copy>

<!-- Now, copy all the jar files we need -->

<copy todir="${build.home}/WEB-INF/lib">

第一頁    上一頁    第1頁/共4頁    下一頁    最後頁
第01頁 第02頁 第03頁 第04頁 
 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有