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.
我正在使用休眠并将 xml 映射文件放在 src/hib 目录中。但是当调试应用程序eclipse运行目录是bin。是否可以让 Eclipse 也将映射的 .xml 文件复制到 bin/hib 目录?谢谢。
Eclipse 应该自动完成。问题是,默认情况下,Hibernate 从默认包加载其配置文件,而不是从hib包加载。
hib
请注意,它不会通过从当前目录打开文件来加载它。它将它作为类路径中的资源加载。即使配置文件以 jar 文件结束,Hibernate 也能够加载它,前提是它位于包树中的预期位置(即树的根部)。