Package org.springframework.boot.actuate.endpoint.mvc

Examples of org.springframework.boot.actuate.endpoint.mvc.ManagementErrorEndpoint


   * because of the DispatcherServlet having had it's HandlerMapping explicitly
   * disabled. So we expose the same feature but only for machine endpoints.
   */
  @Bean
  public ManagementErrorEndpoint errorEndpoint(final ErrorAttributes errorAttributes) {
    return new ManagementErrorEndpoint(this.errorPath, errorAttributes);
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.actuate.endpoint.mvc.ManagementErrorEndpoint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.