spring的一些配置

来源:互联网 发布:熊猫tv抢佛跳墙软件 编辑:程序博客网 时间:2024/05/21 10:19
<?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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    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/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd">
    
    <!-- 扫描注解 -->
    <context:component-scan base-package="com"></context:component-scan>
    <!-- aop注解支持 -->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
    <!-- 开启事务注解驱动 -->
    <tx:annotation-driven transaction-manager="tx"/>
    
    <bean id="transDaoImpl" class="com.dao.impl.TransDaoImpl">
        <property name="accountDaoImpl" ref="accountDaoImpl"></property>
    </bean>
    <bean id="accountDaoImpl" class="com.dao.impl.AccountDaoImpl">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!-- 配置数据源 -->
    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql:///lykj0904"></property>
        <property name="username" value="root"></property>
        <property name="password" value="root"></property>
    </bean>

    <!-- 配置事务管理器 -->
    <bean id="tx"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
</beans>

原创粉丝点击