
to run one application in tomcat server which files we need.i think jsp,xml,html is sufficient

There are several files in Tomcat and each file is having some importance.These files have their specific location. Now if you want to create an application then you need to create a web application folder inside the webapps folder. This web application folder consists of files like jsp, html, web.xml, servlets etc.
After downloading and installing the tomcat, follow these steps to run a simple jsp program.
1)Go to the Control Panel>>System>>Environment Variable and set the variable CATALINA_HOME and put the path of your apache tomcat as a value like: C:\apache-tomcat-5.5.
2)Like that create another variable classpath and put the path of apache-tomcat lib as a value like C:\apache-tomcat-5.5\lib.*;
3)Also put the servlet api.jar file inside the lib folder.
4)Now create a jsp file:'hello.jsp'
<%@page language="java"%> <%String st="Hello World"; %> Message is <%=st%>
5)Put this jsp file inside the apache-tomcat>>webapps>>web application folder.
6)You have to give appropriate name to web application folder like examples and put jsp file into it.
7)Then start the tomcat server by clicking startup.bat from the bin folder of your tomcat.
8)Open your browser and type the following url:
http://localhost:8080/examples/hello.jsp and press enter.
9)You jsp program will then display the output on the browser.
For more information, visit the following link:
Thanks