spring boot 配置注入

Posted Badwood-涂鸦

tags:

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

  spring boot配置注入有变量方式和类方式(参见:《spring boot 自定义配置属性的各种方式》),变量中又要注意静态变量的注入(参见:spring boot 给静态变量注入值》)。

  静态变量注入需要注意:@Value("${platform}")与set函数必须连着写,不能分开。另外记得在类前加@Component

注入代码:

private static String platform;

@Value("${platform}") public void setPlatform(String cplatform) {   platform = cplatform; }

配置文件内容:

platform=http://www.baidu.com/

 

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

Spring boot 工具类静态属性注入及多环境配置

Spring boot将配置属性注入到bean类中

Spring Boot Test,在配置中注入值

spring boot 自定义druid数据源,如何注入配置

spring boot 自定义druid数据源,如何注入配置

spring-boot -配置文件值注入