I have developed a project in netbeans using tomcat. But I am new to web hosting. I dont know what is the procedure to upload it in the server. I have used mysql database. suppose i go for a free hosting like 000webhost if i will upload whole the project folder then will it work or i have something else to do?
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<servlet>
<servlet-name>home</servlet-name>
<servlet-class>home</servlet-class>
</servlet>
<servlet>
<servlet-name>hp</servlet-name>
<servlet-class>home</servlet-class>
</servlet>
<servlet>
<servlet-name>rg</servlet-name>
<servlet-class>rg</servlet-class>
</servlet>
<servlet>
<servlet-name>dat</servlet-name>
<servlet-class>dat</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>home</servlet-name>
<url-pattern>/home</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>dat</servlet-name>
<url-pattern>/dat</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>