package
com.knowledgewalls;
import
org.springframework.context.ApplicationContext;
import
org.springframework.context.support.ClassPathXmlApplicationContext;
public
class
RunMyProgram {
public
static
void
main(String[] args) {
ApplicationContext context =
new
ClassPathXmlApplicationContext(
"bean-configuration.xml"
);
Students student1 = (Students) context.getBean(
"student"
);
Students student2 = (Students) context.getBean(
"student"
);
Students student3 = (Students) context.getBean(
"student"
);
System.out.println(student1.hashCode());
System.out.println(student2.hashCode());
System.out.println(student3.hashCode());
}
}