一下載並解壓縮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>
[] [] [] []
From:http://tw.wingwit.com/Article/program/Java/ky/201311/29282.html