猿问

Spring boot 无法从我的文件系统中获取配置文件

我正在尝试在 Spring Boot 和 Spring Cloud 上构建一个示例应用程序。我已经在位于我桌面的config.properties属性文件中编写了我的数据库和休眠配置,我希望我的 Spring Boot 能够使用这个配置。

我的项目有 3 个模块

  • 应用程序接口

  • 数据层

  • 服务层

这是我在API的application.property文件中提到的代码

spring.profiles.active=本机 spring.cloud.config.server.native.searchLocation=C:/Users/DEV/Desktop/configuration/config.properties

并且DataLayer和ServiceLayer的属性文件为空

但是当我运行 API 时,我收到以下错误

***************************

APPLICATION FAILED TO START

***************************


Description:


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



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

任何人都可以帮助我解决这个错误。

提前致谢。


红颜莎娜
浏览 199回答 2
2回答
随时随地看视频慕课网APP

相关分类

Java
我要回答