
com.giffing.bucket4j.spring.boot.starter.utils.RateLimitAopUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bucket4j-spring-boot-starter Show documentation
Show all versions of bucket4j-spring-boot-starter Show documentation
Spring Boot Starter für Bucket4J
The newest version!
package com.giffing.bucket4j.spring.boot.starter.utils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public class RateLimitAopUtils {
public static R getAnnotationFromMethodOrClass(Method method, Class rateLimitingAnnotation) {
R rateLimitAnnotation;
if(method.getAnnotation(rateLimitingAnnotation) != null) {
rateLimitAnnotation = method.getAnnotation(rateLimitingAnnotation);
} else {
rateLimitAnnotation = method.getDeclaringClass().getAnnotation(rateLimitingAnnotation);
}
return rateLimitAnnotation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy