최근 프로젝트 요구로 인해 프로그램에서 동시에 다른 데이터베이스에 액세스해야 합니다. 이전에는 springboot 주석을 사용하여 코드를 작성하는 것이 정말 편리하고 빨랐지만, 자신의 사용을 용이하게 하기 위해 일부를 변경해야 하는 경우 약간 귀찮고 어디서부터 시작해야 할지 모르겠습니다. 이것을 적어보세요.
첫 번째는 pom.xml인데, 이는 일반적이므로 여기에 게시되지 않습니다.
두 번째는 application.properties 구성입니다. 환경이 다르기 때문에 작성자는 두 개의 새로운 application-dev.properties 및 application-pro.properties 구성 파일을 만들었습니다.
application.properties: 현재 사용되는 환경의 구성을 지정합니다.
spring.profiles.active=dev
application-dev.properties的配置(application-pro.properties类似dev的配置)
#datasource1 spring.datasource.username=** spring.datasource.password=***** spring.datasource.jdbc-url=jdbc:mysql://*************** useUnicode=true&characterEncoding=utf-8&useSSL=false spring.datasource.driver-class-name=com.mysql.jdbc.Driver #datasource2 spring.datasource.ds1.username=*** spring.datasource.ds1.password=****** spring.datasource.ds1.jdbc-url=jdbc:mysql://*************** useUnicode=true&characterEncoding=utf-8&useSSL=false spring.datasource.ds1.driver-class-name=com.mysql.jdbc.Drive
다른 데이터 소스의 MyBatis(Config1)
@Configuration @MapperScan(basePackages = "com.pet.petgame2.mapper.dao", sqlSessionFactoryRef = "petgame2SessionFactory") public class Config1 { @Bean(name = "petgame2") @ConfigurationProperties(prefix = "spring.datasource") @Primary public DataSource dataSource(){ return DataSourceBuilder.create().build(); } @Bean(name = "petgame2SessionFactory") @Primary public SqlSessionFactory sessionFactory(@Qualifier("petgame2") DataSource dataSource) throws Exception{ SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean(); factoryBean.setDataSource(dataSource); factoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:Mapper/pet2Mapper/*.xml")); return factoryBean.getObject(); } @Bean(name = "petgame2TransactionManager") @Primary public DataSourceTransactionManager transactionManager(@Qualifier("petgame2") DataSource dataSource){ return new DataSourceTransactionManager(dataSource); } }
다른 데이터 소스 MyBatis (Config2)
@Configuration @MapperScan(basePackages = "com.pet.petgame2.mapper.dao2", sqlSessionFactoryRef = "petgamesqlSessionFactory") public class Config2 { @Bean(name = "petgame") @ConfigurationProperties(prefix = "spring.datasource.ds1") public DataSource dataSource(){ return DataSourceBuilder.create().build(); } @Bean(name = "petgamesqlSessionFactory") public SqlSessionFactory sessionFactory(@Qualifier("petgame") DataSource dataSource) throws Exception{ SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean(); factoryBean.setDataSource(dataSource); factoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:Mapper/petMapper/*.xml")); return factoryBean.getObject(); } @Bean(name = "petgameTransactionManager") public DataSourceTransactionManager transactionManager(@Qualifier("petgame") DataSource dataSource){ return new DataSourceTransactionManager(dataSource); } }
@MapperScan 주석은 매퍼 인터페이스 파일을 자동으로 스캔하고, FactoryBean.setMapperLocations는 매퍼 인터페이스 파일에 해당하는 Mapper.XML 파일을 스캔합니다. 잘못된 경로를 쓰지 않도록 주의하세요. 이 둘. @Primary는 기본 데이터베이스 링크 구성을 설정하며, 데이터 소스 중 하나를 기본값으로 지정해야 합니다.
*참고: springboot2.0과 함께 제공되는 Hikari를 연결 풀로 사용하는 경우 속성에서
spring.datasource.url改为spring.datasource.jdbc-url
에 주의하거나 다음과 같이 DataSourceProperties에 대한 구성을 #🎜 🎜 #
@Bean(name = "petgame2DataSourceProperties") @Qualifier("petgame2DataSourceProperties") @ConfigurationProperties(prefix = "spring.datasource") @Primary public DataSourceProperties properties(){ return new DataSourceProperties(); } @Bean(name = "petgame2") @ConfigurationProperties(prefix = "spring.datasource") @Primary public DataSource dataSource(){ // return DataSourceBuilder.create().build(); return properties().initializeDataSourceBuilder().build(); }
위 내용은 이중 데이터 소스 구축을 위한 springBoot2.0의 JAVA 개발의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!