1

如何从 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>
4

1 回答 1

3

这个链接应该可以帮助你 http://swik.net/Peter-Thomas/Incremental+Operations/How+to+start+and+stop+Jetty+from+Ant/mut2

基本上你像这样启动码头服务器

<java jar="${jetty.home}/start.jar" fork="true" dir="${jetty.home}">
    <jvmarg value="-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"/>
    <jvmarg value="-Xdebug"/>
 </Java>

希望这可以帮助。

于 2012-09-29T12:26:51.620 回答