程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> spring applicationContext.xml和hibernate.cfg.xml設置,hibernate.cfg.xml

spring applicationContext.xml和hibernate.cfg.xml設置,hibernate.cfg.xml

編輯:JAVA綜合教程

spring applicationContext.xml和hibernate.cfg.xml設置,hibernate.cfg.xml


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: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">

    <context:property-placeholder location="classpath:database.properties"></context:property-placeholder>

    <!--
    使用Javabean讀取資源文件
    <bean id="placeholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location">
            <value>classpath:system.properties</value>
        </property>
        <property name="fileEncoding" value="UTF-8"/>
    </bean>-->
    

    <!-- 指定IOC 自動掃描的包 -->
    <context:component-scan base-package="com.lingdong"></context:component-scan>

    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="messages"/>
        <property name="defaultEncoding" value="UTF-8"/>
        <property name="useCodeAsDefaultMessage" value="true"/>
    </bean>

    <!-- 配置數據源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass">
            <value>${jdbc.driverClass}</value>
        </property>
        <property name="jdbcUrl">
            <value>${jdbc.url}</value>
        </property>
        <property name="user">
            <value>${jdbc.userName}</value>
        </property>
        <property name="password">
            <value>${jdbc.password}</value>
        </property>
        <property name="initialPoolSize">
            <value>${jdbc.initialPoolSize}</value>
        </property>
        <property name="maxPoolSize">
            <value>${jdbc.maxPoolSize}</value>
        </property>
    </bean>

    <!-- 配置 Hibernate的 sessionFactory -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="configLocation">
            <value>${hibernate.cfg.xml}</value>
        </property>
        <property name="mappingLocations">
            <value>${hibernate.hbm.xml}</value>
        </property>
    </bean>
    <!--<bean id="loggingAspect" class="com.lingdong.aop.LoggingAspect"/>-->
    <!--Spring Aop 啟用自動代理注解 -->
    <!--<aop:aspectj-autoproxy proxy-target-class="true"/>-->
    <!--配置Aop 切入點,切面-->
    <!--<aop:config>
        <aop:pointcut id="pointcut" expression="execution(* com.lingdong.aop.*.*(..))"></aop:pointcut>
        <aop:aspect ref="loggingAspect">
            <aop:before method="before" pointcut-ref="pointcut"></aop:before>
        </aop:aspect>
    </aop:config>-->

    <!-- 配置 Spring 聲明式事務 -->
    <!-- 配置事務管理器 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    <!--啟用事務注解 驅動,使用注解配置事務時使用-->
    <!--<tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>-->

    <!-- 配置事務屬性 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="add*" propagation="REQUIRED"/>
            <tx:method name="select*" read-only="true"/>
            <tx:method name="update*" propagation="REQUIRED"/>
            <tx:method name="delete*" propagation="REQUIRED"/>
            <tx:method name="*"/>
        </tx:attributes>
    </tx:advice>

    <!-- 配置事務切入點,與事務屬性關聯  -->
    <aop:config>
        <aop:pointcut expression="execution(* com.lingdong.service.*.*(..))" id="pointcut"></aop:pointcut>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"></aop:advisor>
    </aop:config>


</beans>

 

hibernate.cfg.xml配置

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
        <property name="hibernate.hbm2ddl.auto">update</property>
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.format_sql">true</property>
    </session-factory>
</hibernate-configuration>

 

1 2 3 4 5 6 7 8 9 10 11 12 <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC         "-//Hibernate/Hibernate Configuration DTD//EN"         "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration>     <session-factory>         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>         <property name="hibernate.hbm2ddl.auto">update</property>         <property name="hibernate.show_sql">true</property>         <property name="hibernate.format_sql">true</property>     </session-factory> </hibernate-configuration>

 

本文出自 “Java技術博客” 博客,請務必保留此出處http://lingdong.blog.51cto.com/3572216/1889446

    一鍵收藏,隨時查看,分享好友! 0人 了這篇文章 類別:spring┆閱讀(2)┆評論(0) ┆ 編輯 ┆ 刪除 ┆ 返回博主首頁┆返回博客首頁 上一篇 Git分布式版本控制教程

相關文章

  • SpringMVC 攔截器理解
  • Spring 3.1 事務配置
  • Spring4.x新特性
  • spring中加載ApplicationContext.xml文件的方式

職位推薦

  • 研發工具或環境開發
  • 高級Java工程師
  • 招聘Siebel開發兼職講師
  • 服務器開發工程師
  • Java開發

文章評論

    返回頂部

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved