반응형
@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를 사용할 수 있다.
반응형
'SPRING' 카테고리의 다른 글
[SPRING] 엑셀 양식에 데이터 삽입 후 다운로드 (Apache POI) (0) | 2023.01.30 |
---|---|
[SPRING] Interceptor 개념 및 사용법 (0) | 2022.08.16 |
[SPRIING] component-scan 사용법 (available: expected at least 1 bean which qualifies as autowire candidate. 에러) (0) | 2022.03.31 |
[SPRING] MyBatis mapper.xml 수정시 서버 재시작없이 반영하기 (0) | 2022.03.28 |
[SPRING SECURITY] BCryptPasswordEncoder 비밀번호 암호화 (0) | 2022.02.04 |
댓글