更改servlet的版本,如何更改版本没有错误

时间:2015-10-23 16:41:15

标签: java xml servlets

当我在NetBeans中创建新的servlet时,我在web.xml

中有这个代码
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
 http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">

我必须使用3.0版本,它已在我的作业中指定

我应该在web.xml

中使用此代码
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0"> 

但如果我要更改本机代码,那么我就无法编译servlet。

我该如何解决?

1 个答案:

答案 0 :(得分:1)

您应该更改以下行

xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 

指向3.0的架构