怎么在SpringBoot中利用nacos对数据源进行动态刷新?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
这里为什么要重写这个类:因为DruidDataSource数据源在初始化后,就不允许再重新设置数据库的url和userName
public void setUrl(String jdbcUrl) {
if (StringUtils.equals(this.jdbcUrl, jdbcUrl)) {
return;
}
// 重写的时候,需要将这个判断注释掉,否则会报错
// if (inited) {
// throw new UnsupportedOperationException();
// }
if (jdbcUrl != null) {
jdbcUrl = jdbcUrl.trim();
}
this.jdbcUrl = jdbcUrl;
// if (jdbcUrl.startsWith(ConfigFilter.URL_PREFIX)) {
// this.filters.add(new ConfigFilter());
// }
}
public void setUsername(String username) {
if (StringUtils.equals(this.username, username)) {
return;
}
// 重写的时候,需要将这个判断注释掉,否则会报错
// if (inited) {
// throw new UnsupportedOperationException();
// }
this.username = username;
}
重写的时候包路径不能变,只有这样类加载的时候才会优先加载重写后的类
package com.mp.demo.config;
import com.alibaba.druid.pool.DruidDataSource;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Slf4j
@Configuration
@RefreshScope
@Data
public class DruidConfiguration
{
@Value("${spring.datasource.url}")
private String dbUrl;
@Value("${spring.datasource.username}")
private String username;
@Value("${spring.datasource.password}")
private String password;
@Value("${spring.datasource.driver-class-name}")
private String driverClassName;
@Bean
@RefreshScope
public DruidDataSource dataSource()
{
DruidDataSource datasource = new DruidDataSource();
datasource.setUrl(this.dbUrl);
datasource.setUsername(username);
datasource.setPassword(password);
datasource.setDriverClassName(driverClassName);
return datasource;
}
}
这里要注意增加@RefreshScope
注解
@GetMapping("/refresh")
public String refresh() throws SQLException
{
DruidDataSource master = SpringUtils.getBean("dataSource");
master.setUrl(druidConfiguration.getDbUrl());
master.setUsername(druidConfiguration.getUsername());
master.setPassword(druidConfiguration.getPassword());
master.setDriverClassName(druidConfiguration.getDriverClassName());
master.restart();
return userName + "<>" + jdbcUrl+"----------"+druidConfiguration.getDbUrl();
}
看完上述内容,你们掌握怎么在SpringBoot中利用nacos对数据源进行动态刷新的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。