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.

Given I have a Spring bean configured as

@Service("myService")
public class DefaultService extends MyService {
}

and a class using this bean

public class Consumer {
    @Autowired
    @Qualifier("myService")
    private MyService service;
    ...
}

I now want my project, that includes the preceding classes, to have Consumer another implementation of MyService being injected. Therefore I would like to overwrite the bean myService

@Service("myService")
public class SpecializedService implements MyService {
}

resulting in Consumer carrying now an instance of SpecializedService instead of DefaultService. By definition I cannot have two beans with the same name in the Spring container. How can I tell spring, that the definition of the new service shall overwrite the older one? I don't want to modify the Consumer class.

share|improve this question

2 Answers

up vote 1 down vote accepted

Either define the service bean explicitly

<bean id="myService" class="x.y.z.SpecializedService" />

or component-scan it.

In either event, in your application context, avoid explicitly defining DefaultService and avoid component-scanning it.

share|improve this answer
Thanks, Willie. We ended up with your solution since we decided also for maintenance reasons (we're talking about hundreds of services) to keep the list of every service in one file - namely the spring bean configuration. Defining just id and the classname is not too painful as using annotations only is more tempting. – Lars Blumberg Apr 7 '11 at 8:37

Exclude it from component-scan by using a filter

<component-scan base-package="your-package">
    <exclude-filter type="regex" expression="DefaultService" />
</component-scan>

Not sure if there is a way to do it with only annotations (other than removing the @Service annotation from DefaultService).

share|improve this answer
Thanks, Wilhelm, I am sure your solution would work. But then I would have to scan for my services by myself. Good idea! – Lars Blumberg Apr 7 '11 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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