✔ 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 Declaration tag
Declaration tag is used to declare one or more variables or methods at class level. Variables and methods declare in declaration tag are initialized at the time of JSP initialization. These variables and methods are kept outside of the service method by web container to make them class level.
Syntax: <%! Variable or method Declaration %>
Example:
welcome.jsp
web.xml