web.xml 3.1
在配置web.xml那块,servlet3.0转换为3.1具体是怎么转换的呢?在网上找的3.0web.xml schema粘贴上去,在配置servlet-mapping的时候serlvet-name和url-pattren标红 提示Element servlet-name is not allowed here
或者说我用3.0的可以吗
在配置web.xml那块,servlet3.0转换为3.1具体是怎么转换的呢?在网上找的3.0web.xml schema粘贴上去,在配置servlet-mapping的时候serlvet-name和url-pattren标红 提示Element servlet-name is not allowed here
或者说我用3.0的可以吗
2016-09-24
<web-app
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"
version="3.1"
metadata-complete="true"
></web-app>
version 这个值还有就是schemaLocation 的webapp_3_1.xsd
我的是这么配置的,没问题
举报