jsp

位置:IT落伍者 >> jsp >> 浏览文章

jsp中error page设置方法


发布日期:2019年05月15日
 
jsp中error page设置方法

设置errorPageerrorPagejsp

<%@page isErrorPage=true%>

<html>

<head>

<meta httpequiv=ContentType content=text/html; charset=UTF>

<title>JSP Page</title>

</head>

<body>

Error~!

<%=exceptiongetMessage()%>

</body>

</html>

应用

<%@page info=Bad page%>

<%@page errorPage=errorPagejsp %> //出错后转到

<html>

<head>

<meta httpequiv=ContentType content=text/html; charset=UTF>

<title>JSP Page</title>

</head>

<body>

<%

boolean tf = true;

if(tf){

String info = getServletInfo();

throw new Exception(Exception in: + info);

}

%>

</body>

</html>

上一篇:高效简单的jsp分页代码

下一篇:什么是jsp设计模式