解决eclipse部署项目时选择exploded,但是启动weblogic时项目无法被加载的问题

在weblogic的Middleware\user_projects\domains_7001\base_domain_7001\config\config.xml中加入

<app-deployment>
    <name>_appsdir_xxx_dir</name>
    <target>AdminServer</target>
    <module-type>war</module-type>
    <source-path>autodeploy\xxx</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
  </app-deployment>

xxx为项目名称

发布了10 篇原创文章 · 获赞 0 · 访问量 3688

猜你喜欢

转载自blog.csdn.net/qq_26891571/article/details/89359308