Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In our application we use jsf,we have to redirect the user to home page after their session will be expired.For that i need a path of the home page which i kept in my logout managed bean as a managed bean property.But after session expired if i try to access that it will arise null pointer exception(managed bean becomes null).Then i have decide to try alternative (i.e)create logout class manually and try to access the property, at that time the property which i wants to access is become null.How can i access that property? Please help me. Thanks in advance.

share|improve this question
3  
why do you want to store path to home page in property ? and also focus on accepting answer – Jigar Joshi Nov 30 '10 at 7:54
Because i need to get the home page path as a dynamic one.Its not to be hot coded.So only i wants to keep as a managed property. – Muneeswaran Balasubramanian Nov 30 '10 at 8:06

2 Answers

up vote 1 down vote accepted

In addition to the previous answer:

You could use (in web.xml)

<error-page>
<exception-type>javax.faces.application.ViewExpiredException</exception-type>
<location>viewexpired.jsp</location>
</error-page>

Or Context Parameters instead of Session Attributes. See:

Or use (in faces-context.xml)

<managed-bean-scope>application</managed-bean-scope> 

for your bean, so it will stay independent from the session.

share|improve this answer

Correct way of doing this is declaring exception handler factory in faces-config.xml, then implementing the factory by subclassing javax.faces.context.ExceptionHandlerFactory, and then overriding handle() method in your implementation of javax.faces.context.ExceptionHandlerWrapper. There you should analyze the exception for the ViewExpiredException class and redirect to your view expired page in that case.

share|improve this answer
Hi Ivanov,We have used the same in our applications.But the problem is in only redirection to the error page.My application redirects to the error page.But the page is not loaded. – Muneeswaran Balasubramanian Dec 1 '10 at 1:53
By adding the emptysessionPath=true in server.xml i can get its works. – Muneeswaran Balasubramanian Jan 19 '11 at 3:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.