服务器

位置:IT落伍者 >> 服务器 >> 浏览文章

Ant+Cactus+Tomcat5.5容器内单元测试[1]


发布日期:2023年07月14日
 
Ant+Cactus+Tomcat5.5容器内单元测试[1]

下载并解压缩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>

[] [] [] []

               

上一篇:JBoss Web和Tomcat的区别[3]

下一篇:Ant+Cactus+Tomcat5.5容器内单元测试[4]