Example usage for org.springframework.web.servlet FrameworkServlet getServletContext

List of usage examples for org.springframework.web.servlet FrameworkServlet getServletContext

Introduction

In this page you can find the example usage for org.springframework.web.servlet FrameworkServlet getServletContext.

Prototype

public ServletContext getServletContext() 

Source Link

Document

Returns a reference to the ServletContext in which this servlet is running.

Usage

From source file:org.impalaframework.web.spring.helper.ImpalaServletUtils.java

public static void publishWebApplicationContext(WebApplicationContext wac, FrameworkServlet servlet) {

    String attrName = servlet.getServletContextAttributeName();
    servlet.getServletContext().setAttribute(attrName, wac);

    if (logger.isDebugEnabled()) {
        logger.debug("Published WebApplicationContext of servlet '" + servlet.getServletName()
                + "' as ServletContext attribute with name [" + attrName + "]");
    }/*w  w w  .j a  va2s . co  m*/
}

From source file:org.impalaframework.web.spring.helper.ImpalaServletUtils.java

public static void unpublishWebApplicationContext(FrameworkServlet servlet) {

    String attrName = servlet.getServletContextAttributeName();
    servlet.getServletContext().removeAttribute(attrName);

    if (logger.isDebugEnabled()) {
        logger.debug("Removed WebApplicationContext of servlet '" + servlet.getServletName()
                + "' as ServletContext attribute with name [" + attrName + "]");
    }//from   w w w .j  a va2  s  . c om
}