본문 바로가기
개발/spring, spring boot

[spring 에러] 일치하는 와일드 카드 문자가 엄격하게 적용되지만 ... 요소에 대한 선언을 찾을 수 없습니다.

by 가시죠 2021. 1. 17.
반응형

<beans:beans xmlns="http://www.springframework.org/schema/security"
 xmlns:beans="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-3.1.xsd
  http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd">


와 같은 내용이 있을때 xmls 항목을 추가하면 xsi:schemaLocation의 내용도 추가해야 한다.
즉 위와 같이 xmlns="http://www.springframework.org/schema/security" 항목을 추가하면
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd" 도 xsi:schemaLocation에 추가해 주어야 한다.

반응형

댓글