#74 - More documentation within the REST headers example.

Added README to give more details on what the sample actually showcases. Added Spring RESTDocs to document HTTP interaction.
This commit is contained in:
Oliver Gierke
2015-04-08 19:33:04 +02:00
parent 8978423ade
commit 174710c5ba
4 changed files with 63 additions and 5 deletions

View File

@@ -11,7 +11,7 @@
<artifactId>spring-data-rest-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<properties>
<spring-data-releasetrain.version>Gosling-BUILD-SNAPSHOT</spring-data-releasetrain.version>
</properties>
@@ -22,7 +22,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
@@ -33,6 +33,13 @@
<artifactId>hsqldb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.restdocs</groupId>
<artifactId>spring-restdocs</artifactId>
<version>0.1.0.BUILD-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>