NetBeans taking JSF Server library instead of registered libraries

前端 未结 1 1765
梦谈多话
梦谈多话 2021-01-28 13:48

I have an Enterprise Application (EAR) with this specs:

  • JAVA EE 5
  • JDK 6
  • JSF 2
  • Running on Weblogic 11g(10.3.6)

I have a WA

相关标签:
1条回答
  • 2021-01-28 14:17

    You'll want to set the following in your weblogic.xml file:

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

    You can find more information here:

    http://docs.oracle.com/cd/E24329_01/web.1211/e21049/weblogic_xml.htm

    Weblogic Configuration - prefer-web-inf-classes

    0 讨论(0)
提交回复
热议问题