-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MessagingAnnotationBeanPostProcessor: Code generation does not support org.springframework.beans.factory.support.DefaultListableBeanFactory #8703
Comments
Yeah... removed my comment: was blind enough to mix up with versions :shame: So, yeah... The current version is like this:
And you claim that this Will investigate what we can do... Thank you! |
Have fixed that one, but now fails like this:
Turns out the AOT code generation doesn't like a Not sure yet how to propagate it from the |
Thank you very much for looking into this issue! |
Interesting! Thanks. |
In what version(s) of Spring Integration are you seeing this issue?
6.2.0-M1
Describe the bug
During AOT processing, the Gradle
processAot
fails with the following:While debugging through the call stack, I can see the bean definition that is being processed is
MessagingAnnotationBeanPostProcessor
and it contains the following constructor:The stacktrace shows:
Debugger shows that when calling
addConstructorArgumentValues
, the constructor argumentBeanDefinitionRegistry registry
eventually leads to this error.To Reproduce
./gradlew clean build
with Spring Boot 3.2 M1 and 6.2.0-M1.Expected behavior
AOT build should complete successfully
Sample
Related issue: #8571
I'll put together a sample next.
The text was updated successfully, but these errors were encountered: