René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

JSP Elements

Comments

<!-- comment that can be seen by the client -->
<!-- comment that shows the current date: <%= (new java.util.Date()).toLocaleString() %> -->
<%-- Client cannot see this comment --%>

Directives

<%@ directive attribute_name=value %>
<%@ directive 
  attribute_name1=value1 
  attribute_name2=value2 
  attribute_name3=value3
%>
Directive can be include, page and taglib.

include

Possible attributes: file.

page

Possible attributes:
  • language
  • extends
  • import
  • session
  • buffer
  • autoFlush
  • isthreadSafe
  • info
  • errorPage
  • contentType
  • isErrorPage

taglib

Possible attributes:
  • uri
  • prefix