我尝试用 ant 启动 JBoss。当我执行这个脚本时:
<target name="start-jboss" >
<exec executable="${jboss.bin.dir}\run.bat" >
<arg line="--configuration=Myserver -b localhost" />
</exec>
</target>
JBoss 在这一步被阻塞:
[exec] 15:52:55,373 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
但是当我运行 run.bat 时它可以工作......当我在 exec 中添加 spawn="true" 时它是一样的。
我认为问题来自日食......
谢谢