Skip to content
santhosh kumar edited this page Mar 25, 2018 · 3 revisions

Welcome to the Spring-basics wiki!

https://www.edureka.co/spring-framework

https://docs.spring.io/spring/docs/4.3.12.RELEASE/spring-framework-reference/htmlsingle/

scope

getter setter:

private int id; private string name; private Address address;

setter injection:

applicationContext.xml:

main java:

IOC:

ClassPathxmlApplicaitonBean r= new ClassPathxmlApplicaitonBean("applicationConext.xml"); Employee e=(Employee)factory.getBean("student"); e.displayInfo();

Clone this wiki locally