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
This should be added as an optional dependency to the module that contains the AutoConfiguration classes (and contains the spring.factories file declaring them).
Once configured, this annotation processor will generate metadata at compile time and will help Spring Boot process those auto-configurations without loading the actual classes in some cases.
The spring-cloud-stream and spring-cloud-stream-reactive are declaring at least one auto-configuration but don't use this annotation processor. Could you add it to the build?
Add spring-boot-autoconfigure-processor to spring-cloud-stream
and spring-cloud-stream-reactive modules for auto configuration optimization.
Resolvesspring-cloud#1410
Add spring-boot-autoconfigure-processor to spring-cloud-stream
and spring-cloud-stream-reactive modules for auto configuration optimization.
Resolvesspring-cloud#1410Resolvesspring-cloud#1411
As explained in the its reference documentation, Spring Boot provides a
spring-boot-autoconfigure-processor
.This should be added as an optional dependency to the module that contains the AutoConfiguration classes (and contains the
spring.factories
file declaring them).Once configured, this annotation processor will generate metadata at compile time and will help Spring Boot process those auto-configurations without loading the actual classes in some cases.
The
spring-cloud-stream
andspring-cloud-stream-reactive
are declaring at least one auto-configuration but don't use this annotation processor. Could you add it to the build?Once added, this should generate a
spring-autoconfigure-metadata.properties
file in thetarget/classes/META-INF
folders.The text was updated successfully, but these errors were encountered: