使用Spring AOP实现MySQL数据库读写分离案例分析

发布时间:2020-09-24 17:06:28 作者:Java月亮呀
来源:网络 阅读:547

使用Spring AOP实现MySQL数据库读写分离案例分析

一、前言

分布式环境下数据库的读写分离策略是解决数据库读写性能瓶颈的一个关键解决方案,更是最大限度了提高了应用中读取 (Read)数据的速度和并发量。

在进行数据库读写分离的时候,我们首先要进行数据库的主从配置,最简单的是一台Master和一台Slave(大型网站系统的话,当然会很复杂,这里只是分析了最简单的情况)。通过主从配置主从数据库保持了相同的数据,我们在进行读操作的时候访问从数据库Slave,在进行写操作的时候访问主数据库Master。这样的话就减轻了一台服务器的压力。

在进行读写分离案例分析的时候。首先,配置数据库的主从复制,可以选择下面的这个方法:

MySQL5.6 数据库主从(Master/Slave)同步安装与配置详解

当然,只是简单的为了看一下如何用代码的方式实现数据库的读写分离,完全不必要去配置主从数据库,只需要两台安装了 相同数据库的机器就可以了。

二、实现读写分离的两种方法

具体到开发中,实现读写分离常用的有两种方式:

下面会详细的介绍实现方式。

三、Aop实现主从数据库的读写分离案例

1、项目代码地址

目前该Demo的项目地址在开源中国 码云 上边:http://git.oschina.net/xuliugen/aop-choose-db-demo

使用Spring AOP实现MySQL数据库读写分离案例分析

2、项目结构

使用Spring AOP实现MySQL数据库读写分离案例分析

上图中,除了标记的代码,其他的主要是配置代码和业务代码。

3、具体分析

该项目是SSM框架的一个demo,Spring、Spring MVC和MyBatis,具体的配置文件不在过多介绍。

(1)UserContoller模拟读写数据

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

/**
 * Created by xuliugen on 2016/5/4.
 */
@Controller
@RequestMapping(value = "/user", produces = {"application/json;charset=UTF-8"})
public class UserController {
 @Inject
 private IUserService userService;
 //http://localhost:8080/user/select.do
 @ResponseBody
 @RequestMapping(value = "/select.do", method = RequestMethod.GET)
 public String select() {
 User user = userService.selectUserById(123);
 return user.toString();
 }
 //http://localhost:8080/user/add.do
 @ResponseBody
 @RequestMapping(value = "/add.do", method = RequestMethod.GET)
 public String add() {
 boolean isOk = userService.addUser(new User("333", "444"));
 return isOk == true ? "shibai" : "chenggong";
 }
}

模拟读写数据,调用IUserService 。

(2)spring-db.xml读写数据源配置

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

<?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"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
 <bean id="statFilter" class="com.alibaba.druid.filter.stat.StatFilter" lazy-init="true">
 <property name="logSlowSql" value="true"/>
 <property name="mergeSql" value="true"/>
 </bean>
 <!-- 数据库连接 -->
 <bean id="readDataSource" class="com.alibaba.druid.pool.DruidDataSource"
 destroy-method="close" init-method="init" lazy-init="true">
 <property name="driverClassName" value="${driver}"/>
 <property name="url" value="${url1}"/>
 <property name="username" value="root"/>
 <property name="password" value="${password}"/>
 <!-- 省略部分内容 -->
 </bean>
 <bean id="writeDataSource" class="com.alibaba.druid.pool.DruidDataSource"
 destroy-method="close" init-method="init" lazy-init="true">
 <property name="driverClassName" value="${driver}"/>
 <property name="url" value="${url}"/>
 <property name="username" value="root"/>
 <property name="password" value="${password}"/>
 <!-- 省略部分内容 -->
 </bean>
 <!-- 配置动态分配的读写 数据源 -->
 <bean id="dataSource" class="com.xuliugen.choosedb.demo.aspect.ChooseDataSource" lazy-init="true">
 <property name="targetDataSources">
 <map key-type="java.lang.String" value-type="javax.sql.DataSource">
 <!-- write -->
 <entry key="write" value-ref="writeDataSource"/>
 <!-- read -->
 <entry key="read" value-ref="readDataSource"/>
 </map>
 </property>
 <property name="defaultTargetDataSource" ref="writeDataSource"/>
 <property name="methodType">
 <map key-type="java.lang.String">
 <!-- read -->
 <entry key="read" value=",get,select,count,list,query"/>
 <!-- write -->
 <entry key="write" value=",add,create,update,delete,remove,"/>
 </map>
 </property>
 </bean>
</beans>

上述配置中,配置了readDataSource和writeDataSource两个数据源,但是交给SqlSessionFactoryBean进行管理的只有dataSource,其中使用到了:com.xuliugen.choosedb.demo.aspect.ChooseDataSource 这个是进行数据库选择的。

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

<property name="methodType">
 <map key-type="java.lang.String">
 <!-- read -->
 <entry key="read" value=",get,select,count,list,query"/>
 <!-- write -->
 <entry key="write" value=",add,create,update,delete,remove,"/>
 </map>
</property>

配置了数据库具体的那些是读哪些是写的前缀关键字。ChooseDataSource的具体代码如下:

(3)ChooseDataSource

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

/**
 * 获取数据源,用于动态切换数据源
 */
public class ChooseDataSource extends AbstractRoutingDataSource {
 public static Map<String, List<String>> METHOD_TYPE_MAP = new HashMap<String, List<String>>();
 /**
 * 实现父类中的抽象方法,获取数据源名称
 * @return
 */
 protected Object determineCurrentLookupKey() {
 return DataSourceHandler.getDataSource();
 }
 // 设置方法名前缀对应的数据源
 public void setMethodType(Map<String, String> map) {
 for (String key : map.keySet()) {
 List<String> v = new ArrayList<String>();
 String[] types = map.get(key).split(",");
 for (String type : types) {
 if (StringUtils.isNotBlank(type)) {
 v.add(type);
 }
 }
 METHOD_TYPE_MAP.put(key, v);
 }
 }
}

(4)DataSourceAspect进行具体方法的AOP拦截

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

/**
 * 切换数据源(不同方法调用不同数据源)
 */
@Aspect
@Component
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class DataSourceAspect {
 protected Logger logger = LoggerFactory.getLogger(this.getClass());
 @Pointcut("execution(* com.xuliugen.choosedb.demo.mybatis.dao.*.*(..))")
 public void aspect() {
 }
 /**
 * 配置前置通知,使用在方法aspect()上注册的切入点
 */
 @Before("aspect()")
 public void before(JoinPoint point) {
 String className = point.getTarget().getClass().getName();
 String method = point.getSignature().getName();
 logger.info(className + "." + method + "(" + StringUtils.join(point.getArgs(), ",") + ")");
 try {
 for (String key : ChooseDataSource.METHOD_TYPE_MAP.keySet()) {
 for (String type : ChooseDataSource.METHOD_TYPE_MAP.get(key)) {
 if (method.startsWith(type)) {
 DataSourceHandler.putDataSource(key);
 }
 }
 }
 } catch (Exception e) {
 e.printStackTrace();
 }
 }
}

(5)DataSourceHandler,数据源的Handler类

<pre style="margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-word;">

package com.xuliugen.choosedb.demo.aspect;
/**
 * 数据源的Handler类
 */
public class DataSourceHandler {
 // 数据源名称线程池
 public static final ThreadLocal<String> holder = new ThreadLocal<String>();
 /**
 * 在项目启动的时候将配置的读、写数据源加到holder中
 */
 public static void putDataSource(String datasource) {
 holder.set(datasource);
 }
 /**
 * 从holer中获取数据源字符串
 */
 public static String getDataSource() {
 return holder.get();
 }
}

主要代码,如上所述。

推荐阅读:
  1. 使用Spring AOP切面解决数据库读写分离
  2. 怎么在spring中使用atomikos实现分布式事务

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java 程序员 spring aop

上一篇:Android ActionMode模式使用

下一篇:Python实现账号密码输错三次即锁定功能简单示例

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》