mirror of
https://github.com/zongzibinbin/MallChat.git
synced 2026-03-14 22:23:42 +08:00
去除无效日志
This commit is contained in:
@@ -33,7 +33,6 @@ import java.util.stream.Collectors;
|
||||
public class FrequencyControlAspect {
|
||||
@Around("@annotation(com.abin.frequencycontrol.annotation.FrequencyControl)||@annotation(com.abin.frequencycontrol.annotation.FrequencyControlContainer)")
|
||||
public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
|
||||
System.out.println("FrequencyControlAspect start");
|
||||
Method method = ((MethodSignature) joinPoint.getSignature()).getMethod();
|
||||
FrequencyControl[] annotationsByType = method.getAnnotationsByType(FrequencyControl.class);
|
||||
Map<String, FrequencyControl> keyMap = new HashMap<>();
|
||||
|
||||
Reference in New Issue
Block a user