본문 바로가기
SPRING

[SPRING] @Component 어노테이션 간단 사용법

by madinthe90 2022. 5. 11.
반응형

@Component 어노테이션을 사용해 Bean Configuration 에 Bean을 등록하지 않아도 직접 작성한 Class를 Bean으로 등록할 수 있다.

 

@Component 어노테이션이 부여된 Class들은 자동으로 IOC Container에 Bean으로 등록이 되는데

IOC Container 에게 이러한 어노테이션이 부여된 Class를 자동으로 Bean으로 등록하라고 하기 위해서 XML파일에 따로 설정이 필요하다.

 

- XML 파일에 @Component 설정

XML 파일에 <context:component-scan base-package="com.java.spring"></context:component-scan> 를 추가하면 설정이 완료된다.

base-package에는 스캔할 패키지를 설정한다.

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
		http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

    <context:component-scan base-package="com.java.spring"></context:component-scan>
    
    </beans>

 

 

- @Component 자동 주입

@Component로 등록한 Bean의 자동 주입 방법은 @Bean으로 등록한 빈의 자동 주입 방법과 동일하며
@Autowired, @Qualifier, @Resource를 사용할 수 있다.

 

반응형

댓글