gpt4 book ai didi

linux - Ant Tomcat : Failed to create task or type "list"

转载 作者:太空宇宙 更新时间:2023-11-04 10:48:59 25 4
gpt4 key购买 nike

我正在使用 Spring official docs了解使用 Ant 在 Linux 上设置 Spring 基本应用程序和环境。

软件和系统配置:

  • 操作系统:Linux/Ubuntu
  • JRE:1.8.0_51-b16
  • Ant 版本:1.9.3
  • IDE:Luna 服务版本 1 (4.4.1)

项目目录结构:

enter image description here

一切顺利,直到 结束 Section 1.3 在这里我可以启动 tomcat 服务器并执行 antant deploy 成功,我得到如下所需的输出:

enter image description here

enter image description here

但是当我尝试执行 ant list - 构建失败。

Buildfile: /home/sandeep/MyDocs/workspace/springapp/build.xmllist:BUILD FAILED/home/sandeep/MyDocs/workspace/springapp/build.xml:113: Problem: failed to create task or type listCause: The name is undefined.Action: Check the spelling.Action: Check that any custom tasks/types have been declared.Action: Check that any / declarations have taken place.

Here is the list target in my build.xml:

<target name="list" description="List Tomcat applications">
<list url="${tomcat.manager.url}"
username="${tomcat.manager.username}"
password="${tomcat.manager.password}"/>
</target>

我在这里做错了什么?这是我的 entire build.xml 的链接.

最佳答案

在您链接到的文章中,它展示了如何添加 <list>任务:

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

将以上行添加到您的 build.xml .

关于linux - Ant Tomcat : Failed to create task or type "list",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31843405/

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