<< Chapter < Page Chapter >> Page >

I showed you how to create a batch file for compiling your servlet. The batch file that I provided includes these jar files on the classpath. This hasthe effect of making the following packages, among others, available to your compiler. This is a requirement for writing and compiling servlets and JSP.

  • javax.servlet
  • javax.servlet.http
  • javax.servlet.jsp

You should make certain that you can successfully compile, deploy, and access the sample servlet that I provided in Java4308 before continuing with this module.

Discussion and sample code

Before leaving this module, lets make absolutely certain that everything is working by creating, compiling, deploying, and accessing two servlets and one JSP.

Using what you learned in Java4308 , create compile and deploy the two servlets shown in Listing 1 and Listing 2 . Then create and deploy the JSP shown in Listing 3 .

Start your server and point your browser to http://localhost:8080/Inew2338_050 in order to see Figure 2 in your browser.

Figure 2 - Inew2338_050.java.

Missing Figure

Point your browser to http://localhost:8080/Inew2338_051 in order to see Figure 3 in your browser.

Figure 3 - Inew2338_051.java.

Missing Figure

Point your browser to http://localhost:8080/Inew2338_052.jsp in order to see Figure 4 in your browser.

Figure 4 - Inew2338_052.jsp.

Missing Figure

What's next?

If those tests were successful, your system is ready for you to move on to the next module and begin learning the programming details required to create Java servlets.

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: Java4530: Getting Started with Servlets
  • File: Java4530.htm
  • Published: 12/19/13
  • Revised: 06/02/16
Disclaimers:

Financial : Although the Connexions site makes it possible for you to download a PDF file for thismodule at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, you should beaware that some of the HTML elements in this module may not translate well into PDF.

I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version of the module.

In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale on Amazon.com showing me as the author. Ineither receive compensation for those sales nor do I know who does receive compensation. If you purchase such a book, please beaware that it is a copy of a module that is freely available on cnx.org and that it was made and published without my prior knowledge.

Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.

Complete program listings

Listing 1 - Inew2338_050.java.
/*File Inew2338_050.java, Copyright 2004, R.G.BaldwinThe servlet produces the following text in the browser window in large red letters.Hello Big Red World ************************************************/import java.io.*; import javax.servlet.*;import javax.servlet.http.*; public class Inew2338_050 extends HttpServlet{public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException{res.setContentType("text/html"); PrintWriter out = res.getWriter();out.println("<HTML>"); out.println("<HEAD><TITLE>Inew2338_050</TITLE></HEAD>"); out.println("<BODY>"); out.println("<h1 align=\"center\">" +"<font color=\"#FF0000\">"); out.println("Hello Big Red World");out.println("</font></h1>"); out.println("</BODY></HTML>"); }//end doGet()}//end class Inew2338_050
Listing 2 - Inew2338_051.java.
/*File Inew2338_051.java Copyright 2004, R.G.BaldwinThe servlet produces the following text in the browser window in large green letters.Hello Big Green World ************************************************/import java.io.*; import javax.servlet.*;import javax.servlet.http.*; public class Inew2338_051 extends HttpServlet{public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException{res.setContentType("text/html"); PrintWriter out = res.getWriter();out.println("<HTML>"); out.println("<HEAD><TITLE>Inew2338_051</TITLE></HEAD>"); out.println("<BODY>"); out.println("<h1 align=\"center\">" +"<font color=\"#00FF00\">"); out.println("Hello Big Green World");out.println("</font></h1>"); out.println("</BODY></HTML>"); }//end doGet()}//end class Inew2338_051
Listing 3 - Inew2338_052.jsp.
<!--File Inew2338_052.jsp --><html><title>My title</title><body><H1>My JSP Page</H1><H2>Hello, JSP world!</H2><% for (int i=0; i<6; i++) { %><br><%= i %><% }//end for loop %><H3>Isn't this fun</H3></body></html>

-end-

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask