WEB/SpringMVC
SpringMVC :: 스프링 컨테이너의 생명주기, 빈의 생명주기 (Life cycle), InitialzingBean, DisposableBean, @PreDestroy, @PostConstruct
스프링 컨테이너의 생명주기 // 스프링 컨테이너 생성 GenericXmlApplicationContext ctx = new GenericXmlApplicationContext(); // 스프링 컨테이너 설정 ctx.load(“classpath:applicationCTX.xml”); ctx.refresh(); // 스프링 컨테이너 사용 Student student = ctx.getBean(“student“, Student.class); System.out.println(“이름 : ” + student.getName()); System.out.println(“나이 : ” + student.getAge()); // 스프링 컨테이너 종료 ctx.close() 생성 -> 설정 -> 사용 -> 종료 빈의 생명주..
2018. 3. 10. 15:31
최근댓글