spring整合hibernate(不带hibernate配置文件)

来源:互联网 发布:淘宝上买枪会判刑么 编辑:程序博客网 时间:2024/05/29 09:47

spring配置:

<?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:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd">
    
    <!-- 配置c3p0连接池  -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <!-- set方法住人 -->
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql:///spring_day04"></property>
        <property name="user" value="root"></property>
        <property name="password" value="root"></property>
    </bean>
    
    <!-- 引入hibernate核心配置文件
        加载hibernate核心配置文件,创建sessionFactory对象
        这个过程,在spring封装对象,只需要配置实现
    -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <!-- 注入数据库部分 -->
        <property name="dataSource" ref="dataSource"></property>
        <!-- 把hibernate核心配置文件内容配置到spring配置文件中 -->
        <!--  hibernate基本配置 -->
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
            </props>
        </property>
        
        <!-- 引入映射文件 必须 -->
        <property name="mappingResources">
            <list>
                <value>cn/itcast/entity/User.hbm.xml</value>
                <!-- <value>....</value> -->
            </list>
        </property>
    </bean>
    
    <!-- 配置hibernate事务 -->
    <!-- 1 配置事务管理器 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    
    <!-- 2 开启事务注解 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>
    
    <!-- 配置action -->
    <bean id="userAction" class="cn.itcast.action.UserAction" scope="prototype">
        <property name="userService" ref="userService"></property>
    </bean>
    <!-- 创建service和dao对象 -->
    <bean id="userService" class="cn.itcast.service.UserService">
        <property name="userDao" ref="userDao"></property>
    </bean>
    <bean id="userDao" class="cn.itcast.dao.UserDao">
        <!-- 注入HibernateTemplate -->
        <!-- <property name="hibernateTemplate" ref="hibernateTemplate"></property> -->
        <!-- 直接在dao里面注入sessionFactory -->
        <property name="sessionFactory" ref="sessionFactory"></property>
        
    </bean>
    <!-- 创建HibernateTemplate对象 -->
    <!-- <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean> -->
</beans>

原创粉丝点击