45
ComPonent models in Java
boolean isCurrentYearBdayPassed =
(currentMonth > birthMonth)
|| ((currentMonth = = birthMonth)
&&(currentDate > = birthDate));
if (isCurrentYearBdayPassed) {
age = currentYear - birthYear;
} else {
age = currentYear - 1 - birthYear;
}
return age;
}
}
e configuration file is an XML file named Beans.xml. e XML file is placed
under the source folder of the project. As mentioned earlier, the XML file is used
for uniquely identifying beans and the creation of objects. In the Spring component
model, the components get registered with the Spring container through the XML
configuration file. When the Spring application is loaded in the memory, the XML
file is read first, and the container uses this configuration file ...