springboot+mybatis/mybatis-plus+druid配置多數(shù)據(jù)源

養(yǎng)成良好的記錄習(xí)慣
作者:黃黃

最近公司業(yè)務(wù)要求查詢不同數(shù)據(jù)庫(kù)的數(shù)據(jù)組裝在一起袁串,所以需要進(jìn)行多數(shù)據(jù)源配置的操作取具。

yml添加配置

  • 這里以sqlsever數(shù)據(jù)庫(kù)為例绒疗,其他數(shù)據(jù)庫(kù)也類(lèi)似
  • 這里列舉first和second兩個(gè)數(shù)據(jù)源
  datasource:
    first:
      type: com.alibaba.druid.pool.DruidDataSource
      driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
      jdbc-url: jdbc:sqlserver://192.168.0.001:61592;databaseName=master
      username: xxxxxxx
      password: xxxxxxx
      druid:
        #連接池初始化大小
        initial-size: 5
        #連接池最小值
        min-idle: 5
        #連接池最大值
        max-active: 20
        #最大等待時(shí)間帝美,配置獲取連接等待超時(shí)敏释,時(shí)間單位都是毫秒ms
        max-wait: 60000
        #配置間隔多久才進(jìn)行一次檢測(cè)库快,檢測(cè)需要關(guān)閉的空閑連接
        time-between-eviction-runs-millis: 60000
        #配置一個(gè)連接在池中最小生存的時(shí)間
        min-evictable-idle-time-millis: 300000
     
    second:
      type: com.alibaba.druid.pool.DruidDataSource
      driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
      jdbc-url: jdbc:sqlserver://192.168.0.002:61592;databaseName=master
      username: xxxxxx
      password: xxxxxxxxxxx
      druid:
        #連接池初始化大小
        initial-size: 5
        #連接池最小值
        min-idle: 5
        #連接池最大值
        max-active: 20
        #最大等待時(shí)間,配置獲取連接等待超時(shí)钥顽,時(shí)間單位都是毫秒ms
        max-wait: 60000
        #配置間隔多久才進(jìn)行一次檢測(cè)义屏,檢測(cè)需要關(guān)閉的空閑連接
        time-between-eviction-runs-millis: 60000
        #配置一個(gè)連接在池中最小生存的時(shí)間
        min-evictable-idle-time-millis: 300000

這里列舉幾個(gè)小細(xì)節(jié)

  • driver-class-name不能使用駝峰
  • 一定得使用 jdbc-url,不能使用url

添加數(shù)據(jù)源配置

mybatis對(duì)應(yīng)的配置

first配置

@Configuration
@MapperScan(basePackages = {"com.self.structure.first.dao"}, sqlSessionTemplateRef = "firstSqlSessionTemplate")
public class FirstDruidConfig {
    @Bean(name = "firstDataSource")
    @Primary
    @ConfigurationProperties(prefix = "spring.datasource.first")
    public DataSource firstDataSource() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    public SqlSessionFactory firstSqlSessionFactory(@Qualifier("firstDataSource") DataSource dataSource) throws Exception {
        SqlSessionFactoryBean sqlSessionFactory= new SqlSessionFactoryBean();
        sqlSessionFactory.setDataSource(dataSource);
        //添加X(jué)ML目錄
        sqlSessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/mapper/first/*-mapper.xml"));
        return sqlSessionFactory.getObject();

    }
    @Bean
    public SqlSessionTemplate firstSqlSessionTemplate(@Qualifier("firstSqlSessionFactory") SqlSessionFactory sqlSessionFactory) throws Exception {
        // 使用上面配置的Factory
        SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory);
        return template;
    }
}

second配置

@Configuration
@MapperScan(basePackages = {"com.self.structure.second.dao"}, sqlSessionTemplateRef = "secondSqlSessionTemplate")
public class SecondDruidConfig {
    @Bean(name = "secondDataSource")
    @ConfigurationProperties(prefix = "spring.datasource.second")
    public DataSource secondDataSource() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    public SqlSessionFactory secondSqlSessionFactory(@Qualifier("secondDataSource") DataSource dataSource) throws Exception {
        SqlSessionFactoryBean sqlSessionFactory= new SqlSessionFactoryBean();
        sqlSessionFactory.setDataSource(dataSource);
        //添加X(jué)ML目錄
        sqlSessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/mapper/second/*-mapper.xml"));
        return sqlSessionFactory.getObject();
    }

    @Bean
    public SqlSessionTemplate secondSqlSessionTemplate(@Qualifier("secondSqlSessionFactory") SqlSessionFactory sqlSessionFactory) throws Exception {
        // 使用上面配置的Factory
        SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory);
        return template;
    }
}

注:first配置中@Primary注解作用是指定項(xiàng)目默認(rèn)數(shù)據(jù)源,也就是項(xiàng)目啟動(dòng)默認(rèn)連接的數(shù)據(jù)源

mybatis-plus對(duì)應(yīng)的配置

  • 相比mybatis的配置要多配置MybatisConfiguration和plugins
    first配置
@Configuration
@MapperScan(basePackages = {"com.self.structure.first.dao"}, sqlSessionTemplateRef = "firstSqlSessionTemplate")
public class FirstDruidConfig {
    @Bean(name = "firstDataSource")
    @Primary
    @ConfigurationProperties(prefix = "spring.datasource.first")
    public DataSource firstDataSource() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    public SqlSessionFactory firstSqlSessionFactory(@Qualifier("firstDataSource") DataSource dataSource) throws Exception {
        SqlSessionFactoryBean sqlSessionFactory= new SqlSessionFactoryBean();
        sqlSessionFactory.setDataSource(dataSource);
        //添加X(jué)ML目錄
        sqlSessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/mapper/first/*-mapper.xml"));
        //mybatis-plus的額外配置
        MybatisConfiguration configuration = new MybatisConfiguration();
        configuration.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class);
        configuration.setJdbcTypeForNull(JdbcType.NULL);
        sqlSessionFactory.setConfiguration(configuration);
        sqlSessionFactory.setPlugins(new Interceptor[]{
                new PaginationInterceptor(),
                new PerformanceInterceptor(),
                new OptimisticLockerInterceptor()
        });

        return sqlSessionFactory.getObject();

    }
    @Bean
    public SqlSessionTemplate firstSqlSessionTemplate(@Qualifier("firstSqlSessionFactory") SqlSessionFactory sqlSessionFactory) throws Exception {
        // 使用上面配置的Factory
        SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory);
        return template;
    }
}

second配置

@Configuration
@MapperScan(basePackages = {"com.self.structure.second.dao"}, sqlSessionTemplateRef = "secondSqlSessionTemplate")
public class SecondDruidConfig {
    @Bean(name = "secondDataSource")
    @ConfigurationProperties(prefix = "spring.datasource.second")
    public DataSource secondDataSource() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    public SqlSessionFactory secondSqlSessionFactory(@Qualifier("secondDataSource") DataSource dataSource) throws Exception {
        SqlSessionFactoryBean sqlSessionFactory= new SqlSessionFactoryBean();
        sqlSessionFactory.setDataSource(dataSource);
        //添加X(jué)ML目錄
        sqlSessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/mapper/second/*-mapper.xml"));
        //mybatis-plus的額外配置
        MybatisConfiguration configuration = new MybatisConfiguration();
        configuration.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class);
        configuration.setJdbcTypeForNull(JdbcType.NULL);
        sqlSessionFactory.setConfiguration(configuration);
        sqlSessionFactory.setPlugins(new Interceptor[]{
                new PaginationInterceptor(),
                new PerformanceInterceptor(),
                new OptimisticLockerInterceptor()
        });
        return sqlSessionFactory.getObject();
    }

    @Bean
    public SqlSessionTemplate secondSqlSessionTemplate(@Qualifier("secondSqlSessionFactory") SqlSessionFactory sqlSessionFactory) throws Exception {
        // 使用上面配置的Factory
        SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory);
        return template;
    }
}

創(chuàng)建Mapper

  • 接下來(lái)就是和往常一樣創(chuàng)建數(shù)據(jù)源配置中注解@MapperScan(basePackages = {"com.self.structure.first/second.dao"})對(duì)應(yīng)的mybatis/mybatis-plus數(shù)據(jù)訪問(wèn)層了
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末闽铐,一起剝皮案震驚了整個(gè)濱河市蝶怔,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌兄墅,老刑警劉巖踢星,帶你破解...
    沈念sama閱讀 206,482評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異隙咸,居然都是意外死亡沐悦,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)五督,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)藏否,“玉大人,你說(shuō)我怎么就攤上這事概荷★醯海” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,762評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵误证,是天一觀的道長(zhǎng)继薛。 經(jīng)常有香客問(wèn)我,道長(zhǎng)愈捅,這世上最難降的妖魔是什么遏考? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,273評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮蓝谨,結(jié)果婚禮上灌具,老公的妹妹穿的比我還像新娘。我一直安慰自己譬巫,他們只是感情好咖楣,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評(píng)論 5 373
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著芦昔,像睡著了一般诱贿。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上咕缎,一...
    開(kāi)封第一講書(shū)人閱讀 49,046評(píng)論 1 285
  • 那天珠十,我揣著相機(jī)與錄音,去河邊找鬼凭豪。 笑死焙蹭,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的嫂伞。 我是一名探鬼主播孔厉,決...
    沈念sama閱讀 38,351評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼拯钻,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了烟馅?” 一聲冷哼從身側(cè)響起说庭,我...
    開(kāi)封第一講書(shū)人閱讀 36,988評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤然磷,失蹤者是張志新(化名)和其女友劉穎郑趁,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體姿搜,經(jīng)...
    沈念sama閱讀 43,476評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡寡润,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評(píng)論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了舅柜。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片梭纹。...
    茶點(diǎn)故事閱讀 38,064評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖致份,靈堂內(nèi)的尸體忽然破棺而出变抽,到底是詐尸還是另有隱情,我是刑警寧澤氮块,帶...
    沈念sama閱讀 33,712評(píng)論 4 323
  • 正文 年R本政府宣布绍载,位于F島的核電站,受9級(jí)特大地震影響滔蝉,放射性物質(zhì)發(fā)生泄漏击儡。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評(píng)論 3 307
  • 文/蒙蒙 一蝠引、第九天 我趴在偏房一處隱蔽的房頂上張望阳谍。 院中可真熱鬧,春花似錦螃概、人聲如沸矫夯。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,264評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)训貌。三九已至,卻和暖如春融蹂,著一層夾襖步出監(jiān)牢的瞬間旺订,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,486評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工超燃, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留区拳,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,511評(píng)論 2 354
  • 正文 我出身青樓意乓,卻偏偏與公主長(zhǎng)得像樱调,于是被迫代替她去往敵國(guó)和親约素。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容