How to configure List in Spring Bean
We can configure List in Spring bean using <list> tag within <property> tag. We can configure list literals and object reference. Let's configure list of String and Address below Employee class- package com.javagladiator.spring.core.trainning; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.Set; public class Employee { private Integer empId; private String name; private List<String> phones; private List<Address> addresses; public Integer getEmpId() { return empId; } public void setEmpId(Integer empId) { this.empId = empId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<String> getPhones() { return phones; } public void setPhones(List<String> phones) { this.phones = phones; } public List<Address> getAddresses() { return addresses; } public void setAddresses(List<Address> addresses) { this...