Spring Data REST is part of the Spring Data project. It offers an easy and fast way to implement RESTful web services with Spring. To start using Spring Data REST, you have to add the following dependency to the pom.xml file:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-rest</artifactId></dependency>
By default, Spring Data REST finds all public repositories from the application and creates RESTful web services for your entities automatically.
You can define the endpoint of service in your application.properties file as follows:
spring.data.rest.basePath=/api
Now, you can access the RESTful web service from the localhost:8080/api endpoint. By calling the root endpoint ...