在Spring Boot中配置雙數據源,可以使用多個數據源的配置,并為每個數據源創建對應的Bean。
以下是配置雙數據源的步驟:
1. 在`application.properties`或`application.yml`文件中配置兩個數據源的連接信息,分別使用不同的前綴,例如:
```properties
# 第一個數據源
spring.datasource.url=jdbc:mysql://localhost:3306/db1
spring.datasource.username=user1
spring.datasource.password=pass1
# 第二個數據源
spring.datasource.secondary.url=jdbc:mysql://localhost:3306/db2
spring.datasource.secondary.username=user2
spring.datasource.secondary.password=pass2
```
2. 創建兩個數據源的配置類,分別繼承`DataSourceProperties`類,并使用`@ConfigurationProperties`注解指定前綴。例如:
```java
@Configuration
@ConfigurationProperties(prefix = "spring.datasource")
public class DataSource1Config extends DataSourceProperties {
@Bean
@Primary
public DataSource dataSource1() {
return createDataSource();
}
}
@Configuration
@ConfigurationProperties(prefix = "spring.datasource.secondary")
public class DataSource2Config extends DataSourceProperties {
@Bean
public DataSource dataSource2() {
return createDataSource();
}
}
```
3. 在主配置類中使用`@EnableTransactionManagement`注解啟用事務管理,并使用`@MapperScan`注解指定MyBatis的Mapper接口所在的包。例如:
```java
@SpringBootApplication
@EnableTransactionManagement
@MapperScan(basePackages = "com.example.mapper")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
4. 在需要使用數據源的地方,使用`@Qualifier`注解指定使用的數據源。例如:
```java
@Service
public class UserService {
@Autowired
@Qualifier("dataSource1")
private DataSource dataSource1;
@Autowired
@Qualifier("dataSource2")
private DataSource dataSource2;
// 使用 dataSource1 或 dataSource2 進行操作
}
```
通過以上步驟,就可以配置并使用兩個數據源了。