apiggs

A rest document generator with parse the source code.

License

License

MIT License
GroupId

GroupId

com.github.apiggs
ArtifactId

ArtifactId

apiggs
Last Version

Last Version

1.6
Release Date

Release Date

Type

Type

jar
Description

Description

apiggs
A rest document generator with parse the source code.
Project URL

Project URL

https://github.com/apiggs/apiggs
Source Code Management

Source Code Management

https://github.com/apiggs/apiggs.git

Download apiggs

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.apiggs/apiggs/ -->
<dependency>
    <groupId>com.github.apiggs</groupId>
    <artifactId>apiggs</artifactId>
    <version>1.6</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.apiggs/apiggs/
implementation 'com.github.apiggs:apiggs:1.6'
// https://jarcasting.com/artifacts/com.github.apiggs/apiggs/
implementation ("com.github.apiggs:apiggs:1.6")
'com.github.apiggs:apiggs:jar:1.6'
<dependency org="com.github.apiggs" name="apiggs" rev="1.6">
  <artifact name="apiggs" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.apiggs', module='apiggs', version='1.6')
)
libraryDependencies += "com.github.apiggs" % "apiggs" % "1.6"
[com.github.apiggs/apiggs "1.6"]

Dependencies

compile (3)

Group / Artifact Type Version
com.github.javaparser : javaparser-symbol-solver-core jar 3.6.25
com.fasterxml.jackson.core : jackson-databind jar 2.5.2
org.asciidoctor : asciidoctorj jar 1.5.6

test (5)

Group / Artifact Type Version
junit : junit jar 4.12
org.springframework : spring-webmvc jar 5.1.0.RELEASE
javax.validation : validation-api jar 2.0.1.Final
com.alibaba : fastjson jar 1.2.51
com.google.code.gson : gson jar 2.8.5

Project Modules

There are no modules declared in this project.

🐷 Apigcc - 非侵入的RestDoc文档生成工具

前言

程序员一直以来都有一个烦恼,只想写代码,不想写文档。代码就表达了我的思想和灵魂。

Python提出了一个方案,叫docstring,来试图解决这个问题。即编写代码,同时也能写出文档,保持代码和文档的一致。docstring说白了就是一堆代码中的注释。Python的docstring可以通过help函数直接输出一份有格式的文档,本工具的思想与此类似。

代码即文档

Apigcc是一个非侵入的RestDoc文档生成工具。工具通过分析代码和注释,获取文档信息,生成RestDoc文档。

有这样一段代码

/**
 * 欢迎使用Apigcc
 * @index 1
 */
@RestController
public class HelloController {

    /**
     * 示例接口
     * @param name 名称
     * @return
     */
    @RequestMapping("/greeting")
    public HelloDTO greeting(@RequestParam(defaultValue="apigcc") String name) {
        return new HelloDTO("hello "+name);
    }

}

生成文档效果

示例

使用方式

Hub

Gradle插件

Maven插件

Versions

Version
1.6
1.5
1.4
1.3
1.2
1.1
1.0