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

HI,

This question is from previously answered question by BalusC. The excerpt of the answer as follows:

This happens only if under the covers a forward by RequestDispatcher#forward() takes place. In a forward, the servletcontainer basically reuses the same HTTP request/response for a view (JSP/XHTML page). It does not force/instruct the webbrowser to send a brand new request.

What this means is every new view is rendered using the forward. The following are my questions:

  • If the above is the case, then all the views displayed with the same request?. Because, we are always seeing the same URL in the address bar.

  • Is it that the values in the previous request is retained for the new request?

  • In this case, if every request is same then is it like storing in the session, for long time. I am bit confused on the view handling by JSF. Want to understand more internal work flow of JSF.

  • When we use the <redirect/> in faces-config.xml, will the URL in address bar get changed?

share|improve this question

2 Answers

up vote 1 down vote accepted

If the above is the case, then all the views displayed with the same request?. Because, we are always seeing the same URL in the address bar.

If it concerns a HTTP POST request and the JSF bean action navigates to a different view, then per saldo you will indeed have two different views in the same request. One for the initial view which is been used to gather/convert/validate the necessary request parameters and update the model values and other for the result view which is been used to show some result.

Is it that the values in the previous request is retained for the new request?

In a forward there's no means of a new request. It's the same request.

In this case, if every request is same then is it like storing in the session, for long time. I am bit confused on the view handling by JSF. Want to understand more internal work flow of JSF.

This is definitely not the case. As to your confusion, it may help to put JSF aside for a while and go playing with plain vanilla JSP/Servlet (which is what JSF is using under the covers). I think the following links may help in getting new insights about how basic JSP/Servlet works and how the average MVC framework on top of JSP/Servlet works:

When we use the <redirect/> in faces-config.xml, will the URL in address bar get changed?

Yes. A HTTP redirect sends a HTTP location: newpage.jsf header which in turn instructs the webbrowser to fire a new HTTP GET request on the given location. This get reflected in the browser address bar. You may want to install a HTTP debugging tool like Firebug or Fiddler2 to track HTTP traffic. You'll see that a forward happens inside the same request and a redirect comes with a new request.

share|improve this answer
One more question, since it is forward on the same request. The value we put in the request scope will be available for the next pages also. Am I correct?. In our application, we never use the redirect option. In that case all the views are displayed using the same request forward. Please clear my doubts. – Krishna Jan 29 '11 at 1:35
1  
No, it's only available within the same request. The result page is been displayed as response to the same request. – BalusC Jan 29 '11 at 2:47
Krishna, you may find this answer useful as well to learn what's going on in the Servlet API which is running under the covers of JSF. – BalusC Jan 29 '11 at 4:13

If the above is the case, then all the views displayed with the same request?. Because, we are always seeing the same URL in the address bar.

if the url is the same in the web-browser then there can be two cases. either the same request is being forwarded as he mentioned OR new GET request is issued with same URL [which is lesser the case]

Is it that the values in the previous request is retained for the new request?

request life cycle will be from request to response. so after response all the managed bean with request scoped will get destroyed.

When we use the in faces-config.xml, will the URL in address bar get changed?

Yes it will instruct browser to issue new GET request for new URL.

share|improve this answer
I am not clear with your first two answers. – Krishna Jan 28 '11 at 8:45
Please read BaluC answer, his answer is little different from yours. – Krishna Jan 29 '11 at 1:36

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.