e. Bean Life Cycle - kimxavi/spring_tutorial GitHub Wiki
์คํ๋ง bean์ ๋ผ์ดํ ์ฌ์ดํด์ ์ดํดํ๊ธฐ ์ฝ๋ค. bean์ด ์ธ์คํด์คํ ๋ ๋, ์ฌ์ฉ ๊ฐ๋ฅํ ์ํ๋ฅผ ์ป๋ ์ด๊ธฐํ๊ฐ ์์ฒญ๋๋ค. ์ ์ฌํ๊ฒ, bean์ด ๋ ์ด์ ํ์ํ์ง ์๊ณ ์ปจํ ์ด๋์์ ์ ๊ฑฐ๋ ๋, cleanup์ด ์์ฒญ๋๋ค. ์ init-method, destroy-method ํ๋ผ๋ฏธํฐ๋ก bean์ ์ค์น์ ๋ถํด๋ฅผ ์ ์ํ๋ค. init-method๋ bean์ด ์ธ์คํด์คํ ๋๋ ์ฆ์์ ๋ถ๋ฌ์ง๋ค. ์ ์ฌํ๊ฒ, destroy-method๋ ์ปจํ ์ด๋์์ bean์ด ์ ๊ฑฐ๋๊ธฐ ์ง์ ์ ๋ถ๋ฌ์ง๋ค.
HelloWorld.java
package com.tutorialspoint;
public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message : " + message);
}
public void init(){
System.out.println("Bean is going through init.");
}
public void destroy(){
System.out.println("Bean will destroy now.");
}
}
MainApp.java
package com.tutorialspoint;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
public static void main(String[] args) {
AbstractApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
obj.getMessage();
context.registerShutdownHook();
}
}
- ์ฌ๊ธฐ์ AbstractApplicationContext ์ ์ ์ธ๋ registerShutdownHook() ์ ง๋ค์ด hook์ ๋ฑ๋กํด์ผํ๋ค. ์ด๊ฒ์ ์ ์ ํ ์ ง๋ค์ด๊ณผ ์๋ฉธ์๋ฅผ ํธ์ถํ๋ค.
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-3.0.xsd">
<bean id="helloWorld"
class="com.tutorialspoint.HelloWorld"
init-method="init" destroy-method="destroy">
<property name="message" value="Hello World!"/>
</bean>
</beans>
Bean is going through init.
Your Message : Hello World!
Bean will destroy now.
๋ง์ฝ bean๋ค์ด ๋ง์ ๊ฒฝ์ฐ default-init-method and default-destroy-method๋ฅผ ํ์ฉํด์ ์ค์ ํด์ค๋ค.
<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-3.0.xsd"
default-init-method="init"
default-destroy-method="destroy">
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here -->
</bean>
</beans>