In Feburary 2016 18,
Log in to the Tomcat server. This process depends on which operating system and version of Tomcat you use. Consult Apache's documentation for further instructions.
Package the JSP files into a .war package if you need to run more than one file. You can do this with the Eclipse development environment by right-clicking the name of the project containing the file, clicking 'Export' and clicking 'WAR file.'
Create a new folder for the JSP file in the 'webapps' folder in your Tomcat server. Create a directory called 'META-INF' in this folder and upload the JSP file or the .war package here. Create a directory called 'WEB-IF' in the 'webapps' folder and upload the XML file that describes the JSP here. Add your manifest file to the 'META-INF' folder.
Upload your JSP file to the main folder you created. Open your main 'server.xml' file and add the context data for your JSP file. Restart Tomcat. Test your JSP file by entering its file path in a browser.
In Feburary 2016 18,