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
When we register the configuration files in plugin - only the beans created in config files are being eligble for autowiring but not the components declared in the plugin application - is there any way to register all the components created as well?
The text was updated successfully, but these errors were encountered:
Got around it by adding scan during the creation of plugin application context.
applicationContext.scan(plugin base package here); But it would try to load all the components and when there is some issue while loading - the context refresh will go to infinite loop.
Need to search for a better solution.
When we register the configuration files in plugin - only the beans created in config files are being eligble for autowiring but not the components declared in the plugin application - is there any way to register all the components created as well?
The text was updated successfully, but these errors were encountered: