Showing posts with label web.xml. Show all posts
Showing posts with label web.xml. Show all posts

Wednesday, March 13, 2013

comment_icon 0 Web.XML Explained

The web.xml Deployment Descriptor file tell about that how application will be deployed in the server or servlet container such as TOMCAT This file is Required for every application which will be deployed on Tomcat/Apache . The location of Web.XML is always Application-root/WEB-INF/web.xml or WebContent/WEB-INF/web.xml There is minimum one tag is required in web.xml that is  <web-app> TAG. This  contains following information  <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee...