启动springboot项目时,项目一启动就报错停止

在新建一个springboot项目时,项目刚启动就报错停止了。

启动springboot项目时,项目一启动就报错停止_第1张图片

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

Reason: Failed to determine a suitable driver class

主要原因时找不到 数据库的driver启动类,如果不需要使用数据库,那么就可以在启动时在@SpringBootApplication注解中排除数据库的默认加载

@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})

如果需要使用数据库,则可以在pom中引入数据库的依赖。

你可能感兴趣的:(java,#,spring,spring,boot,忽略数据库默认加载)