Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 948 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 948 Bytes

🚀 Bookend: Spring Native Starter app

  • Example Spring Boot REST application using Spring Native
  • Spring Boot, Java 11, Lombok

Provided a comparison between JVM image build and GraalVM image build.

Using Spring Native0.067 seconds Execution for Spring Native

Using the JVM2.112 seconds Execution for Spring on top of the JVM

Get started

Create the image locally

./mvnw clean spring-boot:build-image

Running the just created local image

docker run --rm -p 8080:8080 bookend-native:0.0.1-SNAPSHOT

or just

docker-compose up