A "Hello World" Java Server Page

Java Server Pages are, in the most basic sense, Web pages with embedded Java code. The embedded Java code is executed on the server before the page is returned to the browser. If a picture is worth a thousand words, in this case an example is worth a thousand explanations. Listing 14.1 shows a basic Java Server Page.

Code Listing 14.1. HelloWorld.jsp
<HTML>
<BODY>
<%
    out.println("<H1>Hello World!</H1>");
%>
</BODY>
</HTML>

Although you can probably guess what the browser will display when this page runs, Figure 14.1 shows the output from this page.

Figure 14.1. A Java Server Page can generate HTML output.

Get Special Edition Using Java™ 2 Enterprise Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.