j2ee: An example - The JSP [6/20] Previous pageContentsNext page

<html>
    <head>
      <title>Hello JSP</title>
    </head>
    <body>
      <h1>Hello World</h1>
      The time is <%= new java.util.Date() %>
    </body>
</html>

We'll break down the parts of a JSP soon

Previous pageContentsNext page