Home » Inheriting Bean in Spring

Inheriting Bean in Spring

by Online Tutorials Library

Inheriting Bean in Spring

By using the parent attribute of bean, we can specify the inheritance relation between the beans. In such case, parent bean values will be inherited to the current bean.

Let’s see the simple example to inherit the bean.

Employee.java

This class contains three properties, three constructor and show() method to display the values.

Address.java

applicationContext.xml

Test.java

This class gets the bean from the applicationContext.xml file and calls the show method.

You may also like