当我在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。
我该如何解决?
答案 0 :(得分:1)
您应该更改以下行
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
指向3.0的架构