gpt4 book ai didi

java - 如何在ServletContextListener中获取spring ApplicationContext?

转载 作者:行者123 更新时间:2023-11-30 03:08:12 32 4
gpt4 key购买 nike

在servet类中,可以通过这种方式获取spring ApplicationContext

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

由于 getServletContext() 方法无法访问,如何在 ServletContextListener 中访问 ApplicationContext

最佳答案

contextInitialized中:

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

关于java - 如何在ServletContextListener中获取spring ApplicationContext?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34218008/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com