在我的应用程序中,当抛出特定的exeption时,应该将用户重定向到自定义错误页面。
显示错误页面,但URL未更改为错误页面位置。
以下是相关的代码片段
在我的web.xml中我有以下声明。
<error-page>
<exception-type>de.mmo.base.util.login.NoSidException</exception-type>
<location>/error/NoActiveSID.xhtml</location>
</error-page>
<error-page>
<exception-type>de.mmo.exceptions.NotLoggedInException</exception-type>
<location>/error/NotLoggedInExc.xhtml</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/error/error404.xhtml</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/error500.xhtml</location>
</error-page>
在我的faces-config.xml中,我尝试了以下两个声明
<factory>
<exception-handler-factory>
org.omnifaces.exceptionhandler.FullAjaxExceptionHandlerFactory
</exception-handler-factory>
</factory>
和
<factory>
<exception-handler-factory>
de.mmo.test.MyExceptionHandlerFactory
</exception-handler-factory>
</factory>
当我尝试使用MyExceptionHandler时,我将FullAjaxExceptionHandlerFactory注释掉了。
以下是MyExceptionHandler代码
public class MyExceptionHandlerFactory extends ExceptionHandlerFactory {
private ExceptionHandlerFactory parent;
public MyExceptionHandlerFactory(ExceptionHandlerFactory parent) {
this.parent = parent;
}
@Override
public ExceptionHandler getExceptionHandler() {
ExceptionHandler result = parent.getExceptionHandler();
result = new MyExceptionHandler(result);
return result;
}
}
public class MyExceptionHandler extends FullAjaxExceptionHandler {
private ExceptionHandler wrapped;
public MyExceptionHandler(ExceptionHandler wrapped) {
super(wrapped);
this.wrapped = wrapped;
}
@Override
public ExceptionHandler getWrapped() {
return this.wrapped;
}
@Override
protected String findErrorPageLocation(FacesContext context,
Throwable exception) {
System.out.println("inside my findErrorPageLocation");
if(exception instanceof NoSidException) {
System.out.println("inside exception instanceof NoSidExceptin");
return "/error/NoActiveSID.xhtml?faces-redirect=true";
} else {
return super.findErrorPageLocation(context, exception);
}
}
最后我有例如NoSidExceptino类
public class NoSidException extends FacesException {
private static final long serialVersionUID = -2350480134523249331L;
public NoSidException(){
super ("ACHTUNG: SID ist abgelaufen !");
}
}
错误页面全部在 webapp - &gt;错误 - &gt; * .xhtml文件
我的应用程序在glassfish服务器上运行。
如果您需要更多信息,我会告诉他们:)
请求帮助
---------- EDIT ------------------------------------ ---------------------------
我能用javascript解决我的问题。
在错误页面的标题中插入
<script type="text/javascript">
$(document).load(function() {
redirectToErrorPage ();
});
</script>
在身体中我有一个remoteCommand
<h:form>
<p:remoteCommand name="redirectToErrorPage" action="#{nav.baueNavPfad(pfadKonst.ERROR_NOSID, false)}">
</p:remoteCommand>
</h:form>