要在 MyBatis 中配置多个数据库,你可以按照以下步骤进行操作:
1. 创建多个数据源配置:对于每个数据库,你需要在 MyBatis 配置文件中创建一个数据源配置。可以通过 `<dataSource>` 元素来定义一个数据源,其中包含数据库连接信息,例如 URL、用户名和密码等。你可以为每个数据源设置不同的 id,以便在后续步骤中引用它们。
<!-- 数据库 1 的数据源配置 --><dataSource id="dataSource1" type="com.example.DataSourceType">
<!-- 数据库连接信息 -->
</dataSource>
<!-- 数据库 2 的数据源配置 -->
<dataSource id="dataSource2" type="com.example.DataSourceType">
<!-- 数据库连接信息 -->
</dataSource>
2. 创建多个 SqlSessionFactoryBean:为每个数据源创建一个 `SqlSessionFactoryBean`,并分别将相应的数据源配置注入到各个 `SqlSessionFactoryBean` 中。
@Configurationpublic class MyBatisConfig {
@Autowired
@Qualifier("dataSource1")
private DataSource dataSource1;
@Autowired
@Qualifier("dataSource2")
private DataSource dataSource2;
@Bean
public SqlSessionFactoryBean sqlSessionFactoryBean1() throws IOException {
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource1);
// 其他配置...
return sqlSessionFactoryBean;
}
@Bean
public SqlSessionFactoryBean sqlSessionFactoryBean2() throws IOException {
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource2);
// 其他配置...
return sqlSessionFactoryBean;
}
// 其他配置...
}
3. 创建多个 MapperScannerConfigurer:为每个 `SqlSessionFactoryBean` 创建一个 `MapperScannerConfigurer`,并分别将相应的 `SqlSessionFactoryBean` 注入到各个 `MapperScannerConfigurer` 中。
@Configurationpublic class MyBatisConfig {
// ...
@Bean
public MapperScannerConfigurer mapperScannerConfigurer1() {
MapperScannerConfigurer scannerConfigurer = new MapperScannerConfigurer();
scannerConfigurer.setBasePackage("com.example.mapper1");
scannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactoryBean1");
return scannerConfigurer;
}
@Bean
public MapperScannerConfigurer mapperScannerConfigurer2() {
MapperScannerConfigurer scannerConfigurer = new MapperScannerConfigurer();
scannerConfigurer.setBasePackage("com.example.mapper2");
scannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactoryBean2");
return scannerConfigurer;
}
// ...
}
4. 在 MyBatis 映射文件中使用不同的命名空间:在编写 SQL 映射文件时,需要使用不同的命名空间来区分不同的数据库。可以通过在映射文件中添加 `<mapper namespace="com.example.mapper1">` 或者 `<mapper namespace="com.example.mapper2">` 来指定命名空间。
<!-- 数据库 1 的映射文件 --><mapper namespace="com.example.mapper1">
<!-- SQL语句 -->
</mapper>
<!-- 数据库 2 的映射文件 -->
<mapper namespace="com.example.mapper2">
<!-- SQL语句 -->
</mapper>
通过以上步骤,你就可以在 MyBatis 中配置多个数据库,并且使用不同的数据源、SessionFactory 和命名空间来区分它们。