1
如何在螞蟻的調試模式下啓動嵌入式jetty服務器?這裏是我的build.xml文件:如何在螞蟻的調試模式下啓動jetty
<target name="jettyRun">
<delete dir="jetty-temp" quiet="true" />
<jetty tempDirectory="jetty-temp">
<webApp name="${application.name}" warfile="${fileToDeploy}" contextpath="/${application.name}"/>
<webApp name="${application.name}resources" warfile="${resourcesToDeploy}" contextpath="/${application.name}resources"/>
</jetty>
</target>