如果我的业务层中有异常(例如,我的 JDBC 连接 bean 中的 SQL 异常),我如何将它与自定义消息一起传播到全局error.jsp
页面?
6 回答
JSF 1.x 不提供这种类型的任何隐式错误处理,尽管您可以使用导航规则重定向到错误页面(假设表单发布)...
<navigation-case>
<description>
Handle a generic error outcome that might be returned
by any application Action.
</description>
<display-name>Generic Error Outcome</display-name>
<from-outcome>loginRequired</from-outcome>
<to-view-id>/must-login-first.jsp</to-view-id>
</navigation-case>
...或使用重定向...
FacesContext context = FacesContext.getCurrentInstance();
ExternalContext extContext = context.getExternalContext();
String url = extContext.encodeActionURL(extContext
.getRequestContextPath()
+ "/messages.faces");
extContext.redirect(url);
我建议查看JSF 规范以获取更多详细信息。
可以根据需要将错误消息放在请求范围/会话范围/url 参数上。
假设一个 Servlet 容器,您可以使用通常的web.xml 错误页面配置。
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/errorPage.faces</location>
</error-page>
在您的支持 bean 中,您可以在RuntimeException中包装并抛出您检查的异常。
一些 JSF 实现/框架会捕获这些错误(Apache MyFaces/Facelets),因此您必须将它们配置为不.
JSF 2 现在有一种处理异常的机制:
http://java.sun.com/javaee/6/docs/api/javax/faces/context/ExceptionHandler.html
我在站点faces中做了一个错误页面,并把错误的stacktrace这个代码先放到web.xml中
<error-page>
<error-code>500</error-code>
<location>/errorpage.jsf</location>
</error-page>
虽然 jsf 页面有这个代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<h:head>
<h:outputStylesheet name="EstilosOV.css" library="css" />
<!-- <h:outputScript name="sincontext.js" library="scripts"/> -->
</h:head>
<h:body >
<table width="338" border="0" align="center" bordercolor="#FFFFFF">
<tr bgcolor="#1D2F68">
<td colspan="4" height="35" class="TablaHeader2"> PLAN SEGURO</td>
</tr>
<tr bgcolor="#FDF2AA">
<td colspan="4" class="HeaderExcepcion">
<h:graphicImage library="images" name="errormark.jpg"/>
<font size="5px" color="#CC0000" >Error de ejecución</font>
</td>
</tr>
<tr >
<td colspan="3" class="anuncioWarning2">Ocurrio un error al realizar la operación, favor de intentarlo nuevamente, si el error aún se presenta, favor de notificarlo a soporte técnico al 5147-31-00 extensión 6893</td>
</tr>
<tr>
<td height="17" colspan="3" class="TablaHeader2"></td>
</tr>
</table>
<h:form id="formerror">
<h:inputHidden id="valuestack" value="#{errorDisplay.stackTrace}"></h:inputHidden>
</h:form>
</h:body>
</html>
请注意,motif 可让您调试堆栈跟踪,以了解隐藏字段中的异常。让我们看看类是如何定义的恢复 StackTrace
public class ErrorDisplay implements Serializable{
private static final long serialVersionUID = 6032693999191928654L;
public static Logger LOG=Logger.getLogger(ErrorDisplay.class);
public String getContacto() {
return "";
}
public String getStackTrace() {
FacesContext context = FacesContext.getCurrentInstance();
Map requestMap = context.getExternalContext().getRequestMap();
Throwable ex = (Throwable) requestMap.get("javax.servlet.error.exception");
StringWriter writer = new StringWriter();
PrintWriter pw = new PrintWriter(writer);
fillStackTrace(ex, pw);
LOG.fatal(writer.toString());
return writer.toString();
}
private void fillStackTrace(Throwable ex, PrintWriter pw) {
if (null == ex) {
return;
}
ex.printStackTrace(pw);
if (ex instanceof ServletException) {
Throwable cause = ((ServletException) ex).getRootCause();
if (null != cause) {
pw.println("Root Cause:");
fillStackTrace(cause, pw);
}
} else {
Throwable cause = ex.getCause();
if (null != cause) {
pw.println("Cause:");
fillStackTrace(cause, pw);
}
}
}
}
并且在您在文件 facesconfig 中完成此 bean 定义时已附加
<managed-bean>
<description>
Bean que sirve para llenar la especificacion de un error. Stacktrace
</description>
<managed-bean-name>errorDisplay</managed-bean-name>
<managed-bean-class>mx.com.tdc.datos.page.bean.ErrorDisplay</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
我希望这将有助于
在 JSF 中向用户显示错误消息的一般方法是使用 FacesMessage:
在 Java 方面:
...
if (errorOccurred) {
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("An error occurred blabla..."));
}
在 JSF(JSP 或 XHTML)页面中,只需使用<h:messages/>
页面中的组件即可显示错误。
你可以把
<%@ page errorPage="error.jsp" %>
在 jour jsp/jsf 页面中。在 error.jsp 中,jou 将具有:
<%@ page isErrorPage="true" %>
isErrorPage="true" 将为您的页面提供另一个隐式对象:异常(与您在 jsp 页面上已经有请求和响应的方式相同)。然后,您可以从异常中提取消息。
我遇到了同样的问题,并找到了描述如何在 JSF2 中使用 ExceptionHandler 的链接:
http://jugojava.blogspot.com/2010/09/jsf-2-exception-handling.html