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!
- Host: GitHub
- URL: https://github.com/sureshg/spring-native
- Owner: sureshg
- Created: 2022-12-02T14:00:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T08:06:59.000Z (over 3 years ago)
- Last Synced: 2025-02-15T08:41:30.975Z (about 1 year ago)
- Topics: graalvm-native-image, jdk19, kotlin, native-image, spring-native, springboot3
- Language: Kotlin
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```