前面咱們已經介紹了三種方式來操做數據庫,在實際開發中,每每會出現一個服務鏈接多個數據庫的需求,這時候就須要在項目中進行靈活切換數據源來完成多個數據庫操做。這一章中,咱們使用jdbcTemplate來學習多數據源的配置。java
一 準備工做
1.1 建庫、建表
咱們新建兩個庫db1
和db2
,數據結構仍是用前面演示的,分別在兩個庫中新建表student
。mysql
CREATE TABLE `student` ( `student_id` int(30) NOT NULL AUTO_INCREMENT, `age` int(1) DEFAULT NULL COMMENT '年齡', `name` varchar(45) DEFAULT NULL COMMENT '姓名', `sex` int(1) DEFAULT NULL COMMENT '性別:1:男,2:女,0:未知', `create_time` datetime DEFAULT NULL COMMENT '建立時間', `status` int(1) DEFAULT NULL COMMENT '狀態:1:正常,-1:刪除', PRIMARY KEY (`student_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC COMMENT='學生表'
1.2 引入mysql和jdbcTemplate依賴
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency>
1.3 寫入兩個數據源配置
spring: datasource: db1: driver-class-name: com.mysql.cj.jdbc.Driver jdbc-url: jdbc:mysql://localhost:3306/db1 username: root password: root db2: driver-class-name: com.mysql.cj.jdbc.Driver jdbc-url: jdbc:mysql://localhost:3306/db2 username: root password: root
二 多數據源配置
@Configuration public class DataSourceConfig { @Primary @Bean @ConfigurationProperties(prefix = "spring.datasource.db1") public DataSource db1DataSource(){ return DataSourceBuilder.create().build(); } @Bean @ConfigurationProperties(prefix = "spring.datasource.db2") public DataSource db2DataSource(){ return DataSourceBuilder.create().build(); } }
- @Primary:表示主的,即出現多個bean的時候若是不指定具體的bean,則會採用這個
- @bean:標註爲一個bean,若是不指定name屬性,則會使用建立bean方法的名字作爲bean的名字
- @ConfigurationProperties:讀取配置文件
三 配置JdbcTemplate對象
@Configuration public class DataSourceConfig { @Bean public JdbcTemplate db1JdbcTemplate(@Qualifier("db1DataSource") DataSource dataSource){ return new JdbcTemplate(dataSource); } @Primary @Bean public JdbcTemplate db2JdbcTemplate(@Qualifier("db2DataSource") DataSource dataSource){ return new JdbcTemplate(dataSource); } }
- @Qualifier:bean類型相同後,指定使用的bean的name
四 測試類
4.1 測試@Primary屬性
不指定使用哪一個JdbcTemplate對象時,會使用標註了@Primary屬性的對象git
@SpringBootTest class SpringBootDatasourceApplicationTests { @Autowired private JdbcTemplate jdbcTemplate; @Test void testPrimary() { jdbcTemplate.update("insert into student(name,age) values(?,?)",new Object[]{"Java旅途",18}); } }
4.2 測試多數據源
@SpringBootTest class SpringBootDatasourceApplicationTests { @Autowired private JdbcTemplate db1JdbcTemplate; @Autowired private JdbcTemplate db2JdbcTemplate; @Autowired private JdbcTemplate jdbcTemplate; @Test void contextLoads() { db1JdbcTemplate.update("insert into student(name,age) values(?,?)",new Object[]{"Java旅途",18}); db2JdbcTemplate.update("insert into student(name,age) values(?,?)",new Object[]{"Java旅途",18}); } } }
這裏分享一道面試題:@Autowired 與@Resource有什麼區別?github
@Autowired是Spring提供的,@Resource是JDK提供的;面試
@Autowired是根據bean的類型匹配的,@Resource是根據bean的name匹配的;redis
若是@Autowird想要根據name匹配應該怎麼作呢?spring
- 配合@Qualifier註解指定bean的name
- 使用變量名稱做爲bean的id,@Autowired若是匹配到多個符合條件的對象後,會自動根據變量名稱作爲bean的id繼續匹配。咱們在4.2中採用的就是這種方式。
本文示例代碼已上傳至github,點個star
支持一下!
Spring Boot系列教程目錄
spring-boot-route(一)Controller接收參數的幾種方式sql
spring-boot-route(二)讀取配置文件的幾種方式數據庫
spring-boot-route(五)整合Swagger生成接口文檔
spring-boot-route(六)整合JApiDocs生成接口文檔
spring-boot-route(七)整合jdbcTemplate操做數據庫
spring-boot-route(八)整合mybatis操做數據庫
spring-boot-route(九)整合JPA操做數據庫
spring-boot-route(十一)數據庫配置信息加密
spring-boot-route(十二)整合redis作爲緩存
spring-boot-route(十三)整合RabbitMQ
spring-boot-route(十五)整合RocketMQ
spring-boot-route(十六)使用logback生產日誌文件
spring-boot-route(十七)使用aop記錄操做日誌
spring-boot-route(十八)spring-boot-adtuator監控應用
spring-boot-route(十九)spring-boot-admin監控服務
spring-boot-route(二十)Spring Task實現簡單定時任務
spring-boot-route(二十一)quartz實現動態定時任務
spring-boot-route(二十二)實現郵件發送功能
這個系列的文章都是工做中頻繁用到的知識,學完這個系列,應付平常開發綽綽有餘。若是還想了解其餘內容,掃面下方二維碼告訴我,我會進一步完善這個系列的文章!