web.xml <async-supported>标签报错解决方法

来源:互联网 发布:数码大师 mac版下载 编辑:程序博客网 时间:2024/06/06 02:24
 在MyEclipse中配置web.xml加上:
  1、 http://www.springmodules.org/schema/cache/springmodules-cache.xsd

   2、http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd 

如下:

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instancehttp://www.springmodules.org/schema/cache/springmodules-cache.xsdhttp://www.springmodules.org/schema/cache/springmodules-ehcache.xsd " 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">


1 2