ConfigurationException:无法在项目根文件夹中找到cfg.xml资源[hibernate.cfg.xml]

我在项目根文件夹中有hibernate.cfg.xml文件.

如果我运行的应用程序包含:

SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();

它使用以下消息在configure()方法中崩溃:

Could not locate cfg.xml resource [hibernate.cfg.xml]

输出

Jun 17,2016 12:04:59 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {5.2.0.Final}
Jun 17,2016 12:04:59 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000205: Loaded properties from resource hibernate.properties: {hibernate.connection.driver_class=org.h2.Driver,hibernate.service.allow_crawling=false,hibernate.max_fetch_depth=5,hibernate.dialect=org.hibernate.dialect.H2Dialect,hibernate.format_sql=true,hibernate.generate_statistics=true,hibernate.connection.username=sa,hibernate.connection.url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;LOCK_TIMEOUT=10000,hibernate.bytecode.use_reflection_optimizer=false,hibernate.connection.password=****,hibernate.connection.pool_size=5}
Jun 17,2016 12:04:59 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
org.hibernate.internal.util.config.ConfigurationException: Could not locate cfg.xml resource [hibernate.cfg.xml]
    at org.hibernate.boot.cfgxml.internal.ConfigLoader.loadConfigXmlResource(ConfigLoader.java:53)
    at org.hibernate.boot.registry.StandardServiceRegistryBuilder.configure(StandardServiceRegistryBuilder.java:163)
    at org.hibernate.cfg.Configuration.configure(Configuration.java:258)
    at org.hibernate.cfg.Configuration.configure(Configuration.java:244)
    at o.k.j.HibernateTest.main(HibernateTest.java:22)

解决方法

如果您使用Maven构建项目,请将hibernate.cfg.xml文件放在src / main / resources下

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...