前面咱們已經介紹了三種方式來操做數據庫,在實際開發中,每每會出現一個服務鏈接多個數據庫的需求,這時候就須要在項目中進行靈活切換數據源來完成多個數據庫操做。這一章中,咱們使用jdbcTemplate來學習多數據源的配置。java
咱們新建兩個庫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='學生表'
<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>
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(); } }
@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); } }
不指定使用哪一個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}); } }
@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
star
支持一下!spring-boot-route(一)Controller接收參數的幾種方式sql
spring-boot-route(二)讀取配置文件的幾種方式數據庫
spring-boot-route(三)實現多文件上傳segmentfault
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(二十二)實現郵件發送功能
這個系列的文章都是工做中頻繁用到的知識,學完這個系列,應付平常開發綽綽有餘。若是還想了解其餘內容,掃面下方二維碼告訴我,我會進一步完善這個系列的文章!