개요

ehcache를 사용하기 위해 config xml를 설정하려고 했다. 설정하면서 발생했던 오류와 해결 과정을 적어보려고 한다.

 

 

 

 

ehcache.xml 기본 설정

기본적인 속성을 찾아다녔다. 무심코 지나간 사이트가 속성을 알려주는 사이트였다.. 영어로 되어있어서 지나친 것을 후회한다.

 

 

 

 

cvc-elt.1.a: Cannot find the declaration of element 'ehcache'. 오류

속성들을 붙여 넣었더니 오류가 떠서 검색해봤다. xsi:noNamespaceSchemaLocation="ehcahe.xsd"를 xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" 이렇게 바꾸었더니 오류가 해결되었다.

 

 

s4s-elt-character: Non-whitespace characters are not allowed in schema elements other than 'xs:appinfo' and 'xs:documentation'. Saw '301 Moved Permanently'. 오류

이 오류가 계속 뜨지만 실행하는데는 아무 문제가 없었다. stackoverflow에 이러한 오류 해결방법이 있지만 무슨 소리인지 잘 모르겠어서 포기했다. 

 

 

참고

깃헙 주소: 

https://github.com/ehcache/ehcache.org-site/blob/master/ehcache.xml

사이트 : 

https://www.ehcache.org/ehcache.xml

 

+ Recent posts