SpringCloud启动报Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified and no

启动一个微服务的时候报如下错:
 

***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified and no embedded datasource could be auto-configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
    If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
    If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).


Process finished with exit code 1

原因是我修改了实体类配置,然后没有配置数据源,所以启动的时候初始化数据源失败了,导致启动失败。

经过查阅资料,解决方法是在启动类加上exclude = {DataSourceAutoConfiguration.class}

发布了93 篇原创文章 · 获赞 93 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/qq_41937388/article/details/103816862