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 中有一个 gradle 项目(使用 STS 插件)。我的类路径上有一个我想要的属性文件。该文件在测试期间被读取。在我的项目视图中,我把这个文件放在
\src\test\resources\test.properties
当我跑
gradle test
从命令行读取该文件。
但是当我运行eclipse时它不是。
重申 superEb 在他的评论中所说的话:
src/test/resources必须指定为 Eclipse 的源文件夹,以便在类路径中包含您的属性文件以进行测试。
src/test/resources
您可以包含 Gradle 的 Eclipse 插件以自动为您处理此问题:
apply plugin: 'eclipse'