如何在 IntelliJ IDEA 中加载 xml 文件
IntelliJ 在源文件夹下找不到 xml 文件。
示例)src/net/saltfactory/domain/PersonSqlMap.xml
但是,如果我复制它并粘贴到文件夹中,IntelliJ 会找到 xml 文件
示例)out/net/saltfactory/domain/PersonSqlMap.xml
我希望不要复制并粘贴XML 文件到 out 文件夹
帮助我
IntelliJ not find xml file under sources folder.
example) src/net/saltfactory/domain/PersonSqlMap.xml
but, If I copy it and past out folder, IntelliJ find xml file
example) out/net/saltfactory/domain/PersonSqlMap.xml
I hope that don't copy and past XML files to out folder
help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,确保在“模块设置”中将
src
标记为模块的源文件夹 -->模块 --> -->来源。其次,确保可识别资源列表中包含 XML 文件 (
?*.xml
)设置-->项目-->编译器-->资源设置。
这就是 IntelliJ 知道除了类文件之外还要将哪些内容复制到类路径(输出文件夹)中的方式。如果这没有帮助,请提供更多信息。
First, make sure
src
is marked as a source folder for your module in Module Settings --> Modules --> --> Sources.Second, make sure the list of recognized resources includes one for XML files (
?*.xml
) inSettings --> Project --> Compiler --> Resource Settings.
This is how IntelliJ knows what to copy into your classpath (output folder) in addition to class files. If this doesn't help, please provide more information.