Spring의 BeanFactory는 다양한 형식의 설정 정보를 받아드릴 수 있게 설계 되어있다.
XML 설정 사용
- 최근에는 스프링 부트를 많이 사용하면서 XML기반의 설정은 잘 사용하지 않는다.
- 아직 많은 레거시 프로젝트 들이 XML로 되어있고, 또 XML을 사용하면 컴파일 없이 빈 설정 정보를 변경할 수 있는 장점이 있다.
- GenericXmlApplicationContext를 사용하면서 xml 설정 파일을 넘기면 된다.
- xml 기반의 AppConfig.xml 스프링 설정 정보와 자바 코드로 된 AppConfig.java 설정 정보를 비교하면 거의 비슷한 결과를 얻을 수 있다.
<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">
<bean id="memberService" class="hello.core.member.MemberServiceImpl">
<constructor-arg name="memberRepository" ref="memberRepository"/>
</bean>
<bean id="memberRepository" class="hello.core.member.MemoryMemberRepository"/>
<bean id="orderService" class="hello.core.order.OrderServiceImpl">
<constructor-arg name="memberRepository" ref="memberRepository"/>
<constructor-arg name="discountPolicy" ref="discountPolicy"/>
</bean>
<bean id="discountPolicy" class="hello.core.discount.RateDiscountPolicy"/>
</beans>
<XmlAppConfig 사용 자바 코드>
package hello.core.xml;
import hello.core.member.MemberService;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;
import static org.assertj.core.api.Assertions.*;
public class XmlAppContext {
@Test
void xmlAppContext(){
ApplicationContext ac = new GenericXmlApplicationContext("appConfig.xml");
MemberService memberService = ac.getBean("memberService", MemberService.class);
assertThat(memberService).isInstanceOf(MemberService.class);
}
}
스프링 빈 설정 메타 정보 - BeanDefinition
- 역할과 구현을 개념적으로 나눠 스프링에서 다양한 설정 형식을 지원 할 수 있게 하는 것
- 스프링 컨테이너는 자바 코드인지, XML인지 몰라도 된다. 오직 BeanDefinition만 알면 된다.
- 생성 순서
결과적으로 이 내용을 이해하면 좋지만 이해 못하더라도 개발을 하는것에 크게 문제가 없으므로 상식정도로 알아두면 좋을 것으로 보인다.
'Study > Java&Spring' 카테고리의 다른 글
컴포넌트 스캔 (0) | 2021.07.20 |
---|---|
싱글톤 컨테이너 (0) | 2021.07.20 |
Spring Container/Bean (0) | 2021.07.19 |
Spring, IoC/DI 컨테이너 (0) | 2021.07.17 |
AppConfig (0) | 2021.07.17 |