首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate 与spring 集成,没法获取数据

2012-10-09 
hibernate 与spring 集成,无法获取数据。1. applicationContext.xml 在文件没有配置 对应的xml映射文件,查

hibernate 与spring 集成,无法获取数据。

1. applicationContext.xml 在文件没有配置 对应的xml映射文件,查询数据的时候,也不报错,但是就是查不到数据。

?

<bean id="sessionFactory"
??/>
??</property>
??<property name="hibernateProperties">
???<props>
????<prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop>
????<prop key="hibernate.jdbc.bach_size">20</prop>
????<prop key="hibernate.cache.use_query_cache">false</prop>
????<prop key="hibernate.show_sql">false</prop>
???</props>
??</property>
??<property name="mappingResources">
???<list>
????<value>com/test/networkmanage/db/maping.hbm.xml</value>
???</list>
??</property>
?</bean>

热点排行