|
|
@ -1,18 +1,20 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Tencent is pleased to support the open source community by making Spring Cloud Tencent available.
|
|
|
|
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
|
|
|
|
* Copyright 2015 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the BSD 3-Clause License (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* http://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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* https://opensource.org/licenses/BSD-3-Clause
|
|
|
|
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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 springfox.documentation.spring.web;
|
|
|
|
package springfox.documentation.spring.web;
|
|
|
@ -26,6 +28,9 @@ import org.springframework.web.servlet.mvc.condition.PatternsRequestCondition;
|
|
|
|
import static springfox.documentation.spring.web.paths.Paths.maybeChompLeadingSlash;
|
|
|
|
import static springfox.documentation.spring.web.paths.Paths.maybeChompLeadingSlash;
|
|
|
|
import static springfox.documentation.spring.web.paths.Paths.maybeChompTrailingSlash;
|
|
|
|
import static springfox.documentation.spring.web.paths.Paths.maybeChompTrailingSlash;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Modified to be compatible with spring-boot-actuator.
|
|
|
|
|
|
|
|
*/
|
|
|
|
public class WebMvcPatternsRequestConditionWrapper
|
|
|
|
public class WebMvcPatternsRequestConditionWrapper
|
|
|
|
implements springfox.documentation.spring.wrapper.PatternsRequestCondition<PatternsRequestCondition> {
|
|
|
|
implements springfox.documentation.spring.wrapper.PatternsRequestCondition<PatternsRequestCondition> {
|
|
|
|
private final String contextPath;
|
|
|
|
private final String contextPath;
|
|
|
|