써먹는 웹개발
[Spring Boot] web.xml 초기 에러 메시지 및 해결방법 본문
728x90
반응형
1. 에러 메세지 : There are '37' erros in 'jps_2_1.xsd'
원인 : url 2개가 구분없이 이어짐
해결방법 : 첫번째 url뒤에 세미콜론(;) 추가
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee; http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" |
2. 에러 메세지 : cvc-complex-type.4: Attribute 'version' must appear on element 'web-app'
원인 : web-app 요소에 반드시 버전을 표기해야되는데 없음
해결방법 : 요소에 version 추가
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee; http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" id="WebApp_ID" version="2.4"> |
728x90
반응형
'Server > Spring' 카테고리의 다른 글
[Spring] 메모리 누수 원인 및 해결방법 (0) | 2022.12.06 |
---|---|
[Spring Boot] devtools를 사용하지 않는 이유 (0) | 2021.12.21 |
[Spring] @RestController 사용시 화면 이동이 되도록 처리하는 방법 (0) | 2021.12.20 |
[Spring Boot] html 호출시 소스엔 문제없는데 Request method 'GET' not supported가 뜨는 이유 (0) | 2021.12.17 |
[Spring Boot] static 폴더와 template 폴더의 차이 (0) | 2021.12.06 |
Comments