web.xml 3.1

来源:2-2 整合配置SpringMVC框架

勤劳的程序员

2016-09-24 18:26

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

写回答 关注

1回答

  • 我叫慢慢丶
    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 

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

    勤劳的程序员

    非常感谢!

    2016-09-27 17:01:51

    共 1 条回复 >

Java高并发秒杀API之web层

Java实现高并发秒杀API的第三门课,介绍Web层的设计和实现

66079 学习 · 395 问题

查看课程

相似问题