我知道在独立应用程序中,我创建了一个应用程序上下文实例,这些实例又从conf文件创建bean。但是我在调度的servlet中看不到任何这样的代码。那么如何在Web应用程序中创建bean?
答案 0 :(得分:6)
ContextLoaderListener
创建ApplicationContext
(通过委托给ContextLoader
)并将其存储在servlet上下文中。
所以你必须在ContextLoaderListener
<listener>
是web.xml
然后,当然,ApplicationContext
(在这种情况下为WebApplicationContext
)会创建bean。