zoukankan      html  css  js  c++  java
  • spring配置文件(SSM框架)

    <?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:tx="http://www.springframework.org/schema/tx"
        xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
        xmlns:p="http://www.springframework.org/schema/p"
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">
    
    
        <!-- 配置数据源,记得去掉myBatis-config.xml的数据源相关配置 -->
        <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
            <property name="driverClass" value="com.mysql.jdbc.Driver" />
            <property name="jdbcUrl"
                value="jdbc:mysql://localhost:3306/(数据库)?useUnicode=true&amp;characterEncoding=UTF-8" />
            <property name="user" value="root" />
            <property name="password" value="root" />
        </bean>
        <!-- 配置session工厂 -->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="configLocation" value="classpath:myBatis-config.xml" />
            <!--配置扫描式加载SQL映射文件,记得去掉mybatis-config配置-->
            <property name="mapperLocations" value="classpath:cn/itcast/scm/dao/*.xml"/>
            
        </bean>
    
        <!-- 配置事务管理器,管理数据源事务处理 -->
        <bean id="transactionManager"
            class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource" />
        </bean>
        <!-- 配置事务通知 -->
        <tx:advice id="advice" transaction-manager="transactionManager">
            <tx:attributes>
                <!-- 默认只处理运行时异常,可加rollback-for="Exception/Throwable"等处理所有异常或包括错误 -->
                <tx:method name="insert*" propagation="REQUIRED"
                    rollback-for="Exception" />
                <tx:method name="update*" propagation="REQUIRED"
                    rollback-for="Exception" />
                <tx:method name="delete*" propagation="REQUIRED"
                    rollback-for="Exception" />
                <tx:method name="*" propagation="SUPPORTS" />
            </tx:attributes>
        </tx:advice>
        <!-- 配置切面织入的范围,后边要把事务边界定在service层 -->
        <aop:config>
            <aop:advisor advice-ref="advice"
                pointcut="execution(* cn.itcast.scm.service.impl.*.*(..))" />
        </aop:config>
        <!-- 配置SessionTemplate,已封装了繁琐的数据操作 -->
        <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
            <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory" />
        </bean>
    
        <!-- <context:component-scan base-package="*" /> -->
    
    
        <!-- 自动扫描组件,要把controller去除,他们是在spring-mvc.xml中配置,如果不去除会影响事务管理。 -->
        <context:component-scan base-package="cn.itcast">
            <context:exclude-filter type="annotation"
                expression="org.springframework.stereotype.Controller" />
        </context:component-scan>
    
        <!-- 配置 转换器,对于在basePackage设置的包(包括子包)下的接口类,
        如果接口类的全类名在Mapper.xml文件中和定义过命名空间一致,
         将被转换成spring的BEAN,在调用 
            的地方通过@Autowired方式将可以注入接口实例 -->
    
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="sqlSessionFactory" ref="sqlSessionFactory" />
            <property name="basePackage" value="cn.itcast.scm.dao" />
        </bean>
    
    
    
    
    </beans>
  • 相关阅读:
    (一)研究方法入门
    机器学习入门之认知
    夯实Java:从面向对象说起
    不同子系统采用不同MySQL编码LATIN1和UTF8的兼容
    性能优化 java 24 次阅读 · 读完需要 15 分钟 0
    如何用纯 CSS 创作一个充电 loader 特效
    如何用纯 CSS 创作一个 3D 文字跑马灯特效
    如何用纯 CSS 绘制一颗闪闪发光的璀璨钻石
    如何用 CSS 创作一个立体滑动 toggle 交互控件
    如何用纯 CSS 创作一个金属光泽 3D 按钮特效
  • 原文地址:https://www.cnblogs.com/smallbrokenchildwen/p/7071924.html
Copyright © 2011-2022 走看看