gpt4 book ai didi

java - 使用 ANT 脚本启动和停止 tomcat?

转载 作者:行者123 更新时间:2023-11-28 22:08:31 26 4
gpt4 key购买 nike

我有下面的 ANT 脚本来启动/停止 tomcat:

   <project name="sample">
<property name="name" value="sample"/>
<path id="catalina-ant-classpath">
<fileset dir="D:\apache-tomcat-7.0.47-windows-x64\apache-tomcat-7.0.47\lib">
<include name="catalina-ant.jar"/>
</fileset>
</path>
<taskdef name="start" classname="org.apache.catalina.ant.StartTask">
<classpath refid="catalina-ant-classpath"/>
</taskdef>

<taskdef name="stop" classname="org.apache.catalina.ant.StopTask">
<classpath refid="catalina-ant-classpath"/>
</taskdef>

<target name="start" description="Start Tomcat application">
<start url="http://localhost:8080/manager"
username="uname"
password="pwd"/>
</target>
<target name="stop" description="Stop Tomcat application">
<stop url="http://localhost:8080/manager"
username="uname"
password="pwd"/>
</target>
</project>

当我运行上面的脚本时,它会抛出以下错误:

D:\apache-ant-1.9.3-bin\apache-ant-1.9.3\bin>ant build.xml 停止构建文件:D:\apache-ant-1.9.3-bin\apache-ant-1.9.3\bin\build.xml构建失败项目“sample”中不存在目标“build.xml”。

上面的脚本有没有错误?

谢谢!

最佳答案

您的 build.xml 缺少根元素 <project> .请参阅 ant 文档。

删除 name属性是可选的。

关于java - 使用 ANT 脚本启动和停止 tomcat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21749957/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com