CODEDRAGON ㆍDevelopment/Spring
Spring 설정 메타정보 XML 파일 생성하기 - eclipse/STS
"Spring 설정 메타정보 XML 파일"은 "스프링 프로퍼티 설정 파일"이라고도 합니다.
"src/main/resources" 폴더 >> 마우스 우클릭 >> [New ] >> [Other…] >>
[Spring] 카테고리에서 [Spring Bean Configuration File] 선택 >> [Next]
파일명 입력(beans.xml) >> [Finish]
파일이 생성 되어 졌으며 xml 의 루트태그는 <beans>로 되어 있는 것을 확인할 수 있습니다.
|
<?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">
</beans> |
하단의 [Namespaces]탭을 클릭하면 beans 네임스페이스가 체크되어져 있는 것을 확인할 수 있습니다.
'Development > Spring' 카테고리의 다른 글
PointCut 표현식 예시 - execution (0) | 2020.05.23 |
---|---|
Maven Repositories View 표시하기 - eclipse/STS (0) | 2020.04.26 |
MyBatis 라이브러리 검색 및 설치 - 3.5.1 (0) | 2020.03.27 |
Bean 의존관계 주입 Annotation (0) | 2020.03.21 |
Error-Project configuration is not up-to-date with pom.xml. Select: Maven->Update Project... from the project context menu or use Quick Fix. 해결방법 (0) | 2020.03.16 |