-
Notifications
You must be signed in to change notification settings - Fork 40.7k
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
Move away from spring.factories for auto-configurations #29872
Comments
The autoconfigurations are now annotated with The autoconfigurations are listed each in a separate line, comments are supported with the See the current documentation. |
Move the class to a more suitable package, and load the files from META-INF/spring/<fqn>.imports See gh-29872
when we create our own custom starter implementation, we just put |
#31228 is tracking providing an annotation processor that automatically generates the |
Using
spring.factories
to find auto-configuration classes is causing problems with our native work. We initially used it because the code was already available, but we want to offer an alternative in 2.7 and stop using spring.factories for auto-configuration in 3.0.Task:
AutoConfigurationImportSelector
and theImportAutoConfigurationImportSelector
to not usespring.factories
anymoreThe text was updated successfully, but these errors were encountered: