springboot 引入子模块配置文件并覆盖
时间: 2023-03-25 10:00:47 浏览: 255
springboot 配置相关
可以通过在父模块的application.properties或application.yml中指定子模块的配置文件路径来引入子模块的配置文件。例如:
在父模块的application.yml中添加以下配置:
```
spring:
profiles:
include: child-module
```
然后在子模块中创建一个名为application-child-module.yml或application-child-module.properties的配置文件,并在其中定义需要覆盖的配置项。
这样,在启动父模块时,Spring Boot会自动加载子模块的配置文件,并覆盖父模块中相同的配置项。
阅读全文