/*
 * Copyright 2012-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.boot.web.embedded.jetty;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.eclipse.jetty.http.HttpMethod;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.servlet.ErrorPageErrorHandler;

Variation of Jetty's ErrorPageErrorHandler that supports all HttpMethods rather than just GET, POST and HEAD. By default Jetty intentionally only supports a limited set of HTTP methods for error pages, however, Spring Boot prefers Tomcat, Jetty and Undertow to all behave in the same way.
Author:Phillip Webb, Christoph Dreis
/** * Variation of Jetty's {@link ErrorPageErrorHandler} that supports all {@link HttpMethod * HttpMethods} rather than just {@code GET}, {@code POST} and {@code HEAD}. By default * Jetty <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=446039">intentionally only * supports a limited set of HTTP methods</a> for error pages, however, Spring Boot * prefers Tomcat, Jetty and Undertow to all behave in the same way. * * @author Phillip Webb * @author Christoph Dreis */
class JettyEmbeddedErrorHandler extends ErrorPageErrorHandler { @Override public boolean errorPageForMethod(String method) { return true; } @Override public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException { baseRequest.setMethod("GET"); super.doError(target, baseRequest, request, response); } }