1. Introducción
    1. Java Server Pages
    2. JSP compiler
      1. Convierte el JSP en un Servlet
  2. Versiones
    1. JSP 1.0
    2. JSP 1.2
    3. JSP 2.0
      1. JSP EL
    4. JSP 2.1
      1. JavaEE 5
  3. Scripting
    1. Comment
      1. <%-- This is a JSP comment --%>
    2. Expression
      1. <?= expression ?>
      2. <%= new java.util.Date()%>
    3. Scriptlet
      1. <% // Any java source code here %>
    4. Declaration
      1. <%! int x = 10; %>
  4. Variables implícitas
    1. request
      1. HttpServletRequest
    2. response
      1. HttpServletResponse
    3. session
      1. HttpSession
    4. config
      1. ServletConfig
    5. out
      1. JspWriter
    6. application
    7. pageContext
    8. page
    9. exception
  5. Directive
    1. include
      1. file
    2. taglib
      1. uri
      2. prefix
    3. page
      1. import
      2. session
      3. contentType
      4. buffer
      5. errorPage
      6. isErrorPage
  6. JSP EL
    1. Acceso a variables
    2. Acceso a beans
    3. Acceso a colecciones
  7. Custom tags
  8. Acerca de
    1. Topic
    2. Topic