Spring注入值到静态变量
Posted XLimp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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注入值到静态变量的主要内容,如果未能解决你的问题,请参考以下文章
踩坑:Spring静态变量/构造函数注入失败(注入为null)问题的解决方案