赞
踩
Primitive
|
Wrapper
|
boolean
|
java.lang.Boolean
|
byte
|
java.lang.Byte
|
char
|
java.lang.Character
|
double
|
java.lang.Double
|
float
|
java.lang.Float
|
int
|
java.lang.Integer
|
long
|
java.lang.Long
|
short
|
java.lang.Short
|
void
|
java.lang.Void
|
|
Variable
|
Class
|
Description
|
application
|
javax.servlet.ServletContext
|
The context for the JSP page's servlet and any Web components contained in the same application.
|
config
|
javax.servlet.ServletConfig
|
Initialization information for the JSP page's servlet.
|
exception
|
java.lang.Throwable
|
Accessible only from an error page.
|
out
|
javax.servlet.jsp.JspWriter
|
The output stream.
|
page
|
java.lang.Object
|
The instance of the JSP page's servlet processing the current request. Not typically used by JSP page authors.
|
pageContext
|
javax.servlet.jsp.PageContext
|
The context for the JSP page. Provides a single API to manage the various scoped attributes.
|
request
|
Subtype of javax.servlet.ServletRequest
|
The request triggering the execution of the JSP page.
|
response
|
Subtype of javax.servlet.ServletResponse
|
The response to be returned to the client. Not typically used by JSP page authors.
|
session
|
javax.servlet.http.HttpSession
|
The session object for the client.
|
Isolation Level
|
Dirty Read
|
Non-Repeatable Read
|
Phantom Read
|
Read Uncommitted
|
Possible
|
Possible
|
Possible
|
Read Committed
|
Not possible
|
Possible
|
Possible
|
Repeatable Read
|
Not possible
|
Not possible
|
Possible
|
Serializable
|
Not possible
|
Not possible
|
Not possible
|
public class testFinally{ public static void main(String[] args){ System.out.println("Executing the program"); try { System.out.println("In the try block"); System.exit(1); } finally { System.out.println("In the finally."); } } } |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。