✔ JSP CHAPTERS:-
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
JSP Scriptlet tag
Scriptlet tag contains the any no. of java code statements. It may contain variables declaration or valid expressions. When JSP is translated into servlet, java code written in the scriplet tag is moves to the _jspService() method by web container.
Syntax: <% java code %>
Note: Variable and methods declare in scriplet tag are not of class level declaration.
Syntax: <% java code %>
Note: Variable and methods declare in scriplet tag are not of class level declaration.
Example:
welcome.jsp
web.xml