liuzhihang / doc-view

IDEA 插件 Doc View 的仓库地址

Home Page:https://plugins.jetbrains.com/plugin/15305-doc-view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

希望接口生成时能支持标准的 JavaDoc

liaozan opened this issue · comments

现有SpringBoot 项目的接口都已经按照标准的 JavaDoc 写了注释,希望在不改动源代码、不引入新注释的情况下生成想要的文档
example:

/**
 * xx接口 (分类名)
 */
public class Api{
    /**
     *  XX 列表 (接口名)
     */
    @GetMapping("/list")
    public PageResult<Return> list(Param param) {
        return service.list(param);
    }

}

使用新版本看一下