This is a microservice with Spring Boot that implements a BlogPost REST API
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
.
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