1. 程式人生 > >Spring使用事務增加的註解實現方

Spring使用事務增加的註解實現方

chang 實例 pre image work 實現 文件 掃描 drive

以下是我的文件結構

技術分享

步驟1:配置數據源

   <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/user"/>
        <property name="user" value="root"/>
        <property name="password" value="admin"/>
    </bean>

  步驟二,配置Spring jdbc模板

<bean class="org.springframework.jdbc.core.JdbcTemplate" id="jdbcTemplate">
        <property name="dataSource" ref="datasource"/>
    </bean>

  步驟三:實例化需要的類

 <bean id="daoimpl" class="cn.bdqn.dao.impl.SalaryDaoImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate"/>
    </bean>
    <bean id="salaryservice" class="cn.bdqn.service.serviceImpl.SalaryServiceImpl">
        <property name="salaryDaoImpl" ref="daoimpl"/>
    </bean>

  步驟四:配置事務管理器

   <bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="tx">
        <property name="dataSource" ref="datasource"/>
    </bean>

  步驟五:開始事務管理的註解掃描(註意不要少引約束,否則(transaction-manager這個屬性會報錯)

<tx:annotation-driven transaction-manager="tx" />

  步驟六:在要使用事務的方法上添加註解@Transactional

技術分享

Spring使用事務增加的註解實現方