I have a project where I need to bootstrap @Configuration java-config classes into the XML configuration.
To do that, I\'m reading that I also need to include the fo
Alternatively to annotation-config you can use component-scan. Then you do not have to include the Configuration Bean in XML:
annotation-config
component-scan
See Difference between vs for more details.