在Controller中通过非注解的方式获取spring和springMVC上下文的方式

在Controller中需要有参数

如:testController(HttpServletRequest request)

//Spring上下文
        WebApplicationContext ac1=     WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
//springMVC上下文
        WebApplicationContext ac2 = RequestContextUtils.getWebApplicationContext(request);

你可能感兴趣的:(在Controller中通过非注解的方式获取spring和springMVC上下文的方式)