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
These are used as tie breakers when multiple beans implement the same interface and a single bean is being injected.
@Primary makes it the preferred bean to inject @Secondary makes it the least preferred bean to inject - will only be used if no other bean is available to inject. This makes it a kind of default bean used for injection when no other bean is available to inject.
The text was updated successfully, but these errors were encountered:
These are used as tie breakers when multiple beans implement the same interface and a single bean is being injected.
@Primary
makes it the preferred bean to inject@Secondary
makes it the least preferred bean to inject - will only be used if no other bean is available to inject. This makes it a kind ofdefault
bean used for injection when no other bean is available to inject.The text was updated successfully, but these errors were encountered: