SpringBoot專案取消資料庫配置

x號開發者發表於2019-01-01

1. 錯誤
springboot專案啟動時,如果沒有配置資料庫配置,啟動時會丟擲如下異常。

Description:

Cannot determine embedded database driver class for database type NONE

Action:

If you want an embedded database please put a supported one on the classpath.
If you have database settings to be loaded from a particular profile you may
need to active it (no profiles are currently active).

2. 原因
springboot會自動注入資料來源,而你卻沒有配,所以他就丟擲該異常。

3. 如何不配
如果你只是簡單的想建個專案,並不需要資料庫支援,那麼你可以讓他不去注入資料來源。

// 一般你啟動springboot專案,都會寫一個有@SpringBootApplication註解的類
// 你在這個註解中新增exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class}
// 即可無資料庫執行
// 如下

@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class})
---------------------
作者:簡簡單單OnlineZuozuo
來源:CSDN
原文:https://blog.csdn.net/qq_15071263/article/details/78458890
版權宣告:本文為博主原創文章,轉載請附上博文連結!

相關文章