">
<?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>"
xsi:schemaLocation="<http://www.springframework.org/schema/beans> <http://www.springframework.org/schema/beans/spring-beans.xsd>
<http://www.springframework.org/schema/context> <https://www.springframework.org/schema/context/spring-context-4.3.xsd>">
<!--
# .xml 파일 생성시 'context' namespace 체크하고,
<https://www.springframework.org/schema/context/spring-context-4.3.xsd> 항목 체크
# @Component 를 사용하려면 아래 태그 작성필수.
- base-package는 어느 범위에 있는 객체를 상생해 줄 것인지 선언.
Package 내의 클래스 위에 @Component 애너테이션 작성 필수.
-->
<context:component-scan base-package="com.anno.ex01"/>
</beans>