首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

ssh调整(便于以后查询)

2012-08-25 
ssh整合(便于以后查询)从别人整理的地方找过来的 ,在此道谢。一、Spring+Hibernate整合: Spring整合Hibernat

ssh整合(便于以后查询)
从别人整理的地方找过来的 ,在此道谢。
一、Spring+Hibernate整合:
Spring整合Hibernate,是做了一个很大的调整的,因为spring可以把管理Hibernate的工作都做了,以前的hibernate.cfg.xml文件都去掉了,而将这些内容都交给了spring来管理了。
1、 applicationContext.xml文件中应该配置如下内容:
Xml代码 
//配置数据连接类 
<bean id="dataSource" 
        value="jdbc:mysql://localhost:3306/test"></property> 
        <property name="username" value="root"></property> 
</bean> 
//配置session工厂类 
<bean id="sessionFactory" 
    /> 
        </property> 
        <property name="hibernateProperties"> 
            <props> 
                <prop key="hibernate.dialect"> 
                    org.hibernate.dialect.MySQLDialect 
                </prop> 
                <prop key="hibernate.show_sql">true</prop> 
            </props> 
        </property> 
        <property name="mappingResources"> 
         <value>com/hejianjiao/vo/Person.hbm.xml</value> 
        </property> 
</bean> 

2、可以使用spring中的HibernateDAOSupport与HibernateTemplate类来进行数据持久化操作:
A、HibernateDAOSupport类中定义了对session、sessionFactory的操作方法与getHibernateTemplate方法来获得一个HibernateTemplate实例;
B、HibernateTemplate类中定义了对数据持久化的各种封装的方法,我们可以用它来对数据进行操作。
因此在使用时,我们可以继承HibernateDAOSupport类,然后实例化HibernateTemplate类来进行数据持久化。

热点排行