You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
370 B
Java

package com.sztzjy.linkCommerce.annotation;
import java.lang.annotation.*;
/**
* 用于匿名访问配置, 使用时只需在Controller方法上使用此注解即能实现匿名访问
*
* @author 陈沅
*/
@Inherited
@Documented
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface AnonymousAccess {
}