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.
|
|
Any given Spring context can only have one bean for any given id or name. In the case of the XML However, if a context is constructed from two different XML descriptor files, and an 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. |
|||
|
|
Whether can we declare the same bean id in other xml for other reference e.x. Servlet-Initialize.xml
Other xml (Document.xml)
|
||||
|
An example from official spring manual:
Is that what you was looking for? |
|||||
|
|