在Webapp项目中使用Tomcat库

发布于 2024-11-30 09:41:00 字数 233 浏览 0 评论 0原文

我有一个使用 Tomcat 库的 Web 应用程序。我还没有将 Tomcat 库中的 jar 复制到 web-inf/lib 目录中。

现在,当我运行 ant build / testNG 类时,它会抛出错误,因为相关的 jar 不存在于 web-inf/lib 目录下。

有什么方法(配置)可以使用 Tomcat 库来运行 ant build / testNG 类。

提前致谢,

维韦克

I have a web application that uses the Tomcat library. I have not copied the jars from the Tomcat library into the web-inf/lib directory.

Now when I run an ant build / testNG class, it throws an error since the concerned jars are not present under the web-inf/lib directory.

Is there any way (configuration) that I can use the Tomcat library for the running the ant build / testNG classes.

Thanks in advance,

Vivek

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一直都在从未离去 2024-12-07 09:41:00

任务中,只需提供 tomcat 库< a href="http://ant.apache.org/manual/using.html#path" rel="nofollow">作为附加类路径元素。

<TestNG>
    <classpath>
        <pathelement path="${classpath}"/>
        <pathelement location="path/to/tomcat/lib.jar"/>
    </classpath>
</TestNG>

In the <testng> task, just provide the tomcat libraries as additional classpath elements.

<TestNG>
    <classpath>
        <pathelement path="${classpath}"/>
        <pathelement location="path/to/tomcat/lib.jar"/>
    </classpath>
</TestNG>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文