91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎樣用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

漠河县| 白银市| 恩施市| 濮阳市| 铁岭市| 当涂县| 乐昌市| 清流县| 乌兰察布市| 遂川县| 莆田市| 同仁县| 延津县| 湟源县| 清新县| 阿城市| 泾阳县| 泰顺县| 泸州市| 霍邱县| 那坡县| 土默特左旗| 墨竹工卡县| 颍上县| 汝州市| 泸定县| 宝鸡市| 周至县| 榆中县| 宽城| 黄大仙区| 吉安县| 天峨县| 偃师市| 松江区| 科尔| 永福县| 石门县| 怀仁县| 台东县| 樟树市|