Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is web.xml?and its use?

Answer Posted / shiva

web.xml is useful to map the url pattern given by the client
to the appropriate servlet. This is the main purpose of the
web.xml.

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between an Interface and an Abstract class?

1220


What is google full form?

1058


What is garbage collector?

1129


What is ternary operator?

1053


What is the difference between object oriented programming language and object based programming language?

1057


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

2096


Can anonymous class have constructor?

1062


Can constructor be protected in java?

1015


What is immutable class in java?

998


Why do we need singleton class?

1043


Explain tree set and its features?

1106


Explain importance of finally block in java?

1081


What are the 6 mandatory procedures for iso 9001?

1088


When a lot of changes are required in data, which one should be a preference to be used? String or stringbuffer?

1286


What is package protected in java?

1024