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

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

Introduction

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

Prototype

@Override
@Nullable
public String getServletName() 

Source Link

Document

Overridden method that simply returns null when no ServletConfig set yet.

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 + "]");
    }//from   w  w w  . ja va2s .  com
}

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 + "]");
    }//  w  w  w  .j a  va2 s  . co  m
}