欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

applicationContext.xml配置

程序员文章站 2022-05-25 10:31:50
...

 该配置扫描了service层的实现和事物的处理

    <!-- 启动自动装配的注解  和springMVC-servlet配置文件重复,一处配置就可以 -->
    <context:annotation-config />
    <!-- 启动bean的扫描 -->
    <context:component-scan base-package="org.cslc.platform.extinterface.service.impl" />
    <!--开启@aspectJ切面的bean创建代理-->
    <aop:aspectj-autoproxy />
    
    <!-- 载入其他xml文件(下面这俩个配置根据自己情况而定)-->
    <!--
    <import resource="Spring-Datasource.xml"/>
    -->
    <!-- 载入properties文件 -->
    <!--
    <context:property-placeholder location="classpath:jdbc.properties" />
    -->
    
    <!-- 配置事务管理器 -->
    <bean id="transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!-- 配置事务注解驱动 -->
    <tx:annotation-driven transaction-manager="transactionManager" />