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

Weblogic发布小问题——The root element weblogic-web-app is missing in the descriptor file

时间:2014-07-13 08:11:54      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   文件   

前几天发布项目遇到这样一个小错误,在此记录一下,以便加深一点印象,下次好解决类似的问题!

(对应的应用服务器是WebLogic Server 版本: 10.3.6.0,应用是以文件夹的形式发在服务器的对应目录下的)

1:错误的信息如下图所示

bubuko.com,布布扣

2:分析及解决这个小问题的过程

错误的提示信息还是比较清楚的指出了错误发生的位置和原因的,根据提示信息找到对应的目录查看对应的文件,发现对应的目录下的weblogic.xml文件的内容如下所示

<container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor> 

查看了weblogic.xml配置文件的情况,最简单的情况也是应该有对应的根元素的,所以将其内容修改为如下所示的情况

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">
<weblogic-web-app>
    <container-descriptor>
        <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
</weblogic-web-app>

然后再发布一下应用就没问题了,ok,这个小问题解决了!

 

Weblogic发布小问题——The root element weblogic-web-app is missing in the descriptor file,布布扣,bubuko.com

Weblogic发布小问题——The root element weblogic-web-app is missing in the descriptor file

标签:des   style   blog   http   color   文件   

原文地址:http://www.cnblogs.com/godtrue/p/3838028.html

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