arului-apiservice API REST services using springboot JPA H2 hateoas HAL
Download and install H2 database engine
-
mvn install
-
spring-boot:run
http://localhost:2020/arului-service/country
http://localhost:2020/arului-service/country?name=xyz
http://localhost:2020/arului-service/people
http://localhost:2020/arului-service/item
Note: If any error during build/runtime error related to jsonpath comment below lines from pom.xml and try
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path-assert</artifactId>
<version>2.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<scope>test</scope>
</dependency>