spring-boot配置文件使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot配置文件使用相关的知识,希望对你有一定的参考价值。

配置文件格式两种application.properties和application.yml

.yml配置的使用

1、使用@Value("${配置文件中的属性名}")注解注入配置内容

2、在配置中引用配置

  ${配置文件中的属性名}

3、配置注入到实体类注解@ConfigurationProperties(prefix = "girl")

   同时为了自动装配,需要@Component

4、多环境配置

   开发环境和生产环境配置切换 spring:  profiles: active: xxx

   启动时加配置文件参数 jave -jar .... --spring.profile.active=xxxx

 


以上是关于spring-boot配置文件使用的主要内容,如果未能解决你的问题,请参考以下文章

日常错误spring-boot配置文件读取不到

Spring-Boot 仅在一个配置文件中执行 data.sql

spring-boot多环境配置文件

spring-boot -配置文件值注入

spring-boot -配置文件值注入

spring-boot中logback日志配置