How would I get the length of an ArrayList using a JSF EL expression?
#{MyBean.somelist.length}
does not work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, since some genius in the Java API creation committee decided that, even though certain classes have
size()members orlengthattributes, they won’t implementgetSize()orgetLength()which JSF and most other standards require, you can’t do what you want.There’s a couple ways to do this.
One: add a function to your Bean that returns the length:
In class MyBean: public int getSomelistLength() { return this.somelist.length; } In your JSF page: #{MyBean.somelistLength}Two: If you’re using Facelets (Oh, God, why aren’t you using Facelets!), you can add the fn namespace and use the length function
In JSF page: #{ fn:length(MyBean.somelist) }