<%!
public void jspInit() {
}
%>
Any method in-between the curly braces in the above code would go into the jspInit() method. If not present, your JSP will inherit a default (I believe empty) implementation of jspInit().
You could also look at the .java file created when your JSP is translated into a servlet. It should be in your server's working directory.