applicationContext配置

   <!-- 1.启动spring注解 -->
    <context:annotation-config></context:annotation-config>
    
    <!-- 2.扫描spring注解 -->
    <context:component-scan base-package="com.boolib">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        <context:exclude-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/>
    </context:component-scan>
    
    <!-- 3.扫描log4j配置 -->
    <context:property-placeholder location="classpath:log4j.properties"/>
    
    <!-- 4.加载数据源 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${driver}"></property>
        <property name="url" value="${url}"></property>
        <property name="username" value="${uname}"></property>
        <property name="password" value="${upass}"></property>
    </bean>
    
    <!-- 5.创建SqlSessionFactory[配置数据源/读取核心配置文件/读取映射文件]-->
    <bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="configLocation" value="classpath:mybatis-config.xml"></property>
        <property name="mapperLocations" value="classpath:com/boolib/**/model/*Mapper.xml"></property>
    </bean>
    
    <!-- 6.接口代理模式:根据指定接口的位置去自动实例化对象 -->
    <bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.boolib.**.dao"></property>
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactoryBean"></property>
    </bean>
    
    <!-- 7.启动事务注解 -->
    <tx:annotation-driven proxy-target-class="true"/>
    
    <!-- 8.配置事务bean数据源 -->
    <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 9.配置事务管理 -->
    <tx:advice id="serviceAdvice" transaction-manager="transactionManager">
        <tx:attributes>
                <tx:method name="get*" read-only="true"/>
                <tx:method name="load*" read-only="true"/>
                <tx:method name="query*" read-only="true"/>
                <tx:method name="list*" read-only="true"/>
                <tx:method name="find*" read-only="true"/>
                <tx:method name="sel*" read-only="true"/>
                <tx:method name="login*" read-only="true"/>
                <tx:method name="check*" read-only="true"/>
                <tx:method name="valid*" read-only="true"/>
                <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>
    
    
    
    <!-- 10.启动AOP注解 -->
    <aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>
    
    <!-- 11.配置AOP监测表达式-->
    <aop:config proxy-target-class="true">
        <aop:pointcut expression="execution(* com.boolib..service.*Service.*(..))" id="aopPointCut"/>
        <aop:advisor advice-ref="serviceAdvice" pointcut-ref="aopPointCut"/>
    </aop:config>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

nier6088

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值