Giter Club home page Giter Club logo

spring-graalvm-native's Introduction

Build Status Documentation

This project goal is to provide experimental support for building Spring Boot applications as GraalVM native images. Read this blog post or watch this Running Spring Boot applications as GraalVM native images Devoxx talk video for more details.

It is mainly composed of 6 parts:

  • spring-graalvm-native-feature: this module is Spring GraalVM feature. A feature here is a GraalVM term meaning a plugin for the native-image compilation process (which creates the native-image from the built class files). The feature participates in the compilation lifecycle, being invoked at different compilation stages to offer extra information about the application to aid in the image construction.

  • spring-graalvm-native-configuration: this module contains configuration hints for Spring classes, including various Spring Boot auto-configurations.

  • spring-graalvm-native-substitutions: this module allows to patch temporarily some part of Spring Boot and Spring Framework to improve compatibility and efficiency of Spring native images.

  • spring-graalvm-native: this module aggregates the feature, configuration and substitutions ones to generate the artifact to consume.

  • spring-graalvm-native-samples: contains various samples that demonstrate the feature usage and are used as integration tests.

  • spring-graalvm-native-docs: contains the asciidoc documentation sources.

It supports the following modes using -Dspring.native.mode=<mode> on the native-image command line:

  • default provides resource, initialization, proxy and reflection (using auto-configuration hints) configuration for native images as well as substitutions.

  • agent should be used if only wishing to provide initialization configuration and substitutions.

  • hybrid is a work-in-progress mode which is a mix between the 2 previous modes. The agent is used for Spring Boot auto-configuration and the feature and hints are used for user beans like @Controller.

  • functional is when working with functional bean registration (Spring Fu style or using spring-init). In this mode the feature will provide initialization, resource configuration, substitutions and spring.factories functional alternative (only Spring Boot spring.factories are supported for now).

Scope and status

This project status is alpha, that means that we are currently mainly working on the software design and on supporting the features of the current samples (work in progress). Supporting a wider and clearly defined range of Spring Boot applications, as well as optimizing efficiency (image size, memory consumption) and performances will happen as a second step.

Spring team collaborates with GraalVM native team by raising issues in their bug tracker, with the goal to improve the production-readiness of native-images. These bugs on GraalVM issue tracker are identified by the spring label.

Quick start

For detailed information and walkthroughs of applying the techniques to your project, please see the documentation.

Install GraalVM native

If you are using Docker based builds descried above, the right GraalVM distribution is already installed, you can skip this section.

From GraalVM builds:

  • Install GraalVM 20.1.0 from here (dev builds are also available from here).

  • Set JAVA_HOME and PATH appropriately for that GraalVM version.

  • Run gu install native-image to bring in the native-image extensions to the JDK.

Or you can use SDKMAN to easily switch between GraalVM versions:

  • Install SDKMAN

  • Install GraalVM with sdk install java 20.1.0.r8-grl for Java 8 or sdk install java 20.1.0.r11-grl for Java 11

  • Run gu install native-image to bring in the native-image extensions to the JDK.

Artifacts

The latest 0.7.1 release supports GraalVM 20.1.0 and Spring Boot 2.3.1.RELEASE.

Play with the samples

  • Download and extract sources from the latest release.

  • Go into the samples folder and pick one (e.g. cd spring-graalvm-native-samples/commandlinerunner)

  • Run ./build.sh which will run a maven build, then a native image compile, then test the result.

build.sh runs the compile.sh script and in that compile script you can see the invocation of the native-image command. The other samples follow a similar model. For more details on the samples see the samples documentation.

Contributing

This project is in the spring-projects-experimental org indicating it is not as mature as other Spring projects. Contributions are welcome (maybe read the extension guide if thinking about extending it to support your project). However, please recognize we aren’t at the polishing javadoc stage and whilst pre 1.0 there may be heavy evolution of APIs.

Baseline

The development version on master is currently based on GraalVM 20.2-dev and Spring Boot 2.4.0-SNAPSHOT. Mac and Linux are supported, Windows is untested.

Using container-based build environment

In order to allow easily reproducible builds of spring-graalvm-native, dedicated interactive Docker images are available for local development (tested on Linux and Mac) and are also used in the CI:

  • graalvm-ce: base image with Ubuntu bionic + GraalVM native, built daily by the CI and available from Docker hub or locally via docker/build-graalvm-ce-images.sh.

  • spring-graalvm-native: base image with graalvm-ce + utilities required to build the project, available from Docker hub or locally via docker/build-spring-graalvm-native-images.sh.

  • spring-graalvm-native-dev: local image built via docker/build-dev-images.sh designed to share the same user between the host and the container

To use it:

  • Install Docker.

  • Configure it to allow non-root user if you are on Linux.

  • Run run-dev-container.sh to run the Docker container with an interactive shell suitable to run spring-graalvm-native build scripts (see bellow for more documentation).

  • The first time, it will download remote based images built by the CI.

  • The current and the Maven home directories are shared between the host (where is typically the IDE) and the container (where you can run builds).

run-dev-container.sh

run-dev-container.sh runs Spring GraalVM native dev container with an interactive shell.

run-dev-container.sh [options]

options:
-h, --help                show brief help
-j, --java=VERSION        specify Java version to use, can be 8 or 11, 8 by default
-g, --graalvm=VERSION     specify GraalVM version to use, can be 20.1-dev or master, 20.1-dev by default
-w, --workdir             specify the working directory, should be an absolute path, current one by default
-p, --pull                force pulling of remote container images
-r, --rebuild             force container image rebuild

Usual dev workflow

  • Import the root project in your IDE.

  • Eventually import the sample you are working on as a distinct project in your IDE.

  • Run run-dev-container.sh to run the Docker container with an interactive shell.

  • Run the root project build.sh (from the host or the container) if you have made modification to the feature, substitutions or configuration modules.

  • Run build.sh of the sample you are working on from the container.

To test the various samples You can also run the root build.sh then build-key-samples.sh (test only key samples) or build-samples.sh (test all samples) from the container.

spring-graalvm-native's People

Contributors

sdeleuze avatar aclement avatar fhanik avatar christophstrobl avatar dsyer avatar mminella avatar jkroepke avatar buzzardo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.