스프링 프레임워크에서는 어떠한 작업이 동작하도록, 개발자가 설정해 놓았을 경우, 그걸 중간에 가로채가서 다른일을 하도록 하는 그런 개념이 조금 있다.
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;
public class MainClass {
public static void main(String[] args) {
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);
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" />
<bean id = "t2" class="kr.co.softcampusbeans.TestBean2" lazy-init="true" init-method="bean2_init"/>
<bean class="kr.co.softcampus.processor.TestBeanPostProcessor"/>
</beans>
TestBean1.class
package kr.co.softcampus.beans;
public class TestBean1 {
public TestBean1() {
System.out.println("TestBean1의 생성자 ");
}
public void bean1_init() {
System.out.println("TestBean1의 init 메서드 ");
}
}
TestBean2.class
package kr.co.softcampus.beans;
public class TestBean2 {
public TestBean2() {
// TODO Auto-generated constructor stub
System.out.println("TestBean2의 생성자");
}
public void bean2_init() {
System.out.println("TestBean1의 Init 메서드 ");
}
}
'웹 프로그래밍(풀스택-->java) > 웹프로그래밍(백엔드-->java)' 카테고리의 다른 글
56. Setter 메서드를 통한 주입 (0) | 2021.12.20 |
---|---|
55. 생성자를 통한 주입 (0) | 2021.12.20 |
53. 빈(Bean) 객체의 생명주기 (0) | 2021.12.20 |
52. 빈 객체 생성하기 (0) | 2021.12.19 |
51. IoC 컨테이너 (0) | 2021.12.17 |