簡體   English   中英

如何在ServletContextListener中獲取Spring ApplicationContext?

[英]How to get spring ApplicationContext in ServletContextListener?

在服務類中,可以通過這種方式獲取spring ApplicationContext

ApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());

由於無法在其中訪問getServletContext()方法,如何在ServletContextListener訪問ApplicationContext

contextInitialized

public void contextInitialized(final ServletContextEvent event)
{
    ApplicationContext appCtx = WebApplicationContextUtils.getWebApplicationContext(event.getServletContext());
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM