由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 如何在自定义的错误页面中捕获错误信息
相关主题
关于Exception,CatchURL 的问题怎么解决?
The right way to create new Exceptionservlet-mapping causing http 404 error
Linux下安装一个Java软件出现异常Top Ten Errors Java Programmers Make(5)
再问一个今天的面试题这可能是什么引起的?
问个exception的问题weird class definition
Tomcat JSP syntax errorTomcat JSF问题:web.xml error-page设置
still web.xml questionHow do I send cookies from a servlet?
spring mvc 里面 view 必须是 jsp吗?理解Java Servlets [fwd]
相关话题的讨论汇总
话题: servlet话题: error话题: page话题: exception
进入Java版参与讨论
1 (共1页)
j****y
发帖数: 178
1
用的是tomcat。
web。xml如下:

500
/error


java.lang.Throwable
/error


ExceptionHandler
ExceptionHandler


ExceptionHandler
s******e
发帖数: 493
2
jsp has implicit exception object if the jsp page is error page
Throwable exception = (Throwable)request.getAttribute("javax.servlet.error.
exception");
if you try to get it in servlet or the page is not error page. this works
only for spec2.3+
Throwable exception = (Throwable) request.getAttribute("javax.servlet.jsp.
jspException");
should be used for 2.3-
j****y
发帖数: 178
3
thank you so much. I am kind of new in java. so what's spec2.3?
Can I get error message or error code just from request?

【在 s******e 的大作中提到】
: jsp has implicit exception object if the jsp page is error page
: Throwable exception = (Throwable)request.getAttribute("javax.servlet.error.
: exception");
: if you try to get it in servlet or the page is not error page. this works
: only for spec2.3+
: Throwable exception = (Throwable) request.getAttribute("javax.servlet.jsp.
: jspException");
: should be used for 2.3-

j****y
发帖数: 178
4
急需帮忙,自己再顶一下。
1 (共1页)
进入Java版参与讨论
相关主题
理解Java Servlets [fwd]问个exception的问题
Another Servlet Problem:Browser CachingTomcat JSP syntax error
need your commentsstill web.xml question
请推荐servlet还有jsp的书spring mvc 里面 view 必须是 jsp吗?
关于Exception,CatchURL 的问题怎么解决?
The right way to create new Exceptionservlet-mapping causing http 404 error
Linux下安装一个Java软件出现异常Top Ten Errors Java Programmers Make(5)
再问一个今天的面试题这可能是什么引起的?
相关话题的讨论汇总
话题: servlet话题: error话题: page话题: exception