(一) 在其中的
"Spring DAO" 无法选中的情况下,按上图配置,然后在完成后产生的一些文件中,只留下
POJO,
DAO,
XML三个文件.
如:
<= 转化为=>
(二) 修改其中的
DAO文件.
如
"public class FourmDAO extends
BaseHibernateDAO {..." <=转化为=> "public class FourmDAO extends
HibernateDaoSupport {..."
(三) Spring 的 xml文件中
applicationContext.xml 添加如下代码
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>item/common/hibernate/picture.hbm.xml</value>
<value>item/common/hibernate/fourm/Fourm.hbm.xml</value>
<value>item/common/hibernate/tem/Fourm.hbm.xml</value>
</list>
</property></bean>
<bean id="fourmDAO" class="item.common.hibernate.tem.FourmDAO">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
posted on 2008-08-21 12:43
紫蝶∏飛揚↗ 阅读(549)
评论(0) 编辑 收藏 所属分类:
Spring