https://github.com/noobdevsam/spring-practice-rest-template
https://github.com/noobdevsam/spring-practice-rest-template
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/noobdevsam/spring-practice-rest-template
- Owner: noobdevsam
- Created: 2025-04-03T18:09:32.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-03T19:23:58.000Z (about 1 year ago)
- Last Synced: 2025-04-03T20:29:12.409Z (about 1 year ago)
- Language: Java
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot REST API Project
This project is a Spring Boot application that consumes a REST API.
The REST API server used for this project is available
at [spring-practice-restmvc](https://github.com/noobdevsam/spring-practice-restmvc).
## Prerequisites
- Java 21 or higher
- Maven 3.9.0 or higher
- IntelliJ IDEA or any other preferred IDE
## Run the REST API Server
```sh
git clone https://github.com/noobdevsam/spring-practice-restmvc.git
cd spring-practice-restmvc
mvn clean package -DskipTests
java -jar -Dspring.profiles.active=localdb target/spring-practice-restmvc-0.0.1-SNAPSHOT.jar
```