码迷,mamicode.com
首页 > 编程语言 > 详细

Spring注入值到静态变量

时间:2019-03-14 16:52:50      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:需要   nbsp   com   了解   name   god   @Value   none   spring注入   

Spring不允许将值注入静态变量,例如:

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class GlobalValue {

    @Value("${mongodb.db}")
    public static String DATABASE;


}

如果打印GlobalValue.DATABASE,将显示null。

GlobalValue.DATABASE = null

解决办法

为了解决此类问题,需要创建一个“none static setter”来为静态变量赋予注入的值。 例如 :

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class GlobalValue {

    public static String DATABASE;

    @Value("${mongodb.db}")
    public void setDatabase(String db) {
        DATABASE = db;
    }

}

输出

GlobalValue.DATABASE = "mongodb database name"

 

Spring注入值到静态变量

标签:需要   nbsp   com   了解   name   god   @Value   none   spring注入   

原文地址:https://www.cnblogs.com/xielei/p/10531076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!