hibernate 动态切换数据库

学习参考网址
Spring MVC 动态切换数据库
动态切换数据源
切换数据库+ThreadLocal+AbstractRoutingDataSource 一这篇说的很好

配置

最近有个需求是这样的,APP切换不同的地址,后台服务器呢都是相同的代码,不同点是后台数据库地址不同。

 <!-- 配置数据源 c3p0    重点-->  
    <bean id="dataSource1" class="com.mchange.v2.c3p0.ComboPooledDataSource">  
         <!-- 基本信息 -->
        <property name="jdbcUrl" value="${jdbcUrl}"></property>
        <property name="driverClass" value="${driverClassName}"></property>
        <property name="user" value="${jdbc_username}"></property>
        <property name="password" value="${jdbc_password}"></property>
        <!-- 其他配置 -->
        <!--连接池中保留的最大连接数。Default: 15 -->
        <property name="maxPoolSize" value="50"></property>
        <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 10 -->
        <property name="acquireIncrement" value="10"></property>
        <!-- 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default:
            0 -->
        <property name="maxStatements" value="8"></property>
        <!-- maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default:
            0 -->
        <property name="maxStatementsPerConnection" value="10"></property>
        <!--最大空闲时间,300秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
        <property name="maxIdleTime" value="120"></property>
    </bean>  
    
    
    <!-- 配置第二个数据源    重点-->  
    <bean id="dataSource2" class="com.mchange.v2.c3p0.ComboPooledDataSource">  
         <!-- 基本信息 -->
        <property name="jdbcUrl" value="${xiaomi_jdbcUrl}"></property>
        <property name="driverClass" value="${driverClassName}"></property>
        <property name="user" value="${jdbc_username}"></property>
        <property name="password" value="${jdbc_password}"></property>
        <!-- 其他配置 -->
        <!--连接池中保留的最大连接数。Default: 15 -->
        <property name="maxPoolSize" value="50"></property>
        <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 10 -->
        <property name="acquireIncrement" value="10"></property>
        <!-- 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default:
            0 -->
        <property name="maxStatements" value="8"></property>
        <!-- maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default:
            0 -->
        <property name="maxStatementsPerConnection" value="10"></property>
        <!--最大空闲时间,300秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
        <property name="maxIdleTime" value="120"></property>
    </bean>  
    <!-- mysql 动态数据源设置   重点-->
    <bean id="mysqlDynamicDataSource" class="com.gao.utils.DynamicDataSource">
        <property name="targetDataSources">
            <!-- 标识符类型 -->
            <map key-type="com.gao.utils.DBType">
                <entry key="dataSource1" value-ref="dataSource1"/>
                <entry key="dataSource2" value-ref="dataSource2"/>
            </map>
        </property>
         <!-- 默认使用的数据源   重点-->
        <property name="defaultTargetDataSource" ref="dataSource1"/>
    </bean>
 <!-- 配置hibernate的sessionFactory,并让spring的ioc进行管理 -->  
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
        <!-- 配置数据源属性   重点 -->  
        <property name="dataSource" ref="mysqlDynamicDataSource"></property>  
        <!-- 引入hibernate的属性配置文件 -->  
        <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>  
        <!-- 扫描实体类,将其映射为具体的数据库表 -->  
        <property name="packagesToScan" value="com.gao.model"></property>  
    </bean>  

上面配置了2个数据源分别是dataSource1,dataSource2,当然了里面的jdbcUrl是不同的。配置完2个数据源后,我又配置了DynamicDataSource,这个是自己定义的一个类,DBType也是自己定义的一个类,再写一个默认的数据库源,最后就是配置sessionFactory

DynamicDataSource.java

package com.gao.utils;

import java.util.logging.Logger;

import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;

/**
 * 创建动态数据源类,继承org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource这个类.
 * @author Gao
 *
 */
public class DynamicDataSource  extends AbstractRoutingDataSource {
    public static final Logger logger = Logger.getLogger(DynamicDataSource.class.toString());

    @Override
    protected Object determineCurrentLookupKey() {
        DBType key = ContextHolder.getDbType();//获得当前数据源标识符
        logger.info("当前数据源 :" + key);
        return key;
    }
}

DBType.java

package com.gao.utils;
/**
 * 切换数据源需要标识符,标识符是Object类型
 * @author Gao
 *
 */
public enum  DBType {
     dataSource1, dataSource2;
}

ContextHolder.java 切换线程的类

package com.gao.utils;


/**
 * 创建一个用于切换数据源(设置或者获得上下文)的工具类
 * @author Gao
 *
 */
public class ContextHolder {
     private static final ThreadLocal<Object> holder = new ThreadLocal<Object>();
     /**
         * 提供给AOP去设置当前的线程的数据源的信息
         * 切换数据库
         * @param dbType 数据库名-配置文件中一致
         */
        public static void setDbType(DBType dbType) {
              try {
                holder.set(dbType);
              } catch (Exception e) {
                  e.printStackTrace();
              }
        }

        /**
         * 提供给AbstractRoutingDataSource的实现类,通过key选择数据源
         * @return java.lang.String
         */
        public static DBType getDbType() {
            return (DBType) holder.get();
        }

        public static void clearDbType() {
            holder.remove();
        }
}

使用方法:我就拿获取用户信息来说,在m层切换数据源

@RequestMapping("/user")  
@Controller  
public class UserController {  
     
   @Autowired  
   private UserService userService;  
   
   @ResponseBody  
   @RequestMapping("/getUserMessage")  
   public Map<String, Object> userMessage(@RequestParam("type")String type) throws Exception{  
       Map<String, Object> resultMap=new HashMap<String, Object>();  
       //切换
       if(type.equals("leixing01")){
           ContextHolder.setDbType(DBType.dataSource1);
       }else{
           // 切换到数据源 dataSource2
           ContextHolder.setDbType(DBType.dataSource2);
       }
       
       resultMap.put("data", userService.getAllUser("aaa"));
       return resultMap;  
   }  
 }

切换地址要在controller层切换。
额外补充点知识:
DynamicDataSource 继承 AbstractRoutingDataSource
AbstractRoutingDataSource类可以理解为DataSource的路由中介,可以通过它来切换数据库前面我们继承了AbstractRoutingDataSource并且重写了determineCurrentLookupKey()方法切换数据库

@Override
    public Connection getConnection() throws SQLException {
        return determineTargetDataSource().getConnection();
    }

    protected DataSource determineTargetDataSource() {
        Assert.notNull(this.resolvedDataSources, "DataSource router not initialized");
        Object lookupKey = determineCurrentLookupKey();//注意这里
//获取key,根据key切换地址,resolvedDataSources通过在xml配置获取到
        DataSource dataSource = this.resolvedDataSources.get(lookupKey);
        if (dataSource == null && (this.lenientFallback || lookupKey == null)) {
            dataSource = this.resolvedDefaultDataSource;
        }
        if (dataSource == null) {
            throw new IllegalStateException("Cannot determine target DataSource for lookup key [" + lookupKey + "]");
        }
        return dataSource;
    }

        //切换数据库
    protected abstract Object determineCurrentLookupKey();

里面有个resolvedDataSources,它是一个map类型的

    public void setTargetDataSources(Map<Object, Object> targetDataSources) {
        this.targetDataSources = targetDataSources;
    }

@Override
    public void afterPropertiesSet() {
        if (this.targetDataSources == null) {
            throw new IllegalArgumentException("Property 'targetDataSources' is required");
        }
        this.resolvedDataSources = new HashMap<Object, DataSource>(this.targetDataSources.size());
        for (Map.Entry<Object, Object> entry : this.targetDataSources.entrySet()) {
            Object lookupKey = resolveSpecifiedLookupKey(entry.getKey());
            DataSource dataSource = resolveSpecifiedDataSource(entry.getValue());
            this.resolvedDataSources.put(lookupKey, dataSource);
        }
        if (this.defaultTargetDataSource != null) {
            this.resolvedDefaultDataSource = resolveSpecifiedDataSource(this.defaultTargetDataSource);
        }
    }

上面的targetDataSources的赋值在这里实现

 <!-- mysql 动态数据源设置-->
    <bean id="mysqlDynamicDataSource" class="com.gao.utils.DynamicDataSource">
        <property name="targetDataSources">
            <!-- 标识符类型 -->
            <map key-type="com.gao.utils.DBType">
                <entry key="dataSource1" value-ref="dataSource1"/>
                <entry key="dataSource2" value-ref="dataSource2"/>
            </map>
        </property>
         <!-- 默认使用的数据源 -->
        <property name="defaultTargetDataSource" ref="dataSource1"/>
    </bean>

ThreadLocal类的目的:为每个线程创建独立的局部变量副本,线程之间的ThradLocal互不影响(不同线程使用的不同的数据库,互补影响,线程安全)。

   public T get() {
        Thread t = Thread.currentThread();//当前线程
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            ThreadLocalMap.Entry e = map.getEntry(this);
            if (e != null)
                return (T)e.value;
        }
        return setInitialValue();
    }

   public void set(T value) {
        Thread t = Thread.currentThread();//当前线程
        ThreadLocalMap map = getMap(t);
        if (map != null)
            map.set(this, value);
        else
            createMap(t, value);
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,649评论 18 139
  • 能关上门的,才叫做房间。 我与这个世界,只隔着一扇门。 我住在门后面,用门隔离出的一个房间。在这里我是自由的,不想...
    Perlin沛霖阅读 312评论 0 0
  • 不怕遇到疯狗,就怕遇到像“疯狗”一样的人。正所谓不怕神一样的人物,就怕狗一样的疯子。但凡靠近周围着无一幸免...
    樱你而不同阅读 7,323评论 1 1
  • 夜已经很深了,白天的兴奋一直延续到这么晚,你不愿意睡觉,跳上跳下,问我“人为什么要睡觉?”,我花了十几分钟耐心地告...
    三末阅读 366评论 0 2
  • 嗨,你还好吗?我是小可,很高兴与你相遇在阅读的路上。 一本书对一个人的影响,主要通过两种形式呈现:故事和金句。一本...
    汪小可Lisa阅读 419评论 2 5