Reputation: 1440
I am aware of 4 configuration files we use for WebLogic :
What is the purpose of using each of these files ?
Upvotes: 4
Views: 16133
Reputation: 1119
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
Upvotes: 14