springboot v2.0.3版本多数据源配置方法
本篇分享的是springboot多数据源配置,在从springboot v1.5版本升级到v2.0.3时,发现之前写的多数据源的方式不可用了,捕获错误信息如:
异常:jdbcUrl is required with driverClassName.
先来说下之前的多数据源配置如:
spring: datasource: url: jdbc:sqlserver://192.168.122.111;DatabaseName=flight username: sa password: 1234.abcd driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver seconddatasource: url: jdbc:sqlserver://192.168.122.111;DatabaseName=flight2 username: sa password: 1234.abcd driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
配置了两个数据库,在原来默认的datasource节点下面增加了seconddatasource节点的配置,然后主要的代码如:
@Primary @Bean @ConfigurationProperties(prefix = "spring.seconddatasource") public DataSource dataSource() { return DataSourceBuilder.create().build(); } @Bean(name = "secodDataSource") @ConfigurationProperties(prefix = "spring.seconddatasource") public DataSource secodDataSource() { return DataSourceBuilder.create().build(); } @Primary @Bean public JdbcTemplate jdbcTemplate(DataSource dataSource) { return new JdbcTemplate(dataSource); } @Bean(name = "secondJdbcTemplate") public JdbcTemplate secondJdbcTemplate(@Qualifier(value = "secodDataSource") DataSource dataSource) { return new JdbcTemplate(dataSource); }
来创建两个不同的jdbctemplate,到这里老版本这样干没有啥问题,能够正常的得到数据;而升级未V2.03版本的时候提示:异常:jdbcUrl is required with driverClassName.
很显然配置节点不能使用导致的,配置节点名字变了,要解决这问题这里使用了托管DataSourceProperties的方式来对数据配置从新赋值,具体代码如:
@Bean @Primary @ConfigurationProperties(prefix = "spring.datasource") public DataSourceProperties dataSourceProperties(){ return new DataSourceProperties(); } @Bean("secondProperties") @ConfigurationProperties(prefix = "spring.seconddatasource") public DataSourceProperties secondProperties(){ return new DataSourceProperties(); } @Primary @Bean public DataSource dataSource(DataSourceProperties dataSourceProperties) { return dataSourceProperties.initializeDataSourceBuilder().build(); } @Bean(name = "secodDataSource") public DataSource secodDataSource(@Qualifier(value = "secondProperties") DataSourceProperties dataSourceProperties) { return dataSourceProperties.initializeDataSourceBuilder().build(); }
能够看出多了一级DataSourceProperties的创建,此时能够运行出结果如:
除了编码的这种方式也可以采用上面说的既然是配置找不到,那配置肯定是改名了,根据错误提示我们不放把url改名未jdbc-url,具体如下:
此刻我们再来运行,同样的也能出来数据;两种方式处理v2.03版本数据源问题:
•编码配置DataSourceProperties
•通过配置jdbc-url
通过数据源配置节点名变动的问题,引发了springboot在升级迭代的过程中一些细微的变动,这或许会给我们在学习和升级过程中造成麻烦,所以官网每次升级的内容说明还是有必要看下的。
总结
以上所述是小编给大家介绍的springboot v2.0.3版本多数据源配置方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!