io.github.smart.cloud.starter.web.aspect.pointcut.ApiLogPointCut Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2019 collin ([email protected])
*
* 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
*
* 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.
*/
package io.github.smart.cloud.starter.web.aspect.pointcut;
import io.github.smart.cloud.starter.core.util.AspectInterceptorUtil;
import io.github.smart.cloud.starter.core.constants.SmartApplicationConfig;
import io.github.smart.cloud.starter.web.annotation.ApiLog;
import org.springframework.aop.aspectj.AspectJExpressionPointcut;
import org.springframework.aop.support.StaticMethodMatcherPointcut;
import org.springframework.core.annotation.AnnotatedElementUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import java.lang.reflect.Method;
/**
* 日志切面点
*
* @author collin
* @date 2022-07-12
*/
public class ApiLogPointCut extends StaticMethodMatcherPointcut {
private final AspectJExpressionPointcut packageExpressionPointcut;
public ApiLogPointCut() {
super();
packageExpressionPointcut = new AspectJExpressionPointcut();
packageExpressionPointcut.setExpression(AspectInterceptorUtil.buildExpression(SmartApplicationConfig.getBasePackages()));
}
@Override
public boolean matches(Method method, Class> c) {
return // package是否匹配
packageExpressionPointcut.matches(method, c) &&
// 类
(c != null && (c.isAnnotationPresent(RestController.class) || c.isAnnotationPresent(Controller.class))) &&
// 方法
(AnnotatedElementUtils.hasAnnotation(method, RequestMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, GetMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, PostMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, DeleteMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, PutMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, PatchMapping.class)
|| AnnotatedElementUtils.hasAnnotation(method, ApiLog.class));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy