Springfox: Difference between revisions
Jump to navigation
Jump to search
Line 30: | Line 30: | ||
* springfox.documentation.spring.web.plugins.Docket: the primary API configuration mechanism. | * springfox.documentation.spring.web.plugins.Docket: the primary API configuration mechanism. | ||
* ApiSelectorBuilder provides fine grained control over the endpoints exposed via swagger. | |||
=Annotations= | =Annotations= |
Revision as of 20:47, 14 February 2019
External
- http://springfox.github.io/springfox/
- http://springfox.github.io/springfox/docs/current/
- https://github.com/springfox/springfox
Internal
Overview
Springfox is a suite of Java libraries for automating the generation of machine and human readable specification for JSON APIs written with Spring Framework. Springfox works by examining an application, once, at runtime to infer API semantics based on Spring configurations, class structure and various compile time java annotations.
Gradle Dependencies
repositories {
jcenter()
}
dependencies {
compileOnly "io.springfox:springfox-swagger2:2.9.2"
}
Essential Classes
- springfox.documentation.spring.web.plugins.Docket: the primary API configuration mechanism.
- ApiSelectorBuilder provides fine grained control over the endpoints exposed via swagger.
Annotations
Generating Swagger/OpenAPI Specification from Spring Code with Springfox
General Considerations
How is the artifact generated? Where?