Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of everyone who contributed, it's my pleasure to announce that Spring REST Docs 1.2.0.RELEASE has been released. It is available fromMaven Central, JCenter and our release repository.
A complete overview of what's new in 1.2 can be found in the release notes. The following are some of the highlights.
REST Docs now has a new module, spring-restdocs-asciidoctor
, that makes it easier to use the generated snippets in your documentation. A new macro means that you can import multiple snippets for the same operation in a single line. This update to the samples shows the benefit of adopting the macro.
To help to make your documentation easier to consume, the documentation of large and complex payloads can now be split up. Subsections of the payloads can be documented individually allowing your documentation to guide your users through the pieces that matter.
Snippets that document the body of a request or response are now included in the default snippets. You can also use these snippets explicitly to document a subsection of a large or complex body.
By default, Spring Boot 1.5 uses Spring REST Docs 1.1. To use 1.2, override the version configured in Boot’s dependency management in your pom.xml
:
<properties>
<spring-restdocs.version>1.2.0.RELEASE</spring-restdocs.version>
</properties>
Or build.gradle
:
ext['spring-restdocs.version']=1.2.0.RELEASE
The project's main focus will now move to Spring REST Docs 2.0. While 1.2 is compatible with the forthcoming Spring Framework 5, 2.0 will require both it and Java 8. This should allow REST Docs to provide support for documenting APIs using WebTestClient
and to also take advantage of Java 8 language features.
GitHub | Issues | Documentation | Twitter | Gitter | Stack Overflow