/*

 * OS: Windows 10

 * STS Version: sts-3.9.5.RELEASE

 * Project: Spring Legacy Project

 * Title: context 네임스페이스 사용하기

 */


java 파일
@Configuration
class
@Bean
method


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를 체크함.




728x90

+ Recent posts