https://github.com/arulkumar-lab/arului-apiservice
arului-apiservice API REST services using springboot JPA H2 hateoas HAL
https://github.com/arulkumar-lab/arului-apiservice
h2-database hal hateoas hateoas-call jpa rest-api spring-boot
Last synced: 2 months ago
JSON representation
arului-apiservice API REST services using springboot JPA H2 hateoas HAL
- Host: GitHub
- URL: https://github.com/arulkumar-lab/arului-apiservice
- Owner: arulkumar-lab
- License: mit
- Created: 2020-07-07T15:04:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T23:46:07.000Z (over 3 years ago)
- Last Synced: 2025-01-31T23:44:35.030Z (4 months ago)
- Topics: h2-database, hal, hateoas, hateoas-call, jpa, rest-api, spring-boot
- Language: Java
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# arului-apiservice
arului-apiservice API REST services using springboot JPA H2 hateoas HALDownload and install H2 database engine1. ```mvn install```
2. ```spring-boot:run```
Country controller - HATEOAS service call
```http://localhost:2020/arului-service/country```
```http://localhost:2020/arului-service/country?name=xyz```
***PersonRepository - HATEOAS call using RepositoryRestResource
```http://localhost:2020/arului-service/people```
***Item Controller - REST service call using H2 database engine
```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>