servlet中手動獲取spring的bean

yf.z發表於2014-10-28

無論是通過註解方式還是xml方式配置的bean,使用一下方式獲取

WebApplicationContext webApplicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());
UserAO userAO = (UserAO )webApplicationContext.getBean("userAO");


相關文章