激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|編程技術|正則表達式|

服務器之家 - 編程語言 - JAVA教程 - Spring boot配置多數據源代碼實例

Spring boot配置多數據源代碼實例

2020-07-09 11:25阮帥 JAVA教程

這篇文章主要介紹了Spring boot配置多數據源代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

因項目需要在一個應用里從兩個數據庫取數,所以需要配置多數據源,網上找了好多方法才啟動成功,整理如下。注意兩個數據源的repository文件名不能相同,即使在不同的文件夾下,否則系統啟動會報錯。

配置文件

?
1
2
3
4
5
6
7
8
9
spring.datasource.primary.url=***
spring.datasource.primary.username=***
spring.datasource.primary.password=***
spring.datasource.primary.driver-class-name=com.mysql.jdbc.Driver
 
spring.datasource.second.url=***
spring.datasource.second.username=***
spring.datasource.second.password=***
spring.datasource.second.driver-class-name=com.mysql.jdbc.Driver

通用數據源配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import com.alibaba.druid.pool.DruidDataSource;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
 
import javax.sql.DataSource;
 
/**
 * @author ruanshuai
 * @date 2020/5/13
 */
 
@Configuration
public class DataSourceConfig {
 
  /**
   * 第一個數據連接,默認優先級最高
   * @return
   */
  @Primary
  @Bean(name = "primaryDataSource") //數據源1配置名
  @Qualifier("primaryDataSource") //數據源1配置名
  @ConfigurationProperties(prefix="spring.datasource.primary") //見配置文件
  public DataSource PrimaryDataSource() {
    return DataSourceBuilder.create().type(DruidDataSource.class).build();
  }
 
  /**
   * 第二個數據源
   * @return
   */
  @Bean(name = "secondDataSource") //數據源2配置名
  @Qualifier("secondDataSource") //數據源2配置名
  @ConfigurationProperties(prefix="spring.datasource.second") //見配置文件
  public DataSource secondaryDataSource() {
    return DataSourceBuilder.create().type(DruidDataSource.class).build();
  }
}

數據源1配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.orm.jpa.JpaTransactionManager;
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;
 
import javax.persistence.EntityManager;
import javax.sql.DataSource;
import java.util.HashMap;
import java.util.Map;
 
/**
 * @author ruanshuai
 * @date 2020/5/13
 */
 
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(
    entityManagerFactoryRef="entityManagerFactoryPrimary",
    transactionManagerRef="transactionManagerPrimary",
    basePackages= { "***此處為數據源1 repository的存放文件夾***" })
public class PrimaryConfig {
 
 
  @Autowired
  @Qualifier("primaryDataSource")
  private DataSource primaryDataSource;
 
  @Primary
  @Bean(name = "entityManagerPrimary")
  public EntityManager entityManager(EntityManagerFactoryBuilder builder) {
    return entityManagerFactoryPrimary(builder).getObject().createEntityManager();
  }
 
  @Primary
  @Bean(name = "entityManagerFactoryPrimary")
  public LocalContainerEntityManagerFactoryBean entityManagerFactoryPrimary (EntityManagerFactoryBuilder builder) {
    return builder
        .dataSource(primaryDataSource)
        .properties(getVendorProperties())
        .packages("***實體類所在文件夾,兩個數據源的實體類可相同***")
        .persistenceUnit("primaryPersistenceUnit")
        .build();
  }
 
 
 
  private Map<String, String> getVendorProperties() {
    Map<String, String> jpaProperties = new HashMap<>(16);
    jpaProperties.put("hibernate.hbm2ddl.auto", "update");
    jpaProperties.put("hibernate.show_sql", System.getProperty("spring.jpa.show-sql"));
    jpaProperties.put("hibernate.dialect", System.getProperty("spring.jpa.properties.hibernate.dialect"));
    jpaProperties.put("hibernate.current_session_context_class", "org.springframework.orm.hibernate5.SpringSessionContext");
    return jpaProperties;
  }
 
  @Primary
  @Bean(name = "transactionManagerPrimary")
  public PlatformTransactionManager transactionManagerPrimary(EntityManagerFactoryBuilder builder) {
    return new JpaTransactionManager(entityManagerFactoryPrimary(builder).getObject());
  }
}

數據源2配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import org.omg.CORBA.Environment;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.orm.jpa.JpaTransactionManager;
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;
 
import javax.persistence.EntityManager;
import javax.sql.DataSource;
import java.util.HashMap;
import java.util.Map;
 
/**
 * @author ruanshuai
 * @date 2020/5/13
 */
 
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(
    //實體管理
    entityManagerFactoryRef="entityManagerFactorySecond",
    //事務管理
    transactionManagerRef="transactionManagerSecond",
    //實體掃描,設置Repository所在位置
    basePackages= { "***此處為數據源1 repository的存放文件夾***" })
public class SecondConfig {
 
  @Autowired
  @Qualifier("secondDataSource")
  private DataSource secondDataSource;
 
 
  @Bean(name = "entityManagerSecond")
  public EntityManager entityManager(EntityManagerFactoryBuilder builder) {
    return entityManagerFactorySecond(builder).getObject().createEntityManager();
  }
 
  @Bean(name = "entityManagerFactorySecond")
  public LocalContainerEntityManagerFactoryBean entityManagerFactorySecond (EntityManagerFactoryBuilder builder) {
    return builder
        .dataSource(secondDataSource)
        .properties(getVendorProperties())
        .packages("***實體類所在文件夾,兩個數據源的實體類可相同***")
        .persistenceUnit("secondPersistenceUnit")
        .build();
  }
 
  private Map<String, String> getVendorProperties() {
    Map<String, String> jpaProperties = new HashMap<>(16);
    jpaProperties.put("hibernate.hbm2ddl.auto", "update");
    jpaProperties.put("hibernate.show_sql", System.getProperty("spring.jpa.show-sql"));
    jpaProperties.put("hibernate.dialect", System.getProperty("spring.jpa.properties.hibernate.dialect"));
    jpaProperties.put("hibernate.current_session_context_class", "org.springframework.orm.hibernate5.SpringSessionContext");
    return jpaProperties;
  }
 
  @Bean(name = "transactionManagerSecond")
  PlatformTransactionManager transactionManagerSecond(EntityManagerFactoryBuilder builder) {
    return new JpaTransactionManager(entityManagerFactorySecond(builder).getObject());
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:https://www.cnblogs.com/ruanshuai/p/13252625.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 成人综合区一区 | 久久99国产伦子精品免费 | 福利在线免费 | 思思久而久而蕉人 | 毛片免费在线播放 | chinese xvideos gay| 免费啪视频在线观看 | 99精品视频在线观看免费播放 | 欧美成人一区二区三区 | 一级片免费在线播放 | 亚洲一区二区三区视频免费 | 一级做a爰性色毛片免费 | av中文一区 | 龙的两根好大拔不出去h | 国产精品久久久久久久久久10秀 | 一级成人免费 | 免费福利在线视频 | 91久久久国产精品 | 九九热精品视频在线 | 一级黄色影片在线观看 | 欧美 亚洲 视频 | 欧美成在线视频 | 91精品国产刺激国语对白 | 国产日韩一区二区三区在线观看 | 九九热精彩视频 | 视频在线中文字幕 | 九草在线视频 | 法国性xxx精品hd专区 | 欧美精品免费一区二区三区 | 男人午夜小视频 | 中文字幕精品在线视频 | 欧美福利视频一区二区 | 天天草天天干天天射 | 日韩av成人 | 欧美黄 片免费观看 | 色婷婷一区二区三区 | 日韩aⅴ一区二区三区 | 免费一级电影 | 欧美一级α | 久久综合给合久久狠狠狠97色69 | av电影在线观看网站 |