RAD Web Application 3.0 Deployment Descriptor Editor で次のエラーが表示されます。
サーブレット マッピング (インデックス):
サーブレット名: 値は可能な選択の中にありません
次に、私のマーカーの下に:
ウェブの問題:
サーブレット マッピング "index" は、定義されていないサーブレットを参照しています
web.xml
/myweb/WebContent/WEB-INF
不明なウェブの問題
次のように私のweb.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
...
<servlet>
<display-name>index</display-name>
<servlet-name>index</servlet-name>
<jsp-file>/jsp/index.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>index</servlet-name>
<url-pattern>/index</url-pattern>
</servlet-mapping>
...
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
私は何が間違っているのだろうか..?