JSP Components Declaratives Scriptlets Expressions
JSP Components - JSP has mainly six type of components. 1. JSP Declaratives 2.JSP Scriptlets 3.JSP Expressions 4.Directives 5.Implicit Objects 6.Standard Actions JSP Declaratives - JSP Declaratives is used for embed Java code in class label. Any code which is written in JSP Declaratives will goes to scope of a class of servlet. JSP Declaratives is open with <%! and closed with %> syntax. If any variable is made in JSP Declaratives means this variable will be available for any where with in JSP. Example - <HTML> <HEAD> <BODY> <%! public int getSum(int a, int b){ return a+b; ...