本文介绍了是否可以将 CDI Bean 注入 Java EE 6 中的静态变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这可能吗:
@Inject
@MessageTransport(MessageTransportType.SMS)
public static MessageSender messageSender;
当我试图访问这个静态变量时,我得到了一个 NPE.所以我想知道,如果一般情况下不可能.
I'm getting a NPE when i'm trying to access this static variable. So I wonder, if it is not possible in general.
提前致谢.
推荐答案
一般不做,因为静态变量不能有作用域,即它只是整个类的一个(读取应用程序),因此没有意义因为每个实例都会尝试根据当前范围将其设置为新值.
Not done in general because a static variable cannot have a scope, i.e. it's just one for the whole class (read application) and therefore it doesn't make sense since every instance would try to set it to a new value based on the current scope.
这篇关于是否可以将 CDI Bean 注入 Java EE 6 中的静态变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!