intellij 和 ResourceBundle
我尝试从 Intellij 运行测试。我测试的方法使用 src/main/resources 中的一些属性文件,但当我将其作为 JUnit 测试运行时,它们似乎被忽略。当我从 eclipse 和 ant 运行它时它可以工作,但不能从 Intellij 运行它。如何使我的 src/main/resources 对 Intellij 中的测试可见?不知道这是否重要,但测试和主文件夹在我的项目视图中被视为单独的模块。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
验证 src/main/resources 是否在 源 或测试源 .com/idea/webhelp/configuring-folders-within-a-content-root.html" rel="noreferrer">项目结构。此类文件夹中的资源将根据
Settings | 自动复制到输出路径(类路径)。编译器|资源模式
。Verify that src/main/resources is set as Sources or as Test Sources in the project structure. Resources from such folders are copied to the output path (classpath) automatically according to
Settings | Compiler | Resource Patterns
.