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

溫馨提示×

溫馨提示×

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

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

怎樣用springBoot 排除數據庫啟動方式

發布時間:2021-09-10 11:41:29 來源:億速云 閱讀:242 作者:柒染 欄目:開發技術

本篇文章為大家展示了怎樣用springBoot 排除數據庫啟動方式,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

springBoot 排除數據庫啟動

1. 場景

在家里運行項目,運行springBoot的時候報數據庫連接不了,公司的數據庫家里不能連接。

2. 配置

2.1 保留之前的properties 配置,不刪除;

怎樣用springBoot 排除數據庫啟動方式

2.2 在啟動類中添加

exclude = {DataSourceAutoConfiguration.class}
package cn.cncommdata.file;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.cloud.openfeign.EnableFeignClients;
/**
 * 啟動類
 */
@SpringBootApplication(scanBasePackages = "cn.cncommdata", exclude = {DataSourceAutoConfiguration.class})
@EnableFeignClients(basePackages = {"cn.cncommdata", "cc.iooc"})
@MapperScan("cn.cncommdata.file.dao")
public class FileApplication {
    /**
     * main
     *
     * @param args args
     */
    public static void main(String[] args) {
        SpringApplication.run(FileApplication.class, args);
    }
    /**
     * 沒什么用,就是不想讓checkstyle報錯
     */
    public void init() {
    }
}

Springboot不經過數據庫直接啟動

問題

之前開發工程中,有一個單獨注冊在nacos上服務的項目(不需要訪問數據庫)需要啟動,但是啟動會報錯。

錯誤

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method ‘dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourcePropertiesDataSourceBeanCreationException: Failed to determine a suitable driver class

原因

SpringBoot項目默認會訪問數據庫,因為此時沒有寫數據庫連接,所以出現這個錯誤。

解決

在啟動類上加上一個注解,在容器加載的時候默認排除數據庫連接即可。

具體如圖所示:

怎樣用springBoot 排除數據庫啟動方式

上述內容就是怎樣用springBoot 排除數據庫啟動方式,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

紫金县| 侯马市| 塔城市| 北川| 清苑县| 焦作市| 剑阁县| 广元市| 上饶市| 睢宁县| 穆棱市| 曲沃县| 庄河市| 中超| 留坝县| 开封市| 三明市| 灵石县| 林周县| 周宁县| 牙克石市| 额敏县| 连城县| 黄大仙区| 克山县| 江达县| 大石桥市| 定结县| 桦川县| 枞阳县| 武冈市| 崇阳县| 垫江县| 宜兰县| 城市| 陕西省| 彰化市| 封开县| 沁阳市| 松溪县| 福贡县|