In this tutorial, we describe how to deploy a Tomcat web application on port 80. As known, 80 is the default port of the web, every time you access a...
In order to access a web application deployed on Tomcat, it is required by default to write the application name in the URL. However, getting rid of the application name...
In this tutorial, we describe 2 ways for deploying Java web applications on Tomcat application server. 1. War file The typical way for deploying a Java web application on Tomcat...
Eclipse doesn’t provide a direct way to convert a Maven web project to a non-maven structure. In this tutorial, we provide an easy 2-steps way to do this. 1- Generate...
When developing a web application in eclipse, the default deploy path of java classes is “WEB-INF/classes” and every folder defined under WebContent is automatically deployed under the root path of the application....
This tutorial shows how to download a file from a web application using Servlet. A typical task in most web applications is to download files stored at the server side to...