/*
* OS: Windows 10
* STS Version: sts-3.9.5.RELEASE
* Project: Spring Legacy Project
* Title: context 네임스페이스 사용하기
*/
xml 파일 내의 context네임스페이스를 사용하기위해 다음 추가.
<beans
xmlns:context="http://www.springframework.org/schema/context"
>
<context:annotation-config/>
Console>
no declaration can be found for element 'context:annotation-config'.
해결:
xsi:schemaLocation 부분을 아래와 같이 수정하면 해결됨.
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
==>
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
간단한 방법으로
Eclipse의 Source다음에 있는 Namespaces탭을 클릭 후 context를 체크함.
'Framework > Spring' 카테고리의 다른 글
[Spring MVC] Eclipse 에서 Import 하기 (0) | 2018.09.03 |
---|---|
[Spring MVC] Eclipse 안에서 jsp 파일에 한글 설정 (0) | 2018.09.02 |
[Spring MVC] web.xml 한글 처리 (0) | 2018.09.02 |
[Spring] main 함수에서 getBean 사용 (0) | 2018.08.31 |
[Spring] xml 파일(Spring Bean Configuration File) 생성 (0) | 2018.08.31 |