问答详情
源自:2-2 整合配置SpringMVC框架

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的可以吗

提问者:勤劳的程序员 2016-09-24 18:26

个回答

  • 我叫慢慢丶
    2016-09-25 00:26:13
    已采纳

    <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 

    我的是这么配置的,没问题