10.30 springMVC 上下文


//spring的上下文
WebApplicationContext ac1 =   WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
//springMVC的上下文
WebApplicationContext ac2 = RequestContextUtils.getWebApplicationContext(request);
springMVC的上下文包含了spring的上下文

你可能感兴趣的:(10.30 springMVC 上下文)