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.

Can we have duplicate name's for the same bean id that is mentioned in the xml. If no then how do we override the bean in SPring.

share|improve this question
Can you post some example xml to show exactly what you mean – Scobal May 1 '11 at 15:20

3 Answers

up vote 11 down vote accepted

Any given Spring context can only have one bean for any given id or name. In the case of the XML id attribute, this is enforced by the schema validation. In the case of the name attribute, this is enforced by Spring's logic.

However, if a context is constructed from two different XML descriptor files, and an id is used by both files, then one will "override" the other. The exact behaviour depends on the ordering of the files when they get loaded by the context.

So while it's possible, it's not recommended. It's error-prone and fragile, and you'll get no help from Spring if you change the ID of one but not the other.

share|improve this answer
Whether can we declare the same bean id in other xml for other reference e.x. Servlet-Initialize.xml <bean id="inheritedTestBean" class="org.springframework.beans.TestBean"> <property name="name" value="parent"/> <property name="age" value="1"/> </bean> Other xml (Document.xml) <bean id="inheritedTestBean" class="org.springframework.beans.Document"> <property name="name" value="document"/> <property name="age" value="1"/> </bean> – gaurav May 3 '11 at 6:40

Whether can we declare the same bean id in other xml for other reference e.x.

Servlet-Initialize.xml

<bean id="inheritedTestBean"   class="org.springframework.beans.TestBean">
  <property name="name" value="parent"/>
  <property name="age" value="1"/>
</bean>

Other xml (Document.xml)

<bean id="inheritedTestBean"  class="org.springframework.beans.Document">
  <property name="name" value="document"/>
  <property name="age" value="1"/>
</bean>
share|improve this answer
is this allowed in spring or not? Sorry, but it's not clear to me. – Buchi Feb 1 '12 at 10:07
@Buchi Yes, it is allowed. Bean from the file read later in sequence will override entirely previous definition which won't be instantiated at all. – mrembisz Feb 21 '12 at 14:14

An example from official spring manual:

<bean id="inheritedTestBean" abstract="true"
    class="org.springframework.beans.TestBean">
  <property name="name" value="parent"/>
  <property name="age" value="1"/>
</bean>

<bean id="inheritsWithDifferentClass"
      class="org.springframework.beans.DerivedTestBean"
      parent="inheritedTestBean" init-method="initialize">
  <property name="name" value="override"/>
  <!-- the age property value of 1 will be inherited from  parent -->
</bean>

Is that what you was looking for?

share|improve this answer
Looks like the official spring manual link is broken. – Buchi Feb 1 '12 at 10:11
@Buchi thanks for the tip, fixed the link – Denis Kniazhev Feb 7 '12 at 15:02

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.