Springboot 获取.yml中自定义参数

Posted sunfee

tags:

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

根据不同环境获取不同参数,放在配置文件便于更改!

 回调appId(测试用)

通过以下方式实现:

1,通过@ConfigurationProperties(prefix = "weixinAndAPP")注解,代码如下

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
 * @ClassName:  TestRY
 * @Description:TODO(配置类)
 * @author: sunfee
 * @date: 2019年12月09日
 */
@Component
@ConfigurationProperties(prefix = "weixinAndAPP")
public class TestRY {

    private String appId;

    private String hotline;

    public String getAppId() {
        return appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getHotline() {
        return hotline;
    }

    public void setHotline(String hotline) {
        this.hotline = hotline;
    }
}

在方法中调用,只需要注入资源就可: 

@Autowired 

private TestRY testRY;

testRY.getAppId();                testRY.getHotline();

 

方法直接调用赋值即可。

 

 

 

 

 

 

 

以上是关于Springboot 获取.yml中自定义参数的主要内容,如果未能解决你的问题,请参考以下文章

java SpringBoot中自定义参数校验

SpringBoot获取配置文件的自定义参数

SpringBoot中自定义properties文件配置参数并带有输入提示

SpringBoot整合freemarker中自定义标签获取字典表的数据

spring boot中自定义验证的参数化junit测试

springBoot 1.x和2.x 获取application.yml参数的方法