我想在IBM RAD 8.5.1的java web项目中添加一个新的servlet映射
我的应用程序中已经有两个现有的servlet: ServletOne和ServletTwo
但是当我做新的> servlet mapping,它在向导中给出以下错误:
This wizard is not applicable for projects without web.xml file.
web.xml已存在于项目中,其内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5" 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_2_5.xsd">
<display-name>MyApplication</display-name>
<servlet>
<servlet-name>ServletOne</servlet-name>
<servlet-class>com.myclass.ClassOne</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>ServletTwo</servlet-name>
<servlet-class>com.myclass.ClassTwo</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<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>
web.xml的位置是: /的WebContent / WEB-INF /
我尝试直接在web.xml源xml文件中添加servlet映射,但随后在servlet名称中出现以下错误:
The value is not among the possible selectors
有人可以帮忙吗?