Hibernate Could not bind factory to JNDI

hibernate.cfg.xml中

<session-factory name="foo">

当设置了session-factory元素的name属性时,hibernate会把session-factory注册到jndi中,因为我们单元测试是脱离web容器的,因此这个时候就报错了,只要把name="foo"去掉,就解决此错误。

相关推荐