June 2017
Intermediate to advanced
496 pages
14h 4m
English
Spring Data Rest provides a very simple option to expose CRUD RESTful services around data repositories.
Some of the important features of Spring Data Rest include the following:
We will start by including the Spring Boot Data Rest starter in our pom.xml:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-rest</artifactId> </dependency>
We can make UserRepository expose the REST ...
Read now
Unlock full access