一下载并解压缩cactus
将cactus的lib目录下的cactusantjar复制到ant的lib目录
二配置cactus
cactus的配置很简单新建一个cactusproperties文件并把它放在ant脚本中的cactus任务的classpath下文件中包括如下内容
cactussysproperties=cactuscontextURL
#cactussampleservletcactified就是你的测试应用所在路径是端口号
cactuscontextURL = http://localhost:/cactussampleservletcactified
cactusservletRedirectorName = ServletRedirector
cactusjspRedirectorName = JspRedirector
cactusfilterRedirectorName = FilterRedirector
具体的做法结合ant脚本再进一步解释
三运行ant脚本
ant脚本主要执行以下任务
设定classpath
<path id=projectclasspath>
<fileset dir=${libdir}>
<include name=*jar/>
</fileset>
<! cactusproperties文件就需要放在libdir所对应的路径中 >
<pathelement location=${libdir}/>
<pathelement location=${tomcathome}/common/lib/jspapijar/>
<pathelement location=${tomcathome}/common/lib/servletapijar/>
</path>
[] [] [] []