Skip to content
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

Use field or parameter name as default value for @Qualifier [SPR-5152] #9825

Closed
spring-projects-issues opened this issue Sep 11, 2008 · 3 comments
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Sep 11, 2008

Dave Syer opened SPR-5152 and commented

Use field or parameter name as default value for @Qualifier. E.g.

@Autowired
@Qualifier("requests")
private MessageChannel requests;

@Autowired
@Qualifier("replies")
private PollableChannel replies;

Would be replaced by

@Autowired
@Qualifier
private MessageChannel requests;

@Autowired
@Qualifier
private PollableChannel replies;

Issue Links:

Referenced from: commits b85d457

1 votes, 1 watchers

@spring-projects-issues
Copy link
Collaborator Author

Dave Syer commented

Or...

@Autowired(type=AutowireType.BY_NAME)
private MessageChannel requests;

@Autowired(type=AutowireType.BY_NAME)
private PollableChannel replies;

(The AutowireType could be provided at the @Component level as well.)

@spring-projects-issues
Copy link
Collaborator Author

Dave Syer commented

Or even better...

@Autowired
private MessageChannel requests;

@Autowired
private PollableChannel replies;

So if there are multiple type-based matches the default would be look for a bean name.

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

I've implemented the latter suggestion: @Autowired fields or method parameters take the field/parameter name into account as a default qualifier that resolves the ambiguity in case of multiple matches (effectively like if there was an @Qualifier annotation with the same value as the field/parameter name).

The use of the primary flag on a target bean still overrides this, though: i.e. if one of the matching candidates is marked primary, that one will be taken, even if another one happens to have a bean name that matches the field/parameter name. That's the only difference to the use of an explicit @Qualifier, which according to the standard algorithm narrows to all qualified instances first before selecting a primary candidate among those few in the narrowed set.

Juergen

@spring-projects-issues spring-projects-issues added type: enhancement A general enhancement in: core Issues in core modules (aop, beans, core, context, expression) labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 3.0 M3 milestone Jan 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants