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

https://github.com/sureshg/spring-native

Spring Native Samples!
https://github.com/sureshg/spring-native

graalvm-native-image jdk19 kotlin native-image spring-native springboot3

Last synced: 10 months ago
JSON representation

Spring Native Samples!

Awesome Lists containing this project

README

          

## SpringBoot Native

#### Build and Test

```bash
# Native compile
$ ./gradlew nativeCompile
$ build/native/nativeCompile/spring-native
# Native test
$ ./gradlew nativeTest

# Create container image
$ ./gradlew bootBuildImage
$ docker run --rm -p 8080:8080 spring-native:0.0.1
```