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

2024-11-28 19:24:12
推荐回答(1个)
回答1:

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

希望可以帮到你