首页>代码>springboot+mybatis-plus框架实现java web项目公共图片上传接口(图片服务器)>/imgserver/src/main/java/com/npf/imgserver/aspect/RateLimitAspect.java
package com.npf.imgserver.aspect;
import java.lang.annotation.*;
/**
* 自定义注解可以不包含属性,成为一个标识注解
* Created with IDEA
* 令牌桶 接口限流
* author: NiPengFei
* Date:18/9/24
* Time:上午12:05
*/
@Inherited
@Documented
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RateLimitAspect {
}
最近下载更多

最近浏览