亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

JSP errorPage設(shè)置方法

 更新時間:2009年10月04日 15:46:32   作者:  
JSP errorPage設(shè)置方法,大家可以參考下。
1.設(shè)置errorPage:errorPage.jsp
復(fù)制代碼 代碼如下:

<%@page isErrorPage="true"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
Error~!
<%=exception.getMessage()%>
</body>
</html>

2.應(yīng)用
復(fù)制代碼 代碼如下:

<%@page info="Bad page"%>
<%@page errorPage="errorPage.jsp" %> //出錯后轉(zhuǎn)到
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
boolean tf = true;
if(tf){
String info = getServletInfo();
throw new Exception("Exception in:" + info);
}
%>
</body>
</html>

相關(guān)文章

最新評論