无法自动配置DataSource:未指定“spring.datasource.url”

我已经使用Web,MongoDB和JPA依赖项从SPRING INITIALIZR创建了一个基本的Spring启动应用程序。

当我尝试运行spring boot应用程序时,我收到以下exception:

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2018-03-25 16:27:02.807 ERROR 16256 --- [ restartedMain] osbdLoggingFailureAnalysisReporter : *************************** 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 situation: If you want an embedded database like H2, HSQL or Derby, please add it in the Classpath. If you have database settings to be loaded from a particular profile you may need to activate it since no profiles were currently active. 

在application.properties文件中,我有以下配置:

 server.port=8081 spring.data.mongodb.database=TestDatabase spring.data.mongodb.host=localhost spring.data.mongodb.port=27017 

我使用的版本: Spring:5.0.4,MongoDB:3.6,Spring Boot:2.0

由于您在pom.xml文件中添加了mongodb和data-jpa依赖项,因此它创建了一个依赖项冲突,如下所示

  org.springframework.boot spring-boot-starter-data-jpa   org.springframework.boot spring-boot-starter-data-mongodb  

尝试删除jpa依赖项并运行。 它应该工作正常。

转到application.properties所在的资源文件夹,更新下面的代码。

 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration 

在资源文件夹下的application.properties文件中添加以下行,然后重新启动应用程序。

 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration 

似乎缺少MongoDB驱动程序。 在pom.xml包含以下依赖项:

  org.springframework.boot spring-boot-starter-data-mongodb  

基于数据的依赖性试图找到尚未创建的实体,根据数据对依赖项进行注释并再次运行应用程序。

     

你添加依赖,如mongodb,web,jpa重新删除它/清除它

 `  org.springframework.boot spring-boot-starter-data-mongodb   org.springframework.boot spring-boot-starter-web `