一、注解类
1 @Documented 2 @Target({ElementType.TYPE,ElementType.METHOD}) 3 @Retention(RetentionPolicy.RUNTIME) 4 public @interface IPFilter { 5 6 /** 7 * 访问ip白名单 8 * @return 9 */ 10 String[] allow() default {}; 11 12 /** 13 * 访问ip黑名单 14 * @return 15 */ 16 String[] deny() default {}; 17 }