Weblogic Config Files - weblogic-application.xml, weblogic.xml, application.xml, web.xml

13,263

The web.xml is the standard JEE descriptor for a WAR file. The application.xml is for the EAR file. The weblogic.xml and weblogic-appliation are WebLogic specific files for the WAR and EAR respectively. See sections A and B here:

http://docs.oracle.com/middleware/1213/wls/WBAPP/toc.htm

Share:
13,263
westandy
Author by

westandy

I ask a lot of questions because learning is the best part of developing software. I am currently working in TypeScript/JavaScript, emphasizing functional programming (FP), and some C++ legacy. In my free time, I am teaching myself Clojure because I enjoy Common Lisp-dialects, FP, and no types.

Updated on June 13, 2022

Comments

  • westandy
    westandy almost 2 years

    I am aware of 4 configuration files we use for WebLogic :

    1. web.xml
    2. weblogic.xml
    3. weblogic-application.xml
    4. application.xml

    What is the purpose of using each of these files ?