spring与hibernate4整合读取hbm.xml文件报错 80
搭建一个maven的struts2+hibernate4+spring3的项目我已经通过annotation的配置,都没有问题,可以存入数据,但是换成hbm.xml就出现...
搭建一个maven的struts2+hibernate4+spring3的项目
我已经通过annotation的配置,都没有问题,可以存入数据,但是换成hbm.xml就出现下面的错误
(1) 启动的时候就出错
java.io.FileNotFoundException: class path resource [cn/buaa/hbm] cannot be resolved to URL because it does not exist
配置如下:上面的packagesToScan是可以的,下面mappingDirectoryLocations就提示出问题了
<!-- 配置hibernate session工厂 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
</props>
</property>
<!-- 自动扫描注解方式配置的hibernate类文件 -->
<!--
<property name="packagesToScan">
<list>
<value>cn.buaa.model</value>
</list>
</property>
-->
<property name="mappingDirectoryLocations">
<list>
<value>classpath:cn/buaa/hbm</value>
</list>
</property>
</bean>
目录如下:
(2)假如这样配置,启动时候正常,但是添加数据的时候就会报错
<property name="mappingDirectoryLocations">
<list>
<value>classpath:cn/buaa/hbm/*</value>
</list>
</property>
报的错误:
请大家指点一下是哪里的错误,困扰一会,多谢大家了
80分奉上,不够还可以加悬赏,只要能解决就行 展开
我已经通过annotation的配置,都没有问题,可以存入数据,但是换成hbm.xml就出现下面的错误
(1) 启动的时候就出错
java.io.FileNotFoundException: class path resource [cn/buaa/hbm] cannot be resolved to URL because it does not exist
配置如下:上面的packagesToScan是可以的,下面mappingDirectoryLocations就提示出问题了
<!-- 配置hibernate session工厂 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
</props>
</property>
<!-- 自动扫描注解方式配置的hibernate类文件 -->
<!--
<property name="packagesToScan">
<list>
<value>cn.buaa.model</value>
</list>
</property>
-->
<property name="mappingDirectoryLocations">
<list>
<value>classpath:cn/buaa/hbm</value>
</list>
</property>
</bean>
目录如下:
(2)假如这样配置,启动时候正常,但是添加数据的时候就会报错
<property name="mappingDirectoryLocations">
<list>
<value>classpath:cn/buaa/hbm/*</value>
</list>
</property>
报的错误:
请大家指点一下是哪里的错误,困扰一会,多谢大家了
80分奉上,不够还可以加悬赏,只要能解决就行 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询