what parts of jsp page is included in jspInit() method

I have a Jsp Page once the jsp page is compiled there is a corresponding implementation of Jsp page in container . The container implement the jspInit() method so what elements in jsp page is included in this jspInit() method.
[233 byte] By [vasuscreena] at [2007-10-2 13:40:55]
# 1

<%!

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.

stevejlukea at 2007-7-13 11:34:04 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...