What is difference between web.xml and weblogic.xml

Rajeev picture Rajeev · Jun 4, 2014 · Viewed 28.3k times · Source

Recently I started working in Weblogic server. I was trying to add runtime environment when I added a weblogic.xml has been added by default. I searched over Internet for differences but I am still confused. Can anybody tell in details ?

Answer

Suseendran Kandasamy picture Suseendran Kandasamy · Jun 4, 2014

The web.xml file provides configuration and deployment information for the Web components that comprise a Web application. Examples of Web components are servlet parameters, servlet and JavaServer Pages (JSP) definitions, and Uniform Resource Locators (URL) mappings. This is located in the WEB-INF directory.

Weblogic.xml is the configuration file for all the applications lying in the domain created. It lies in the META-INF directory and contains parameters such as auth-filter, charset-params, container-descriptor, context-root, description etc..

See this link.. https://in.answers.yahoo.com/question/index?qid=20081108233649AAMb2ks

Hope this will help you..