Monday, 3 December 2012

Elements of JSP

JSP Document contains one or more

  • Template data (Static part of the web page)
    • HTML
    • XML
    • or using any markup language
  • JSP Elements (Dynamic part of the web page)
    • Directories
      • Include
      • Page
      • Taglib
    • Scripting elements
      • Declarations
      • Expressions
      • Scriptlet (Java program)
      • Comments
    • Action elements
      • Standard action
        • Built-in
          • Forward
          • Include
          • Plug-in
          • etc.,
        • JSTL
          • Java Server Tag Libraries is like writing our own headerfiles in C/C++ languages.
      • Custom action
    • Implicit objects
      • Request
      • Response
      • Session
      • etc.,

No comments:

Post a Comment