Example usage for org.springframework.boot.web.server ErrorPage getPath

List of usage examples for org.springframework.boot.web.server ErrorPage getPath

Introduction

In this page you can find the example usage for org.springframework.boot.web.server ErrorPage getPath.

Prototype

public String getPath() 

Source Link

Document

The path to render (usually implemented as a forward), starting with "/".

Usage

From source file:org.springframework.boot.web.servlet.support.ErrorPageFilter.java

@Override
public void addErrorPages(ErrorPage... errorPages) {
    for (ErrorPage errorPage : errorPages) {
        if (errorPage.isGlobal()) {
            this.global = errorPage.getPath();
        } else if (errorPage.getStatus() != null) {
            this.statuses.put(errorPage.getStatus().value(), errorPage.getPath());
        } else {//from   w  w  w  .j  a  v  a2s  .  co m
            this.exceptions.put(errorPage.getException(), errorPage.getPath());
        }
    }
}