2.3을 사용하다가 3.1로 변경하면서 나온 에러메시지
web-app_3_1.xsd 부분의 버전을 없에버리고 해결
에러메시지
schema_reference.4: Failed to read schema document 'platform:/plugin/org.eclipse.xsd/cache/
www.w3.org/2001/xml.xsd', because 1) could not find the document; 2) the document could not be
read; 3) the root element of the document is not <xsd:schema>
수정전
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
수정후
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app.xsd"
version="3.1">
'개발 > java' 카테고리의 다른 글
JSmooth를 이용해 실행가능한 jar 파일을 exe 파일로 만들기 (0) | 2022.02.07 |
---|---|
java 404, 500에러 페이지 지정 및 에러페이지 템플릿 만들기 (0) | 2022.02.03 |
openjdk 설치링크 (0) | 2021.11.29 |
댓글