스프링에서는 XML 설정과 Java 파일 기반의 설정을 통해 빈을 설정하고 의존성을 주입할 수 있습니다. 두 방법은 각기 장단점이 있으며, 스프링 3 이후로는 Java Config가 더 많이 사용되고 있습니다. 각 방법의 개념과 예제를 통해 비교해 보겠습니다.
XML 기반 설정은 스프링에서 전통적으로 사용되어 온 방식으로, XML 파일을 통해 빈을 정의하고 의존성을 주입합니다. applicationContext.xml
과 같은 설정 파일에서 <bean>
태그를 사용하여 빈을 설정합니다.
applicationContext.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 정의 -->
<bean id="helloService" class="org.example.HelloService">
<property name="message" value="안녕하세요, 스프링!" />
</bean>
<bean id="writeAction" class="org.example.WriteAction">
<property name="helloService" ref="helloService" />
</bean>
</beans>
<bean id="helloService" class="org.example.HelloService">
: HelloService
라는 클래스를 빈으로 정의하고, message
라는 프로퍼티를 설정합니다.<bean id="writeAction" class="org.example.WriteAction">
: WriteAction
이라는 클래스에서 helloService
빈을 주입받습니다.Java Config 방식은 자바 클래스를 사용하여 스프링 빈과 의존성을 설정하는 방식입니다. 클래스에 @Configuration
어노테이션을 사용하고, 빈으로 등록할 메서드에 @Bean
어노테이션을 적용합니다.
AppConfig.java
)import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class AppConfig {
@Bean
public HelloService helloService() {
HelloService helloService = new HelloService();
helloService.setMessage("안녕하세요, 스프링!");
return helloService;
}
@Bean
public WriteAction writeAction() {
WriteAction writeAction = new WriteAction();
writeAction.setHelloService(helloService());
return writeAction;
}
}
@Configuration
: 이 클래스를 스프링 설정 파일로 사용함을 나타냅니다.@Bean
: 해당 메서드의 리턴값을 빈으로 등록합니다.helloService()
메서드: HelloService
클래스의 빈을 정의하고, message
프로퍼티를 설정합니다.writeAction()
메서드: WriteAction
클래스의 빈을 정의하고 helloService
빈을 주입합니다.설정 방법 | XML 기반 설정 | Java Config 기반 설정 |
---|---|---|
설정 위치 | applicationContext.xml 등의 XML 파일 | @Configuration 클래스 내 @Bean 메서드 |
타입 안전성 | 없음 (문자열 참조) | 있음 (컴파일 시점에 타입 체크 가능) |
설정의 유연성 | 상대적으로 제한적 | 자바 코드의 유연성을 활용한 동적 설정 가능 |
IDE 지원 | 제한적 (자동 완성 기능 지원 미약) | 메서드 자동 완성, 코드 리팩토링 등의 IDE 지원 |
장점 | 설정과 코드가 분리되어 가독성 및 관리 용이 | 코드 작성과 테스트에 유리한 구조 제공 |
XML과 Java Config 설정을 각각 로드하는 방법은 아래와 같습니다.
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
WriteAction action = context.getBean("writeAction", WriteAction.class);
action.execute();
}
}
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class Main {
public static void main(String[] args) {
ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
WriteAction action = context.getBean("writeAction", WriteAction.class);
action.execute();
}
}