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

Is there any way can declare a bean in just like JSP UseBean in JSF?

for example if i have nested objected inside a VO, I don't want to call to many get methods again and again

For Example i have ManagedBean(MB) hold VO. VO hold (CVO), CVO Hold CVO1. if want methods of CVO. i need to write MB.VO.CVO.CVO1.method1, MB.VO.CVO.CVO1.method2. is there any simple approach to this like i define CVO1 and use it as CVO1.method1 and CVO1.method2?

share|improve this question

1 Answer

up vote 0 down vote accepted

If you are using JSTL, you can use the <c:set> component:

<c:set var="temp" value="#{myBean.someObject}"/>
...
<!-- Exemple of usage: -->
<h:outputText value="#{temp.someProperty}"/>
share|improve this answer
is C:set supported by facelets and JSF 1.2 ? – SomaSekhar Aug 27 '09 at 6:51
I've worked on a project that used JSF 1.2, Facelets, Richfaces, Tomahawk and JSTL (yes, at the same time ;) ) ! So I guess yes. However, I read that sometimes Facelets and JSTL have some incompatibilities, but I never had problems with that... – romaintaz Aug 27 '09 at 9:06

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.