com.github.liuanxin.api.annotation.ApiIgnore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-info Show documentation
Show all versions of api-info Show documentation
收集 api 文档, 需要 spring mvc 支持
The newest version!
package com.github.liuanxin.api.annotation;
import java.lang.annotation.*;
/** 想要在某个类或接口上忽略, 使用此注释 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiIgnore {
boolean value() default true;
}