Java中如何获取Spring中配置的bean

2024年11月28日 17:42
有1个网友回答
网友(1):

Spring 文件中将bean注入到想要获得该bean的类中。

或者:
ApplicationContext app=WebApplicationContextUtils.getWebApplicationContext(event
.getServletContext());

其中event 是ServletContextEvent 可以在listener中找到