Replies: 1 comment 3 replies
-
The following application that reproduces the snippet you showed works for me: mn-graalvm-property.tar.gz This is the output when running the native image:
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a simple Micronaut 2.4.2 application that I like to run as a GraalVM native image. I'm using the Micronaut Gradle plugin to build the Docker native image using
./gradlew dockerBuildNative
The application contains a service bean
FileSystemStoreImpl.java
when I run the Docker container containing the native application I get the following exception.
The
application.yml
contains the needed configurationWhen I run the container containing the standalone JAR, everything works as expected. Is there anything special I need to address to make that injection working on GraalVM?
Beta Was this translation helpful? Give feedback.
All reactions