JSF - Create a chain of value with EL
I would like to know if its possible, by using JSF, to make somethings like this :
<ui:include src="#{bean.value/bean.value}.xhtml" />
<ui:include src="#{bean.value/'default'/bean.value}.xhtml" />
In other words, create a chain of EL value (in this exampl开发者_JAVA技巧e it make sense because i use ui:include
)
Cheers
Try this.
<ui:include src="#{bean.value}/default/#{bean.value}.xhtml" />
精彩评论