我很想知道,因为我遇到了ApplicationScoped
托管bean和带有
static {
//some code that accesses an application bean
}
其中扩展ApplicationScoped
bean
我在Tomcat 7中使用JSF 2.1.17。
答案 0 :(得分:0)
这首先是糟糕的设计。应用程序作用域bean不是静态的,它们只是应用程序作用域。
将其中一个作为另一个的@ManagedProperty
注入,然后在@PostConstruct
中执行该作业。