Skip to content

firstJSP.jsp


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta name="generator" content="HTML Tidy, see www.w3.org" />

    <title>First JSP</title>
  </head>

  <body>

    <!-- HTML Comment -->
    <%-- This is a JSP comment --%>

    <h3>This is a simple first look at a JSP page.</h3>

    <p>A change that gets compiled. Another change</p>

    <p>Right now it is <%= new java.util.Date() %></p>

    <p><a href="/java112">Home</a></p>
  </body>
</html>