com.github.liuanxin.api.annotation.EnableApiInfo 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 com.github.liuanxin.api.configuration.ApiInfoConfiguration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
* @see com.github.liuanxin.api.model.DocumentCopyright
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({ApiInfoConfiguration.class})
public @interface EnableApiInfo {
}