
de.codecentric.boot.admin.server.web.servlet.AdminControllerHandlerMapping Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2014-2023 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 de.codecentric.boot.admin.server.web.servlet;
import java.lang.reflect.Method;
import java.util.Set;
import org.springframework.core.annotation.AnnotatedElementUtils;
import org.springframework.util.StringUtils;
import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
import org.springframework.web.util.pattern.PathPattern;
import de.codecentric.boot.admin.server.web.AdminController;
import de.codecentric.boot.admin.server.web.PathUtils;
public class AdminControllerHandlerMapping extends RequestMappingHandlerMapping {
private final String adminContextPath;
public AdminControllerHandlerMapping(String adminContextPath) {
this.adminContextPath = adminContextPath;
}
@Override
protected boolean isHandler(Class> beanType) {
return AnnotatedElementUtils.hasAnnotation(beanType, AdminController.class);
}
@Override
protected void registerHandlerMethod(Object handler, Method method, RequestMappingInfo mapping) {
super.registerHandlerMethod(handler, method, withPrefix(mapping));
}
private RequestMappingInfo withPrefix(RequestMappingInfo mapping) {
if (!StringUtils.hasText(this.adminContextPath)) {
return mapping;
}
RequestMappingInfo.Builder mutate = mapping.mutate();
return mutate.paths(withNewPatterns(mapping.getPathPatternsCondition().getPatterns())).build();
}
private String[] withNewPatterns(Set patterns) {
return patterns.stream()
.map((pattern) -> PathUtils.normalizePath(this.adminContextPath + pattern.getPatternString()))
.toArray(String[]::new);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy