Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if someone could explain to me exactly how web.xml works? What is the process beyond that?

For instance, can we call Java class directly from here? Also, how does Tomcat's startup.sh work and process everything beyond that?

share|improve this question
Hello, welcome to StackOverflow. Before posting a question, it's a good idea to do a search first to see if you're question has already been asked. In this case, I googled web.xml and came up with this: stackoverflow.com/questions/4538846/why-do-we-use-web-xml – jmort253 May 26 '12 at 13:08
The other part of your question, the part about Tomcat, could be a good one! Do you think you could edit your question with some more specifics about what you don't understand about Tomcat? The more specific questions you ask and the more research you can show you've already done yourself, the better answers you'll get. We'd love to help if you can provide those details. :) Good luck! – jmort253 May 26 '12 at 13:11

closed as not a real question by JB Nizet, Daniel Fischer, Jeff Atwood May 29 '12 at 6:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Web.sml desn't 'work' at all. It is a static specification of some aspects of your web-app. The 'process beyond that' is that the Servlet container loads your application and enforces everything it finds in your web.xml. How it does that is container-specific and irrelevant to you.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.