1、maven依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>com.ly.spring</groupId>
<artifactId>spring07</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging> <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
<!--JdbcTemplate-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
<!--整合junit-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.0.2.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>
<!--解析切入点表达式-->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies> <!--解决IDEA maven变更后自动重置LanguageLevel和JavaCompiler版本的问题-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>13</source>
<target>13</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

2、abc服务和实现类

package com.ly.spring.service;

public interface IAbcService {
public void updateAbcMoney(String abcBankNo,double addMoney);
}
package com.ly.spring.service.impl;

import com.ly.spring.dao.IAbcDao;
import com.ly.spring.service.IAbcService; public class AbcServiceImpl implements IAbcService {
private IAbcDao abcDao; public void setAbcDao(IAbcDao abcDao) {
this.abcDao = abcDao;
} @Override
public void updateAbcMoney(String abcBankNo, double addMoney) {
abcDao.updateAbcMoney(abcBankNo,addMoney);
}
}

3、abc dao和实现类

package com.ly.spring.dao;

public interface IAbcDao {
public void updateAbcMoney(String abcBankNo,double addMoney);
}
package com.ly.spring.dao.impl;

import com.ly.spring.dao.IAbcDao;
import org.springframework.jdbc.core.support.JdbcDaoSupport; public class AbcDaoImpl extends JdbcDaoSupport implements IAbcDao {
@Override
public void updateAbcMoney(String abcBankNo, double addMoney) {
super.getJdbcTemplate().update("update abc set money = money+? where bankno = ?",addMoney,abcBankNo);
}
}

4、icbc服务和实现类

package com.ly.spring.service;

public interface IIcbcService {
public void updateIcbcMoney(String icbcBankNo, double addMoney);
}
package com.ly.spring.service.impl;

import com.ly.spring.dao.IIcbcDao;
import com.ly.spring.service.IIcbcService; public class IcbcServiceImpl implements IIcbcService {
private IIcbcDao icbcDao; public void setIcbcDao(IIcbcDao icbcDao) {
this.icbcDao = icbcDao;
} @Override
public void updateIcbcMoney(String icbcBankNo, double addMoney) {
icbcDao.updateIcbcMoney(icbcBankNo,addMoney);
}
}

5、icbc dao和实现类

package com.ly.spring.dao;

public interface IIcbcDao {
public void updateIcbcMoney(String icbcBankNo, double addMoney);
}
package com.ly.spring.dao.impl;

import com.ly.spring.dao.IIcbcDao;
import org.springframework.jdbc.core.support.JdbcDaoSupport; public class IcbcDaoImpl extends JdbcDaoSupport implements IIcbcDao {
@Override
public void updateIcbcMoney(String icbcBankNo, double addMoney) {
super.getJdbcTemplate().update("update icbc set money = money+? where bankno = ?",addMoney,icbcBankNo);
}
}

6、转账服务和实现类

package com.ly.spring.service;

/**
* 转账服务
*/
public interface ITransferAccountService {
public void transferAccountFromIcbcToAbc(String icbcBankNo,String abcBankNo,double money);
}
package com.ly.spring.service.impl;

import com.ly.spring.service.IAbcService;
import com.ly.spring.service.IIcbcService;
import com.ly.spring.service.ITransferAccountService; public class TransferAccountServiceImpl implements ITransferAccountService {
private IIcbcService icbcService;
private IAbcService abcService; public void setIcbcService(IIcbcService icbcService) {
this.icbcService = icbcService;
} public void setAbcService(IAbcService abcService) {
this.abcService = abcService;
} @Override
public void transferAccountFromIcbcToAbc(String icbcBankNo, String abcBankNo, double money) {
//先扣减icbc
icbcService.updateIcbcMoney(icbcBankNo,0-money);
//再增加abc
abcService.updateAbcMoney(abcBankNo,money);
//int i = 1/0;
}
}

7、jdbc资源文件

jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://localhost:3306/db01
jdbc.user = root
jdbc.password = root

8、spring配置文件

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.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
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--配置jdbc资源文件-->
<context:property-placeholder location="classpath:jdbc.properties"></context:property-placeholder>
<!--转账服务-->
<bean id="transferAccountService" class="com.ly.spring.service.impl.TransferAccountServiceImpl">
<property name="abcService" ref="abcService"></property>
<property name="icbcService" ref="icbcService"></property>
</bean>
<!--icbc服务-->
<bean id="icbcService" class="com.ly.spring.service.impl.IcbcServiceImpl">
<property name="icbcDao" ref="icbcDao"></property>
</bean>
<!--abc服务-->
<bean id="abcService" class="com.ly.spring.service.impl.AbcServiceImpl">
<property name="abcDao" ref="abcDao"></property>
</bean>
<!--icbc dao-->
<bean id="icbcDao" class="com.ly.spring.dao.impl.IcbcDaoImpl">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--abc dao-->
<bean id="abcDao" class="com.ly.spring.dao.impl.AbcDaoImpl">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--配置数据源-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driver}"></property>
<property name="url" value="${jdbc.url}"></property>
<property name="username" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<!--配置事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--配置事务通知和事务通知的属性-->
<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" read-only="false"/>
<tx:method name="find*" propagation="SUPPORTS" read-only="true"></tx:method>
</tx:attributes>
</tx:advice>
<!--aopp欸之-->
<aop:config>
<!--配置切入点-->
<aop:pointcut id="pt1" expression="execution(* com.ly.spring.service.impl.*.*(..))"/>
<!--将事务通知和切入点关联起来-->
<aop:advisor advice-ref="transactionAdvice" pointcut-ref="pt1"></aop:advisor>
</aop:config>
</beans>

9、测试类

package com.ly.spring.test;

import com.ly.spring.service.ITransferAccountService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
//替换junit的main方法
@RunWith(SpringJUnit4ClassRunner.class)
//指定spring配置文件位置
@ContextConfiguration(locations = "classpath:bean.xml")
public class MainTest {
@Autowired
private ITransferAccountService transferAccountService;
@Test
public void test() {
transferAccountService.transferAccountFromIcbcToAbc("1234567890","1001",500);
}
}

最新文章

  1. Why do we live in this world?
  2. jsp考试的错题
  3. Fiddler源代码分享
  4. php通用安装程序,导入数据文件(.sql)的安装程序
  5. missing locales
  6. eclipse下环境变量设置:eclipse导入工程出现 Unbound classpath variable Error
  7. apache配置虚拟主机的三种方式
  8. hibernate 多对一的情况
  9. php中JPGraph入门配置与应用
  10. linux杂记(二)主机硬盘规划
  11. Java之路——Java初接触
  12. 深入css布局篇(3)完结 — margin问题与格式化上下文
  13. Win10操作系统下Oracle VM VirtualBox6.0加载磁盘提示“发现无效设置”的解决方法(包括“不能桥接网卡”问题的解决方法)
  14. SiteMesh3简介及使用
  15. 【php】随缘php企业网站管理系统V2.0 shownews.php注入漏洞
  16. git clean使用总结
  17. 【转】Nginx学习---深入浅出Nginx的介绍
  18. 开源微信Http协议Sdk【实现登录/获取好友列表/修改备注/发送消息】
  19. LCS,LIS,LCIS学习
  20. jquery -- onchange

热门文章

  1. Java并发编程(二):volatile关键字
  2. CCNA的基础知识及要点
  3. Go语言实现:【剑指offer】顺时针打印矩阵
  4. 【LaTeX】记录一下LaTeX的安装和使用
  5. 磁盘文件系统管理与LVM逻辑卷
  6. 2020年,手把手教你如何在CentOS7上一步一步搭建LDAP服务器的最新教程
  7. LwIP的udp学习笔记
  8. nginx-tengine集合
  9. nethogs-linux程序网络使用情况
  10. 如何重写object虚方法