본문 바로가기
IT/Spring

[Spring] - 스프링 이클립스(STS) web.xml 파일 There are '37' errors in 'jsp_2_1.xsd' 에러 해결 방법

by 차이나는 개발자 2022. 2. 18.
728x90
반응형

#스프링 이클립스(STS) web.xml 파일 There are '37' errors in 'jsp_2_1.xsd' 에러 해결 방법

 

 

#xml파일에서 http://java.sun.com/xml/ns/javaee 뒤에 세미클론(;)을 추가해줍니다.

<!-- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee; <- 세미클론 추가 -->
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee; http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
  <display-name>example</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

 

 

 

728x90
반응형

댓글