An open API service indexing awesome lists of open source software.

https://github.com/rellyson/spring-playground-app

A Spring Boot application for testing purposes.
https://github.com/rellyson/spring-playground-app

spring spring-boot spring-mvc

Last synced: 5 months ago
JSON representation

A Spring Boot application for testing purposes.

Awesome Lists containing this project

README

          


Java Playground Application

![java](https://shields.io/badge/SpringBoot-3.2.1-green?logo=springboot)
![java](https://shields.io/badge/OpenJDK-17-orange?logo=openjdk)

## Setup

You can install the application dependencies using the command below:

```bash
# Install dependencies with Maven
./mvnw clean install
```
## Running

You can run the application locally using `Maven` or `Docker`.

```bash
# Run via maven
./mvnw clean spring-boot:run

# Build and run with docker
docker build -t java-app .
docker run -p 3000:300 java-app
```
Your application will be available at `http://localhost:3000/api`
after running one of the commands above.

## Useful links

- [Spring Docs](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#documentation)