Example usage for org.springframework.web.servlet.support AbstractDispatcherServletInitializer DEFAULT_SERVLET_NAME

List of usage examples for org.springframework.web.servlet.support AbstractDispatcherServletInitializer DEFAULT_SERVLET_NAME

Introduction

In this page you can find the example usage for org.springframework.web.servlet.support AbstractDispatcherServletInitializer DEFAULT_SERVLET_NAME.

Prototype

String DEFAULT_SERVLET_NAME

To view the source code for org.springframework.web.servlet.support AbstractDispatcherServletInitializer DEFAULT_SERVLET_NAME.

Click Source Link

Document

The default servlet name.

Usage

From source file:com.gopivotal.cla.security.SecurityInitializer.java

@Override
protected String getDispatcherWebApplicationContextSuffix() {
    return AbstractDispatcherServletInitializer.DEFAULT_SERVLET_NAME;
}

From source file:com.jl.crm.web.CrmSecurityApplicationInitializer.java

/**
 * Instruct Spring Security to use the {@link DispatcherServlet}'s {@link WebApplicationContext} to find the
 * springSecurityFilterChain./*w  ww .j a  va2s. c om*/
 */
@Override
protected String getDispatcherWebApplicationContextSuffix() {
    return AbstractDispatcherServletInitializer.DEFAULT_SERVLET_NAME;
}