JSPs Tutorials


JavaServer Pages is a Java technology involved in web development. Writing a JSP page is similar to writing an HTML page. It focuses on the creation of the "View" which can be thought of as the part of an application that a user directly interacts with. JSPs typically contain code focused on the layout and display of data. More advanced logic and computations are usually better left for normal Java classes, and the resulting data can be sent to a JSP for display.
  1. How do I use JSTL on my JSPs?
  2. How do I use expression language with JSTL?
  3. How do I import content from another site into my JSP?
  4. How do I create a JSP error page to handle particular error codes?
  5. How do I create a JSP error page to handle exceptions?
  6. How do I import another web page into my JSP and display its source code?
  7. How do I create a tag using SimpleTagSupport?
  8. How do I create a tag using SimpleTagSupport that uses the tag body?
  9. How do I access a JSTL variable in a scriptlet?