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"
原文地址:https://www.cnblogs.com/xielei/p/10531076.html
时间: 2024-11-09 09:52:12