Skip to content

easy and powerful API documentation tool for spring restdocs

License

Notifications You must be signed in to change notification settings

BGMSound/documentify

Repository files navigation

📝 Documentify

Documentify allows easy and convenient creation of OpenAPI specification documents through Kotlin DSL, making users from the complexity of traditional RestDocs. It combines the advantages of both Swagger and RestDocs for efficient and intuitive document management.

Installation and Getting Started

Installation

Add the following dependency to your build.gradle.kts file:

dependencies {
    implementation("io.github.bgmsound:documentify-core:${version}")
}

Getting Started

Add the following code to your test class:

@BeforeEach
fun setUp(provider: RestDocumentationContextProvider) {
    standalone(provider) {
        controllers(TestController())
    }
}

@Test
fun documentationGetApi() {
    `when`(testService.test()).thenReturn("test")
    documentation("test-get-api") {
        information {
            summary("test get api")
            description("this is test get api")
            tag("test")
        }
        requestLine(Method.GET, "/api/test/{path}") {
            pathVariable("path", "path", "path")
        }
        responseBody {
            field("testField1", "path", "path")
            field("testField2", "message", "test")
        }
    }
}

more sample code

About

easy and powerful API documentation tool for spring restdocs

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages