简体   繁体   中英

Hibernate LocalSessionFactoryBean, setMappingDirectoryLocations doesn't seem to be working

I'm using Spring 5 and Hibernate 5 together, and I'm configuring Hibernate mapping files in: org.springframework.orm.hibernate5.LocalSessionFactoryBean like this in my applicationContext.xml file:

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
    <property name="mappingDirectoryLocations" value="com/myorg/division/myapp/model" />

But I'm getting this error run-time error when I deploy the WAR file to my local Weblogic server:

Deployment Message : weblogic.application.ModuleException: java.io.FileNotFoundException: ServletContext resource [/com/
myorg/division/myapp/model] cannot be resolved to absolute file path - web application archive not expanded?

这应该做的工作

<property name="packagesToScan" value="com.myorg.division.myapp.model" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM