摘要: 首先是写一个注解类: 1 @Retention(RUNTIME) 2 @Target(METHOD) 3 public @interface AccessLimit { 4 5 int seconds(); 6 int maxCount(); 7 boolean needLogin()default 阅读全文
posted @ 2022-07-19 15:06 小杨ABC 阅读(113) 评论(0) 推荐(0) 编辑