다양한 설정 형식 지원 - 자바 코드, XML 🔗
ApplicationContext 구현체
AnnotationConfigApplicationContext
- 애노테이션 기반 자바 코드 설정 사용
- 지금까지 했던 방식!
new AnnotationConfigApplicationContext(AppConfig.class)
AnnotationConfigApplicationContext
클래스를 사용하면서 자바 코드로된 설정 정보를 넘긴다.
GenericXmlApplicationContext
- XML 설정 사용
- 최근에는 스프링 부트를 많이 사용하면서 XML 기반의 설정은 잘 사용하지 않는다.
- 하지만 많이 레거시 프로젝트가 아직 XML을 많이 사용하고 있으므로, 숙지해두는 것이 좋다!
XxxApplicationContext
테스트 코드
public class XmlAppContext {
@Test
void xmlAppContext(){
ApplicationContext ac = new GenericXmlApplicationContext("appConfig.xml");
MemberService memberService = ac.getBean("memberService", MemberService.class);
assertThat(memberService).isInstanceOf(MemberService.class);
}
}
AppConfig.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"/>
</beans>