怎么在servlet里面获取spring通过注解方式注入的service bean

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

//获取ApplicationContext
ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(servletContext);
//获取bean
context.getbean("xxx");

希望可以帮到你