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

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

Introduction

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

Prototype

String HANDLER_EXCEPTION_RESOLVER_BEAN_NAME

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

Click Source Link

Document

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

Usage

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

@Bean(name = DispatcherServlet.HANDLER_EXCEPTION_RESOLVER_BEAN_NAME)
public CompositeHandlerExceptionResolver compositeHandlerExceptionResolver() {
    return new CompositeHandlerExceptionResolver();
}