I have a project that includes the spring xml configs from the parent project.
I don't need a particular bean defined in the xml files in the parent project , but I don't want to modify the parent project. I also don't want to rewrite a whole set of xml files.
HOw do I only exclude a particular bean in the child project?
Let me be more specific. The parent project has a bean (for example)
<bean id = "example" class = "blah />
In the child project, I want to be able to do something similar to this in my xml. Child project simply doesn't need this bean.
<exclude beanid="example" />