Quickly build the runtime, debugging, and compilation environments of Servlet and JSP

Source: Internet
Author: User
Tags apache tomcat

I believe that many of my friends who are learning Servlet and JSP have a problem, that is, how to quickly and conveniently create a runtime, debugging, and compilation environment for Servlet and JSP. I am studying at MIT (Master of Information Technology) abroad. Now I am taking this course in WBIS (Web Based Information Systems). It contains many technologies, such as Java, Perl, CGI, Servlet, ASP, Java Script, JSP, OO, UML, etc. The following article describes the related software, installation methods and related instructions provided by the school. The required software (the school has provided us with a CD) I have installed and tested all of them. Here, I strongly recommend it to you, because the installation process is very simple, as long as you follow the methods in the following article step by step, 100% can be successful, I believe it will help you. Although the article is in full English, it is very simple and everyone can understand it. If you have any questions, we hope you can discuss them together.







(Note: The four software mentioned in this article are JDK 1.3.1, BlueJ 1.2.0, Apache Tomcat 4.0, and bluej_tomcat_config.zip. Among them, BlueJ is used to create and compile Servlet, while the last zip file is used to configure BlueJ and Tomcat .)







BlueJ, Jakarta Tomcat and Java 2 SDK Installation







1. Install the Java 2 Software Development Kit (JDK)







It is recommended that you install JDK 1.3.1, which can be downloaded from here (http://www.csu.edu.au/faculty/sciagr/sis/subjects/itc357/j2sdk-1_3_1-win.exe ), or from http://java.sun.com (unfortunately it is a 30 M download so if you have a slow modem it may be better to acquire it on CD. for example, there is a CD containing JDK with plain Java text books ).







Install JDK to the default directory, which is c: \ jdk1.3.1







You may use a different version of JDK (1.2 or later) but you will need to change the Tomcat configuration files startup. bat and shutdown. bat to point to the directory location.







2. Install bluewis a basic Java editing and compilation environment that sits on top of JDK)







It is recommended that you install BlueJ 1.2.0, which can be downloaded from here (http://www.csu.edu.au/faculty/sciagr/sis/subjects/itc357/bluejsetup-120.exe) or from http://bluej.org







Install BlueJ to the default directory c: \ BlueJ







If you install a different version of BlueJ or place it in a different directory the configuration files provided in bluej_tomcat_config.zip will not automatically go into the correct directories and you will have to manually extract each one.







3. Install Apache Tomcat (Tomcat is a Java web application server and will allow you to test your Servlets and JSP files locally)







It is recommended that you install Apache Tomcat 4.0, which can be downloaded from here (http://www.csu.edu.au/faculty/sciagr/sis/subjects/itc357/jakarta-tomcat-4.0.4.exe) or from http://jakarta.apache.org/







Install Tomcat to the default directory c: \ Program Files \ Apache Tomcat 4.0







If you install a different version of Tomcat or place it in a different directory, you will need to configure it manually as the configuration files provided in bluej_tomcat_config.zip will not automatically go into the correct directories and varous paths settings contained in them will not be correct.







4. Configure BlueJ and Tomcat to work together







The recommended way to do this is to download the file bluej_tomcat_config.zip (http://www.csu.edu.au/faculty/sciagr/sis/subjects/itc357/bluej_tomcat_config.zip) and extract the files to the root directory on drive c:, making sure that you choose the option to use folder names.







If you need to manually configure BlueJ or Tomcat, you need to troubleshoot problems or you want to examine the configuration options chosen, they are explained here.



Compiling and Running Servlets on Your Local Machine







1. Run BlueJ and open the existing project in the c: \ Program Files \ Apache Tomcat 4.0 \ webapps \ testing \ Web-inf \ classes directory







2. Create a new class and enter the code for your servlet, or use Edit-Add class from file to import an existing servlet source file.







3. Compile the servlet.







4. start tomcat by double-clicking on startup. bat in the c: \ Program Files \ Apache Tomcat 4.0 \ bin directory. this will start Tomcat listening on port 8080 on your local machine (you don't need to be online ).







5. Start up your web browser and open the URL http: // localhost: 8080/testing/servlet/Servletname where Servletname is the name of your servlet.



File locations and relative references within local and remote servlets







HTML files located in a directory like c: \ Program Files \ Apache Tomcat 4.0 \ webapps \ testing will be accessible through a URL like http: // localhost: 8080/testing/filename.html







Similarly if you place an HTML file in your home directory on the SWAP server it will be assessible through a URL like http://swap.csu.edu.au: 8080/username/filename.html







If you need to place an image in a page generated by a servlet, you can place it in c: \ Program Files \ Apache Tomcat 4.0 \ webapps \ testing (or on the swap server in your home directory) and refer to it in the HTML .. /imagename.jpg (eg. )







If you need to link to another servlet or specify another servlet within the ACTION attribute of a form, you can simply use the servlets name. for example you cocould use the code <a href = "OtherServlet"> to link to another servlet assuming that you have a file in the testing \ Web-inf \ classes directory called OtherServlet. class (or in your Web-inf \ classes directory on the SWAP server)







If you have a static HTML page that has a link to a servlet or a form with an ACTION attribute that refers to a servlet, and the HTML page is located in the c: \ Program Files \ Apache Tomcat 4.0 \ webapps \ testing directory or in your home directory on the SWAP server, use the URL servlet/ServletName to refer to the servlet (eg. ACTION = "servlet/ServletName ").







It is recommended that you use relative references like these in your HREF, SRC and ACTION attributes so that you can easily move your pages from the local machine to the server.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.