spring ManagementErrorEndpoint 源码
springboot ManagementErrorEndpoint 代码
文件路径:/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/ManagementErrorEndpoint.java
/*
* Copyright 2012-2022 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.actuate.autoconfigure.web.servlet;
import java.util.Map;
import org.springframework.boot.autoconfigure.web.ErrorProperties;
import org.springframework.boot.web.error.ErrorAttributeOptions;
import org.springframework.boot.web.error.ErrorAttributeOptions.Include;
import org.springframework.boot.web.servlet.error.ErrorAttributes;
import org.springframework.boot.web.servlet.error.ErrorController;
import org.springframework.stereotype.Controller;
import org.springframework.util.Assert;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.context.request.ServletWebRequest;
/**
* {@link Controller @Controller} for handling "/error" path when the management servlet
* is in a child context. The regular {@link ErrorController} should be available there
* but because of the way the handler mappings are set up it will not be detected.
*
* @author Dave Syer
* @author Scott Frederick
* @since 2.0.0
*/
@Controller
public class ManagementErrorEndpoint {
private final ErrorAttributes errorAttributes;
private final ErrorProperties errorProperties;
public ManagementErrorEndpoint(ErrorAttributes errorAttributes, ErrorProperties errorProperties) {
Assert.notNull(errorAttributes, "ErrorAttributes must not be null");
Assert.notNull(errorProperties, "ErrorProperties must not be null");
this.errorAttributes = errorAttributes;
this.errorProperties = errorProperties;
}
@RequestMapping("${server.error.path:${error.path:/error}}")
@ResponseBody
public Map<String, Object> invoke(ServletWebRequest request) {
return this.errorAttributes.getErrorAttributes(request, getErrorAttributeOptions(request));
}
private ErrorAttributeOptions getErrorAttributeOptions(ServletWebRequest request) {
ErrorAttributeOptions options = ErrorAttributeOptions.defaults();
if (this.errorProperties.isIncludeException()) {
options = options.including(Include.EXCEPTION);
}
if (includeStackTrace(request)) {
options = options.including(Include.STACK_TRACE);
}
if (includeMessage(request)) {
options = options.including(Include.MESSAGE);
}
if (includeBindingErrors(request)) {
options = options.including(Include.BINDING_ERRORS);
}
return options;
}
private boolean includeStackTrace(ServletWebRequest request) {
return switch (this.errorProperties.getIncludeStacktrace()) {
case ALWAYS -> true;
case ON_PARAM -> getBooleanParameter(request, "trace");
default -> false;
};
}
private boolean includeMessage(ServletWebRequest request) {
return switch (this.errorProperties.getIncludeMessage()) {
case ALWAYS -> true;
case ON_PARAM -> getBooleanParameter(request, "message");
default -> false;
};
}
private boolean includeBindingErrors(ServletWebRequest request) {
return switch (this.errorProperties.getIncludeBindingErrors()) {
case ALWAYS -> true;
case ON_PARAM -> getBooleanParameter(request, "errors");
default -> false;
};
}
protected boolean getBooleanParameter(ServletWebRequest request, String parameterName) {
String parameter = request.getParameter(parameterName);
if (parameter == null) {
return false;
}
return !"false".equalsIgnoreCase(parameter);
}
}
相关信息
相关文章
spring CompositeHandlerAdapter 源码
spring CompositeHandlerExceptionResolver 源码
spring CompositeHandlerMapping 源码
spring ManagementServletContext 源码
spring ServletManagementChildContextConfiguration 源码
spring ServletManagementContextAutoConfiguration 源码
0
赞
- 所属分类: 后端技术
- 本文标签: Spring Boot Spring Java
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦