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