com.github.liuanxin.api.annotation.ApiMethod 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 支持
package com.github.liuanxin.api.annotation;
import java.lang.annotation.*;
/** 接口方法, 标注在 方法 上 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiMethod {
/** 接口标题 */
String title();
/** 接口详细说明 */
String desc() default "";
/** 开发者及联系方式 */
String develop() default "";
}