Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one bean Name "MasterService" that has the attribute autowired="byType". In that bean I have one property as AccountService accountService; And I have registered implementation of this bean as "DefaultAccountService". Now somebody wants to extends 'DefaultAccountService' and create 'CustomAccountService'. and also register but during initialization of "MasterService" getting the exception that 2 beans are there for AccountService [DefaultAccountService and CustomAccountService]. we dont know how to resolve this?

thanks in advance

share|improve this question

closed as not a real question by Jav_Rock, Ben, Jon Lin, Peter J, Ɓukasz Niemier Sep 26 '12 at 23:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

you need the @Qualifier annotation

see this example:

http://www.mkyong.com/spring/spring-autowiring-qualifier-example/

in your case, it would be:

@Autowired
@Qualifier("customAccountService")
private  AccountService accountService;
share|improve this answer

If you want to override the default autowiring I think it's clearer if you manually wire that specific service, so maintainers know at first sight that in that case the default is not used:

<bean id="masterService" ... autowired="byType">
    <property name="accountService" ref="customAccountService"/>
</bean>

If you just don't want to manually wire anything, Kent's answer will do.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.