我有一个 eclipse 的.classpath文件,看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="src" path="test"/>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    <classpathentry kind="output" path="bin"/>
    <classpathentry kind="lib" path="/libraries/jee/servlet-api.jar"/>
    <classpathentry kind="lib" path="/libraries/junit/junit-4.6.jar"/>
    <classpathentry kind="lib" path="/libraries/log4j/log4j-1.2.15.jar"/>
</classpath>

我想将jar的整个目录添加到类路径-我喜欢eclipse(或更准确地说,是我们使用.classpath格式的基于ant的构建过程)来了解驻留在单个目录中的多个jar,而无需直接指定它们。我怎样才能做到这一点?

最佳答案

我不确定eclipse本身能做到这一点。

你可以试试

  • 移动到Maven为您构建系统,然后使用eclipse:eclipse命令将为您生成.classpath文件
  • 在构建后获取ant来修改.classpath。毕竟,这只是xml
  • 10-07 16:23