美文网首页
获取配置文件信息

获取配置文件信息

作者: 猴子扔飞镖 | 来源:发表于2018-12-26 12:02 被阅读0次

    yml 文件中读取值

    @Component
    @ConfigurationProperties(prefix = "appacc.paywx")
    public class PayConfig {
    public static String orderquery;
    public static String getOrderquery() {
    return orderquery;
    }

    public static void setOrderquery(String orderquery) {
        PayConfig.orderquery = orderquery;
    }
    

    }

    app*.yml
    appacc:
    paywx:
    orderquery: "http"

    相关文章

      网友评论

          本文标题:获取配置文件信息

          本文链接:https://www.haomeiwen.com/subject/xarflqtx.html