标签:style blog http color java os io 文件
problem: cvc-enumeration-valid: string value ‘3.0‘ is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee:<null>消息图标 - 错误 VALIDATION PROBLEMS WERE FOUND problem: cvc-enumeration-valid: string value ‘3.0‘ is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee:<null>
因为创建项目的时候用的是JAVAEE6,所以生成web.xml文件的时候是这样的:
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
weblogic11g并不支持web-app_3_0.xsd的定义。所以报错了。
改为如下就ok了:
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
在weblogic11g上发布项目遇到的一个错误(不支持web-app_3_0),布布扣,bubuko.com
在weblogic11g上发布项目遇到的一个错误(不支持web-app_3_0)
标签:style blog http color java os io 文件
原文地址:http://blog.csdn.net/qianquan003/article/details/38380863