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

解决方案 »

  1.   

     was autodeployed and cannot be redistributed.这个是自动部署的,不能手工重新部署。 你得补习一下英文。
      

  2.   

    谢 楼上这位朋友了  就是你说的这个问题 哈哈  我当时没留心  网上搜了后,回答者多南辕北辙 我修改了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>