Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (22 loc) · 847 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 847 Bytes

Blog Post API

Java CI with Maven

This is a microservice with Spring Boot that implements a BlogPost REST API

Run the project

In your IDE, just run the de.sample.schulung.spring.blog.Application class.

Alternatively, run the following command:

mvn spring-boot:run

Then, you can open the browser and find the available resources on http://localhost:9080/index.html.

Build the project

You can build the JAR file with Maven:

mvn clean package

and run it with a Java 17 runtime environment:

java -jar target/blog-app-0.0.1-SNAPSHOT.jar