application.properties中自定义属性的使用

Posted mangogolee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了application.properties中自定义属性的使用相关的知识,希望对你有一定的参考价值。

在application.properties中写入如下自定义属性:

com.mangogo.test1 = "Hello"
com.mangogo.test2 = "World"

使用方法1:直接绑定在属性上

@RestController
public class Chapter2Test {
@Value(value = "${com.mangogo.test1}")
private String test1 ;
@Value(value = "${com.mangogo.test2}")
private String test2 ;

@RequestMapping("/2")
public String index(){
return test1+test2;
}
}

但是这样使用比较烦,可以直接绑定在类上,使用方法2:

@RestController
public class Chapter2Test {
@Value(value = "${com.mangogo.test1}")
private String test1 ;
@Value(value = "${com.mangogo.test2}")
private String test2 ;

@RequestMapping("/2")
public String index(){
return test1+test2;
}
}

然后注入这个Bean,就可以达到想要的效果。

@RestController
public class Chapter2Controller {
@Autowired
private ConfigBean configBean;

@RequestMapping("/")
public String index(){
return configBean.getTest1()+configBean.getTest2();
}
}

 如果有多个properties文件,那么1.属性名不能重复,否则会默认读取第一个properties文件。2.需要用@ProppertySource注解标明文件路径。

@Getter
@Setter
@PropertySource("classpath:test.properties")
@ConfigurationProperties(prefix = "com.mangogo2")
@Component
public class ConfigBean {
    private String test1;
    private String test2;
}

 

以上是关于application.properties中自定义属性的使用的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot:Jackson 不会从“application.properties”中获取配置

无法在 Spring Boot 应用程序中读取 application.properties

Spring Boot 配置文件: application.properties和application.yaml

SpringBoot 中 application.properties 中的 @Value 始终为 null

用于 Spring Boot 的 application.yml 与 application.properties

未找到 Application.properties