如何从 ant 以调试模式启动嵌入式码头服务器?这是我的 build.xml 文件:
<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>