Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我创建了一个测试类,我无法从 eclipse 中运行它,直到我首先在命令行上通过 maven 运行它。我的项目构建路径输出文件夹指向project/target/classes. 并在 Eclipse 中检查自动构建。
project/target/classes
任何人都知道为什么eclipse不自动创建类?
以下是项目的布局和构建路径的外观。
布局
构建路径
除了 Marcel 所说的,遇到同样问题的人应该在 Eclipse 中寻找项目之间的依赖关系。
我正在使用项目 A,它依赖于项目 B。项目 A 已构建并正常运行,除了本文中提到的问题(运行 JUnit 类测试)。挖了一会,发现B项目出现了构建错误(一个源文件夹丢失了,谁知道原因)并且Eclipse没有构建B项目,导致A项目出错。
一旦我修复了项目 B 构建错误,JUnit 类的问题就解决了。