开发者

Problems with redirect after catching Exception

I have a problem with the redirect in my custom ExceptionHandler. The ExceptionHandler should handle NullPointerExceptions and perform a redirect if an exception occures. Here is the part of the Handler that is responsible for the redirect:

FacesContext fc = FacesContext.getCurrentInstance();
NavigationHandler nav = fc.getApplication().getNavigationHandler();
nav.handleNavigation(fc, null, "error" );

I have a simple page to test the ExceptionHandler:

<h:outputText value="#{requestTestBean.firstname}" />

And in the getter-Method for first开发者_高级运维name I force a NullPointerException:

Object x = null;
x.toString();

The redirect to my error page works fine for this little example but when I add considerable more content on the page (like a menu with many entries and icons) the redirect doesn't work because the response is already commited in the exceptionHandler method. I also tried to redirect to the error page via response.sendRedirect() but the same problems occured.

Why is the response already commited? Is there any context-param or anything else to prevent this behavior?

Thanks


That's one of the many reasons why doing business logic inside getters is a very bad idea.

But OK, let's assume that this is a really extreme requirement/usecase where poorly developed code is involved (you know, runtimeexceptions like NPE's are actually developer errors). The response will be committed when a certain response body buffer limit has been exceeded. This is usually around 2KB and the real default value is configureable at appserver level. But you can also configure it by a context param with the name javax.faces.FACELETS_BUFFER_SIZE which accepts the buffer size in bytes. Here's an example which sets it to 1MB.

<context-param>
    <param-name>javax.faces.FACELETS_BUFFER_SIZE</param-name>
    <param-value>1048576</param-value>
</context-param>

It will under the covers set the ServletResponse#setBufferSize() on every response.

Again, this is actually a workaround to your concrete problem and thus a poor approach. The real problem should be fixed in the code by letting the getters just return the bean properties and nothing else. The business logic needs to be done in the bean's constructor, postconstruct or any event (action) methods. They are executed far before the render response phase and thus you have all the chance to handle the exception.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜