美文网首页
配置文件中定义的值,在类中作为静态变量使用

配置文件中定义的值,在类中作为静态变量使用

作者: 墨色尘埃 | 来源:发表于2019-07-22 10:22 被阅读0次
        private static String driverUrl;
    
        public static String password;
    
    
        @Value("${config.driverUrl}")
        public void setDriverUrl(String driverUrl) {
            Utils.driverUrl = driverUrl;
        }
    
        @Value("${config.password}")
        public void setPassword(String password) {
            Utils.password = password;
        }
    

    application.yml配置文件中的值

    image.png

    相关文章

      网友评论

          本文标题:配置文件中定义的值,在类中作为静态变量使用

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