美文网首页
整合spring4.0和hibernate3.0时出现的bug

整合spring4.0和hibernate3.0时出现的bug

作者: Mr_Editor | 来源:发表于2017-09-14 22:03 被阅读0次
  • 惭愧啊 说是bug其实是由自己的粗心造成的,折腾了一下午,掩面而泣

spring 整合hibernate有两种方式

    1. 有hibernate.cfg.xml
    1. 无hibernate.cfg.xml

1 有hibernate.cfg.xml

  • 1.1 创建表
create table t_user(
   id  int primary key auto_increment,
   username varchar(50),
 password varchar(32),
  age int 
);
  • 1.2 PO类
  • 代码结构
代码结构
package: com.itheima.domain
                 User.java
                 User.hbm.xml
  • java bean
public class User {
    private Integer id;
    private String username;
    private String password;
    private Integer age;
...........省略setter和getter
}

  • 1.3 映射文件(很重要)!!!
    一定要注意细节,在同时配置多个po 类时, 在拷贝的过程中非常容易出错(一对多或者多对一的引用时容易忘记修改包名)!!!
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<!--注意name 属性, 拷贝的过程中容易忘记修改-->
    <class name="com.itheima.domain.User" table="t_user">
        <id name="id">
            <generator class="native"></generator>
        </id>
        <property name="username"></property>
        <property name="password"></property>
        <property name="age"></property>
    </class>

</hibernate-mapping>
  • 1.4 hibernate.cfg.xml
<session-factory>
<!--基本四项-->
      <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
      <property name="hibernate.connection.url">jdbc:mysql:///demoDB</property>
 <property name="hibernate.connection.username">root</property>
 <property name="hibernate.connection.password">123</property>
        <!-- 2 配置方言 -->
        <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
        
        <!-- 3 sql语句 -->
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.format_sql">true</property>
        
        <!-- 4 自动生成表(一般没用) -->
        <property name="hibernate.hbm2ddl.auto">update</property>
        
        <!-- 5本地线程绑定 -->
        <property name="hibernate.current_session_context_class">thread</property>
        
        <!-- 导入映射文件 -->
        <mapping resource="com/itheima/domain/User.hbm.xml"/>
</session-factory>
  • 1.5 dao和service
public class UserDaoImpl implements UserDao {
    //使用hibernateTemplate操作数据库
    //需要spring注入模板
    private HibernateTemplate hibernateTemplate;
    public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
        this.hibernateTemplate = hibernateTemplate;
    }

    @Override
    public void save(User user) {
        this.hibernateTemplate.save(user);
    }

}

public class UserServiceImpl implements UserService {

    private UserDao userDao;
    public void setUserDao(UserDao userDao) {
        this.userDao = userDao;
    }
    @Override
    public void register(User user) {
        userDao.save(user);
    }

}

  • 1.6 applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/tx 
                           http://www.springframework.org/schema/tx/spring-tx.xsd
                           http://www.springframework.org/schema/aop 
                           http://www.springframework.org/schema/aop/spring-aop.xsd
                           http://www.springframework.org/schema/context 
                           http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 1 加载hibenrate.cfg.xml 获得SessionFactory 
        * configLocation确定配置文件位置
    -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
    </bean>


    
    <!-- 2创建模板 
        * 底层使用session,session 有sessionFactory获得
    -->
    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
<!-- 3 dao -->
    <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
        <property name="hibernateTemplate" ref="hibernateTemplate"></property>
    </bean>
    
    <!-- 4 service -->
    <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
        <property name="userDao" ref="userDao"></property>
    </bean>



5.2.6.4 事务管理
<!-- 5 事务管理 -->
    <!-- 5.1 事务管理器 :HibernateTransactionManager -->
    <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager" >
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    <!-- 5.2 事务详情 ,给ABC进行具体事务设置 -->
    <tx:advice id="txAdvice" transaction-manager="txManager">
        <tx:attributes>
            <tx:method name="register"/>
        </tx:attributes>
    </tx:advice>
    <!-- 5.3 AOP编程,ABCD 筛选 ABC  -->
    <aop:config>
        <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.itheima.service..*.*(..))"/>
    </aop:config>



2 没有hibernte.cfg.xml

  • 不使用hibernate.cfg.xml 配置文件需要注意,在使用.cfg.xml文件时, dao层使用hibernateTmeplate模板操作数据库,不使用cfg.xml时,dao层继承hibernateDaoSupport可以通过this.getHibernateTemplate()
  • 删除hibernate.cfg.xml文件,但需要保存文件内容,将其配置spring中
  • 修改dao层,继承HibernateDaoSupport
  • 2.1 需改spring ,配置sessionFactory
<!-- 1.1加载properties文件 -->
    <!-- 1.2 配置数据源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql:///ee19_spring_day03"></property>
        <property name="user" value="root"></property>
        <property name="password" value="1234"></property>
    </bean>
    
    <!-- 1.3配置 LocalSessionFactoryBean,获得SessionFactory 
        * configLocation确定配置文件位置
            <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
        1)dataSource 数据源
        2)hibernateProperties hibernate其他配置项
        3) 导入映射文件
            mappingLocations ,确定映射文件位置,需要“classpath:” ,支持通配符 【】
                <property name="mappingLocations" value="classpath:com/itheima/domain/User.hbm.xml"></property>
                <property name="mappingLocations" value="classpath:com/itheima/domain/*.hbm.xml"></property>
            mappingResources ,加载执行映射文件,从src下开始 。不支持通配符*
                <property name="mappingResources" value="com/itheima/domain/User.hbm.xml"></property>
            mappingDirectoryLocations ,加载指定目录下的,所有配置文件
                <property name="mappingDirectoryLocations" value="classpath:com/itheima/domain/"></property>
            mappingJarLocations , 从jar包中获得映射文件
    -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <prop key="hibernate.current_session_context_class">thread</prop>
            </props>
        </property>
        <property name="mappingLocations" value="classpath:com/itheima/domain/*.hbm.xml"></property>
    </bean>


  • 2.2 修改dao使用HibernateDaoSupport
  • 继承HibernateDaoSupport
// 底层需要SessionFactory,自动创建HibernateTemplate模板
public class UserDaoImpl extends HibernateDaoSupport implements UserDao {

    @Override
    public void save(User user) {
        this.getHibernateTemplate().save(user);
    }

}

  • spring 删除模板, 给dao注入sessionFactory
<!-- 3 dao -->
    <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

Attention please : 在配置多个po类的时候, 习惯配置好一个ClassName.hbm.xml后通过拷贝配置其他的PO类, 在这个过程中一定要注意<class name="">的name属性, 一定要修改!!!!!!

相关文章

网友评论

      本文标题:整合spring4.0和hibernate3.0时出现的bug

      本文链接:https://www.haomeiwen.com/subject/gwhjsxtx.html