Method Declarations
A JSP declaration element can include a method declaration, e.g.:
<%!
String myMethod() {
return “madness” ;
}
%>
<html><head></head><body>
There is <%= myMethod() %> in my method.
</body></html>
For page initialization, use a JSP declaration to override: