zoukankan      html  css  js  c++  java
  • ssh(Spring+Spring mvc+hibernate)——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:p="http://www.springframework.org/schema/p"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.1.xsd
        " default-autowire="byName"   default-lazy-init="true">
    
        <!-- 引用hibernate的数据源 -->
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
            <property name="configLocation"
                value="classpath:hibernate.cfg.xml">
            </property>
        </bean>
        <!-- 自动扫描注解的bean -->
        <context:component-scan base-package="org.service,org.dao,org.dao.impl,org.service.impl,org.action"/>
        <!-- 配置事务 -->
            <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
                <property name="sessionFactory" ref="sessionFactory"></property>
            </bean>
            <!-- 增强 -->
            <tx:advice id="txAdvice" transaction-manager="txManager">
                <tx:attributes>
                    <tx:method name="add*" propagation="REQUIRED"/>
                    <tx:method name="save*" propagation="REQUIRED"/>
                    <tx:method name="update*" propagation="REQUIRED"/>
                    <tx:method name="del*" propagation="REQUIRED"/>
                    <tx:method name="get*" read-only="true"/>
                    <tx:method name="find*" read-only="true"/>
                    <tx:method name="query*" read-only="true"/>
                    <tx:method name="*"/>
                </tx:attributes>    
            </tx:advice>
            <aop:config>
                <aop:pointcut id="mycut" expression="execution(* org.service..*.*(..))" />
                <aop:advisor advice-ref="txAdvice" pointcut-ref="mycut"/>
            </aop:config>
        </beans>
  • 相关阅读:
    [HAOI2008] 硬币购物
    [HNOI2002] Kathy 函数
    [SCOI2009] windy数
    圆方树总结
    ABOUT ME && 友链
    逝念偶拾
    文化课日常
    记一些欢愉
    浅谈
    洛谷 4823 [TJOI2013]拯救小矮人
  • 原文地址:https://www.cnblogs.com/a1111/p/12816096.html
Copyright © 2011-2022 走看看