実現したいこと
web.xmlのエラーを除去したい。
発生している問題・エラーメッセージ
eclipseを用いて、動的webプロジェクトを新規で作成した。
web.xmlのに原因不明のエラーが発生し、対処に困っている。
該当のソースコード
java
1<?xml version="1.0" encoding="UTF-8"?> 2<web-app id="WebApp_ID" version="2.5" 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"> 3 <display-name>FirstWebApp</display-name> 4 <welcome-file-list> 5 <welcome-file>index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp</welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file> 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12</web-app>
該当のエラーコード
web-appのエラー内容
Java
1There are '39' errors in 2 'jsp_2_0.xsd'.
versionのエラー内容
Java
1この行で見つかった複数の注釈: 2 - cvc-attribute.3: The value '2.5' of attribute 'version' on element 'web-app' is not valid with respect to its type, 3 'web-app-versionType'. 4 - cvc-attribute.3: The value '2.5' of attribute 'version' on element 'web-app' is not valid with respect to its type, 5 'web-app-versionType'. 6 - Value '2.5' is not in the enumeration list. 7 8It must be one of the following: 9- 2.4 10 11Code:
display-nameのエラー内容
Java
1Invalid element name: 2- display-name 3 4One of the following is 5 expected: 6- distributable 7- context-param 8- filter 9- filter-mapping 10- listener 11- servlet 12- servlet-mapping 13- session-config
補足情報(FW/ツールのバージョンなど)
Eclipse Version: 2021-06 (4.20.0)
あなたの回答
tips
プレビュー