Created
June 30, 2011 11:50
-
-
Save eirikbakke/1056079 to your computer and use it in GitHub Desktop.
Basic structure of a JSP file that generates a HTML file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Boilerplate. --> | |
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" | |
xmlns:c="http://java.sun.com/jsp/jstl/core" | |
version="2.0"> | |
<jsp:directive.page | |
language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" /> | |
<jsp:text><![CDATA[<!doctype html>]]></jsp:text> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<link href="style.css" rel="stylesheet" title="Normal" /> | |
<title>Title of the page</title> | |
</head> | |
<body> | |
<p>Here goes the content of the page.</p> | |
<p>Attributes set by the servlet are accessed like this: ${someAttribute}. This will insert | |
whatever is returned by the attribute object's toString() method.</p> | |
<p>If we instead write ${someAttribute.someField}, this will insert whatever is returned by | |
the attribute object's getSomeField() method (or throw an exception if that method does not | |
exist). In other words, the JSP engine capitalizes the first letter of "someField" and | |
prefixes it with "get" to it to find the name of the method to call.</p> | |
<p>Below is an example of a for loop in JSP (actually, it's provided by a library called | |
JSTL, but never mind about that). It outputs an HTML ordered list with each of the items | |
returned by someAttribute.getSomeListOfObjects():</p> | |
<ol> | |
<c:forEach items="${someAttribute.someListOfObjects}" var="oneObject"> | |
<li>${oneObject}</li> | |
</c:forEach> | |
</ol> | |
<!-- If this document uses JavaScript/JQuery, the <script> tags should be generated as | |
follows: --> | |
<![CDATA[<script type="text/javascript" src="scripts/lib/jquery-1.6.1.min.js"></script>]]> | |
<![CDATA[<script type="text/javascript" src="scripts/mainPage.js"></script>]]> | |
</body> | |
</html> | |
</jsp:root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment