码迷,mamicode.com
首页 > Web开发 > 详细

web.xml配置文件中<async-supported>true</async-supported>报错的解决方案

时间:2017-07-23 16:31:41      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:src   png   amp   modules   foo   2.4   cat   ref   location   

 

   在配置web.xml的时候总是报cvc-complex-type.2.4.a: Invalid content was found starting with element 错误,还出现小红叉。 
   可以尝试以下两种解决方式:

   解决方法一:
          在eclipse中配置xml
         1、 http://www.springmodules.org/schema/cache/springmodules-cache.xsd
         2、http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd 
           然后再将这两个xsd加入到web.xml中就搞定了 ,如下面代码:

    技术分享

 

   

      解决方法二:

        <async-supported>true</async-supported>是web.xml 3.0的新特性,只需将

       <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

     改成:

         <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" 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">

   即可解决。

 

web.xml配置文件中<async-supported>true</async-supported>报错的解决方案

标签:src   png   amp   modules   foo   2.4   cat   ref   location   

原文地址:http://www.cnblogs.com/jedjia/p/web-async-supported.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!