All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.jiangzeyin.common.interceptor.InterceptorPattens Maven / Gradle / Ivy

package cn.jiangzeyin.common.interceptor;

import java.lang.annotation.*;

/**
 * 拦截器注解
 * Created by jiangzeyin on 2017/7/8.
 */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface InterceptorPattens {
    /**
     * 拦截目录
     *
     * @return 数组
     */
    String[] value() default {"/**"};

    /**
     * 排除目录
     *
     * @return 数组
     */
    String[] exclude() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy