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

In JSF, in a typical faces-config.xml configuration, what's exactly the difference between from-view-id and from-tree-id tag? And when was the best time to use either?

Any example would be much appreciated.

share|improve this question
What JSF version is this (from the faces-config.xml header)? – McDowell Oct 3 '09 at 13:42
It says version 1.0. I'm actually reading it on a tutorial and curious on what it means because I've been using only from-view-id during the project. – Rhama Arya Wibawa Oct 4 '09 at 4:02

2 Answers

up vote 1 down vote accepted

I am not familiar with the from-tree-id element; I don't remember it from any previous JSF version.

The element doesn't appear in any of these schemas:

  • http://java.sun.com/dtd/web-facesconfig_1_0.dtd
  • http://java.sun.com/dtd/web-facesconfig_1_1.dtd
  • http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd
  • http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd

Check the element isn't in another namespace; it could just be a typo in the tutorial.

share|improve this answer
I believe you're right, McDowell. I've looked at the dtds and they didn't mention anything about from-tree-id. But I checked the tutorial again, and it's not a typo though I didn't read the whole tutorial to begin with. – Rhama Arya Wibawa Oct 5 '09 at 4:13

Prior to JSF 1.0 <from-tree-id> tag was used. But in JSF 1.0 this tag has been replaced by <from-view-id>.

share|improve this answer

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.