컨테이너
생성 > 설정 > 사용 > 종료 순서
//생성
AbstractApplicationContext ctx = new GenericXmlApplicationContext("classpath:applicationCTX.xml");
// 설정 // 사용
Student student1 = ctx.getBean("student1", Student.class);
System.out.println("이름 : " + student1.getName());
System.out.println("나이 : " + student1.getAge());
System.out.println("취미 : " + student1.getHobbys());
System.out.println("키 : " + student1.getHeight());
System.out.println("몸무게 : " + student1.getWeight());
// 종료
ctx.close();
스프링 빈 생명주기
컨테이너가 종료 되면 빈 생명도 끝
빈 막 삭제하고 싶으면
빈아이디.destory();
ex) student1.destory();
스프링 빈 스코프( scope )
scope="singleton"
객체는 같지만 안에 속성값은 다를 수 있다.
반응형
':::: 개발 :::: > └ JSP & SPRING' 카테고리의 다른 글
회사 방화벽 gradle 적용 안될때 해결 방법 (0) | 2016.02.29 |
---|---|
JSTL 간단한 삼항 연산자 (0) | 2015.12.04 |
Poi excel 서버 생성 다운로드 (0) | 2015.06.10 |
resin > weblogic 전환 (0) | 2015.06.03 |
get 파라미터 URLEncoder.encode (0) | 2015.05.08 |
xml 에서 필드 set 할때 (2) | 2015.04.30 |
spring autowired 정리 (0) | 2015.04.20 |
div ul li 로 만들어본 리스트... (0) | 2014.08.22 |