Spring/노트
스프링 오류 cvc-elt.1: Cannot find the declaration of element 'beans'.
violet:)
2020. 5. 30. 15:14
스프링 시큐리티를 설정하던 도중 만난 오류이다.
No grammar constraints (DTD or XML Schema) referenced in the document.라는 경고와 함께 발생하였다.
서버에서 DTD에 선언한 http://www.springframework.org/schema/beans에 접근하지 못하는 경우 생기는 에러라고 한다.
에러 발생 시 네임스페이스
xmlns:beans="http://www.springframework.org/schema/beans"
수정 후 네임스페이스
xmlns="http://www.springframework.org/schema/beans"
문제 해결에 도움이 된 글 : https://gdtbgl93.tistory.com/112