본문 바로가기
웹 프로그래밍(풀스택-->java)/웹프로그래밍(백엔드-->java)

53. 빈(Bean) 객체의 생명주기

by 백엔드개발자0107 2021. 12. 20.

스프링 프레임워크에는 몇가지 중요한 개념이 있는데, 하나가 ioc컨테이너, 어떠한 작업이 발생했을때, 그 작업에 대해서

 

스프링 프레임워크가 중간에 가로채가는 그러한 중요한 개념이 있는데 그중에 하나가 빈 객체 생명주기 이다.

 

 


 

//자 보면 ClassPathXmlApplicationContext 이 객체를 만드는게 xml을 로딩하는 부분이 될것이다.

// 이 xml파일에 정의해논 빈들중에서 그냥아무것도 설정이 되어있지 않은 빈들은 singleton이다.

//고로 바로 객체가 생성이된다

ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("kr/co/softcampus/config/beans.xml");


MainClass.java

 

package kr.co.softcampus.main;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import kr.co.softcampus.beans.TestBean1;
import kr.co.softcampus.beans.TestBean2;
import kr.co.softcampus.beans.TestBean3;
import kr.co.softcampus.beans.TestBean4;

public class MainClass {

	public static void main(String[] args) {
		//자 보면 ClassPathXmlApplicationContext 이 객체를 만드는게 xml을 로딩하는 부분이 될것이다.
		// 이 xml파일에 정의해논 빈들중에서 그냥아무것도 설정이 되어있지 않은 빈들은 singleton이다.
		//고로 바로 객체가 생성이된다
		ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("kr/co/softcampus/config/beans.xml");
		
		TestBean1 t1 = ctx.getBean("t1",TestBean1.class);
		System.out.printf("t1 : %s\n",t1);
		
		System.out.println("----------------------------");
		
		TestBean2 t2 = ctx.getBean("t2",TestBean2.class);
		System.out.printf("t2 : %s\n",t2);
		
		System.out.println("----------------------------");
		TestBean3 t3 = ctx.getBean("t3",TestBean3.class);
		System.out.printf("t3: %s\n",t3);
		
		System.out.println("----------------------------");		
		TestBean4 t4 = ctx.getBean("t4",TestBean4.class);
		System.out.printf("t4: %s\n",t4);
		
		
		//IOC컨테이너를 더이상 사용하지 않기 떄문에 닫은것이고 이떄 객체들이 소멸이 된다.
		ctx.close();
	}

	
	
	
}

beans.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	                	   http://www.springframework.org/schema/beans/spring-beans.xsd"
	                	   default-init-method="default-init" default-destroy-method="default-destroy">



<!-- 객체가 생성될 떄 생성자가 호출된 이후 init-method에 설정한 메소드가 자동으로 호출되고 IoC컨테이너의 close메소드를 호출하면 
객체가 소멸되며 destroy-method에 설정한 메소드가 자동으로 호출된다. 
 -->
<bean id="t1" class='kr.co.softcampus.beans.TestBean1' lazy-init="true" init-method="bean1_init" destroy-method="bean1_destroy"/>
	<!--init-method와 destroy-method가 설정되어 있지 않다면 default-init-method와 default-destroy-method에 설정되어 있는 메소드를 호출한다.  -->
<bean id ="t2" class="kr.co.softcampus.beans.TestBean2" lazy-init="true"/>
<!-- init-method와 destroy-method, default-init-method와 default-destroy-method에 등록되어 있는 메소드가 모두 있을경우
init-method,destroy-method에 설정되어있는 메소드가 호출된다. 
 -->
<bean id="t3" class="kr.co.softcampus.beans.TestBean3" lazy-init="true"  init-method="bean3_init"  destroy-method="bean3_destroy"/>

<!-- 
default-init-method,default-destroy-method: 설정한 메소드가 존재하지 않으면 무시된다.
init-method,destroy-method: 설정한 메소드가 없으면 오류가 발생한다.
 -->


<bean id="t4" class="kr.co.softcampus.beans.TestBean4" lazy-init="true" init-method="bean4_init" destroy-method="bean4_destroy">

</bean>

</beans>

 

TestBean1.java

 

package kr.co.softcampus.beans;

public class TestBean1 {

	public TestBean1() {
		System.out.println("TEST Bean 의 생성자입니다.");
	}
	public void bean1_init() {
		System.out.println("TestBean1의 init메서드 ");
	}
	public void bean1_destroy() {
		System.out.printf("TestBean1의 destroy 메서드 ");
		
	}
	
}


TestBean2.java

 

package kr.co.softcampus.beans;

public class TestBean2 {

	public TestBean2() {
		System.out.println("Testbean2의 생성자");
		
	}
	
	public void default_init() {
		System.out.println("TestBean2의 default_init");
		
	}
	
	public void default_destroy() {
		System.out.println("TestBean2의 default_destroy");
		
	}
}

 

TestBean3.java

 

package kr.co.softcampus.beans;

public class TestBean3 {
	
	public TestBean3() {
		
		System.out.println("TestBean3의 생성자");
	}

	public void default_init() {
		
		System.out.println("TestBean3의 default_init");
	}
	
	public void default_destroy() {
		System.out.println("TestBean3의 default_destroy");
	}
	
	public void bean3_init() {
		
		System.out.println("TestBean3의 init 메서드 ");
		
	}
	
	public void bean3_destroy() {
		System.out.println("TestBean3의 destroy 메서드 ");
		
	}
	
}

 

TestBean4.java

 

package kr.co.softcampus.beans;

public class TestBean4 {

	public TestBean4() {
		// TODO Auto-generated constructor stub
		System.out.println("TestBean4의 생성자 ");
		
	}
	
	
}