中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在SpringBoot中利用nacos對數據源進行動態刷新

發布時間:2020-12-16 14:19:51 來源:億速云 閱讀:2478 作者:Leah 欄目:開發技術

怎么在SpringBoot中利用nacos對數據源進行動態刷新?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

第一步:重寫DruidAbstractDataSource類

這里為什么要重寫這個類:因為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;
  }

重寫的時候包路徑不能變,只有這樣類加載的時候才會優先加載重寫后的類

怎么在SpringBoot中利用nacos對數據源進行動態刷新

第二步:配置動態獲取nacos配置信息

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對數據源進行動態刷新的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

牟定县| 抚州市| 郧西县| 新疆| 渭源县| 子长县| 龙川县| 龙泉市| 任丘市| 同心县| 太湖县| 西林县| 徐汇区| 翁源县| 大庆市| 宾阳县| 白玉县| 车险| 彩票| 利辛县| 报价| 泉州市| 红安县| 武汉市| 九龙县| 淮滨县| 清涧县| 肇庆市| 盱眙县| 宁夏| 夏河县| 四川省| 大厂| 安西县| 沭阳县| 蒲江县| 额敏县| 宿州市| 博罗县| 名山县| 商洛市|