今天在weblogic上部署项目的时候,碰到麻烦的事情!
即出现了部署失败的提示(具体提示如下): 部署尚未安装。
 weblogic.management.DeploymentException: [Deployer:149186]The application 'enterPortal' was autodeployed and cannot be redistributed.这个问题很棘手,解决了好长时间依旧没能排除!麻烦碰到过这个问题并解决的朋友能帮我解决下,没碰到过的朋友来浏览下,和我一个处境的朋友一起来研究下! 
先谢谢大家了!!

解决方案 »

  1.   

    楼上这位朋友 根本的原因其实后面的英文已经进行了说明!你说的可能是java报的异常哪些吧,虽然那是直接原因但是却略显单薄!我发的另一个帖子中那个朋友正是依据我的描述找到了问题的解决方案!随即附上解决方法:
    修改weblogic中的config.xml进行自动部署就成了   自动部署配置:
    在文件中的<configuration-version>属性下面添加代码:
    <app-deployment>
       <name>项目名称</name>
       <target>AdminServer</target>
       <module-type>war</module-type>
       <source-path>autodeploy\项目名称</source-path>
       <security-dd-model>DDOnly</security-dd-model>
       <staging-mode>nostage</staging-mode>
    </app-deployment>