Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine suitable jdbc url
时间: 2023-08-27 12:18:34 浏览: 164
WEBLOGIC_配置_JDBC_数据源
这个错误通常是由于在Spring Boot应用程序中没有正确配置数据源引起的。您需要在应用程序的配置文件中指定正确的数据库连接URL、用户名和密码等信息。如果您使用的是嵌入式数据库,比如H2,则需要在配置文件中指定正确的嵌入式数据库URL。如果您使用的是外部数据库,则需要确保您的应用程序能够访问该数据库,并且已经正确地配置了连接URL、用户名和密码等信息。您可以在Spring Boot的官方文档中找到更详细的配置说明。
阅读全文