在Webapp项目中使用Tomcat库



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

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

是否有任何方法(配置)我可以使用Tomcat库来运行ant build/testNG类。

提前感谢,

Vivek

<testng>任务中,只需提供tomcat库作为附加的类路径元素。

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

相关内容

  • 没有找到相关文章

最新更新