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).
时间: 2023-10-12 15:05:32 浏览: 110
dcc.zip_The Target_coprocessor_dcc_embeddedice
这是一个来自 Spring Boot 的提示信息,它表示在启动应用程序时,没有找到需要的数据库依赖,可能是因为您没有将它们添加到项目的 classpath 中。具体来说,它建议您添加 H2、HSQL 或 Derby 等嵌入式数据库的依赖,以便应用程序可以正确地启动并正常运行。如果您已经添加了这些依赖,但仍然收到此消息,请确保您已经在应用程序中正确地配置了数据库连接,并且在启动应用程序时指定了正确的激活配置文件。您可以使用 `--spring.profiles.active=<profile>` 参数来指定要激活的配置文件,其中 `<profile>` 是您要激活的配置文件的名称。
阅读全文