Example usage for org.springframework.web.servlet DispatcherServlet HANDLER_ADAPTER_BEAN_NAME

List of usage examples for org.springframework.web.servlet DispatcherServlet HANDLER_ADAPTER_BEAN_NAME

Introduction

In this page you can find the example usage for org.springframework.web.servlet DispatcherServlet HANDLER_ADAPTER_BEAN_NAME.

Prototype

String HANDLER_ADAPTER_BEAN_NAME

To view the source code for org.springframework.web.servlet DispatcherServlet HANDLER_ADAPTER_BEAN_NAME.

Click Source Link

Document

Well-known name for the HandlerAdapter object in the bean factory for this namespace.

Usage

From source file:org.springframework.boot.actuate.autoconfigure.EndpointWebMvcChildContextConfiguration.java

@Bean(name = DispatcherServlet.HANDLER_ADAPTER_BEAN_NAME)
public CompositeHandlerAdapter compositeHandlerAdapter() {
    return new CompositeHandlerAdapter();
}