【错误提示】
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.io.FileNotFoundException: class path resource [cxd/entity/User.hbm.xml] cannot be opened because it does not exist
【解决方法】
把
<property name="mappingLocations">
<list>
<value>classpath:/com/test/bean/user.hbm.xml</value>
</list>
</property>
改成
<property name="mappingLocations">
<list>
<value>classpath*:/com/test/bean/*.hbm.xml</value>
</list>
</property>