Jakarta Tomcat is a web application server, has ability as Servlet container and JSP container where you deploy servlet and JSP. Above Jakarta Tomcat, Servlet and JSP will work to serve request from client, normal it shaped browser.

To be able to run Jakarta Tomcat, you want Java Development Kit (JDK). For Jakarta Tomcat Installation, you can downloaded binary from http: //jakarta.apache.org, in format. zip, . tar. gz. you necessary do only decompress file.

In work with Jakarta Tomcat, you have a directory that known as TOMCAT_HOME. TOMCAT_HOME directory where Jakarta Tomcat installed. Furthermore be TOMCAT_HOME you will find several subdirectory, like bin/, conf/, logs/ and webapp/. In subdirectory bin/ found files executable especially to run and stop Jakarta Tomcat. In subdirectory conf/ found files to configuration. In subdirectory logs/ found log files. And subdirectory webapp/ where you can put web application you get up with Servlet and JSP. In subdirectory webapp/ you can create subdirectory. sub merectory this be made as context by jakarta tomcat.

You can run Jakarta Tomcat with execute startup.sh at subdirectory bin/. while to stop Tomcat execute shutdown.sh at sub merectory bin/ also. According to default Jakarta Tomcat at disposal request from client pass port 8080. pass browser web, you can contact http://localhost:8080/

People Also Read