You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new version of graalVM native-image, we need to register all bean types to be initialized at build time (as they end up in the image heap).
To support this, we should generated the following file: src/main/resources/META-INF/groupId/artifactId/native-image.properties
with the following content:
Args=--initialize-at-build-time=packageName
groupId: maven groupId artifactId: maven artifactId packageName: package where we generate beans (such as JAX-RS resources), if multiple packages, then the top most package
The text was updated successfully, but these errors were encountered:
With the new version of graalVM native-image, we need to register all bean types to be initialized at build time (as they end up in the image heap).
To support this, we should generated the following file:
src/main/resources/META-INF/groupId/artifactId/native-image.properties
with the following content:
groupId
: maven groupIdartifactId
: maven artifactIdpackageName
: package where we generate beans (such as JAX-RS resources), if multiple packages, then the top most packageThe text was updated successfully, but these errors were encountered: