This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
Support Graalvm: org.springframework.experimental:spring-native #787
Labels
status: waiting-for-triage
An issue we've not yet triaged
Hello,
we want to use the native image of spring boot to use GraalVM: https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/ and have an fast startime.
Our problem is that if we add the library we add also atomatic the SqsConfiguration.
If we try to build the image we get this error:
If we look in the class:
https://github.com/spring-cloud/spring-cloud-aws/blob/main/spring-cloud-aws-messaging/src/main/java/org/springframework/cloud/aws/messaging/config/annotation/SqsConfiguration.java
It has not the annotation:
@Configuration(proxyBeanMethods = false)
But if we look in other configs like https://github.com/spring-cloud/spring-cloud-aws/blob/main/spring-cloud-aws-messaging/src/main/java/org/springframework/cloud/aws/messaging/config/annotation/SqsClientConfiguration.java
It has the annotation:
@Configuration(proxyBeanMethods = false)
Have somebody an idea how solve the issue?
The text was updated successfully, but these errors were encountered: