How would I get the length of an ArrayList using a JSF EL expression? "#{MyBean.somelist.length}" does not work.
|
|
Yes, since some genius in the Java API creation committee decided that, even though certain classes have .size() members or .length attributes, they won't implement getSize() or getLength() 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) }
|
|||||||||||||||||
|
|
You mean size() don't you?
works for me (using JBoss Seam which has the Jboss EL extensions) |
|||||||||||||||
|
|
Note: This solution is better for older versions of JSTL. For versions greater then 1.1 I recommend using This article has some more detailed information, including another possible solution;
The problem with c_rt method is that you need to get the variable from request manually, because it doesn't recognize it otherwise. At this point you are putting in a lot of code for what should be built in functionality. This is a GIANT flaw in the EL. I ended up using the "wrapper" method, here is the class for it;
A third option that no one has mentioned yet is to put your list size into the model (assuming you are using MVC) as a separate attribute. So in your model you would have "someList" and then "someListSize". That may be simplest way to solve this issue. |
||||
|
|
|
You can eventually extend the EL language by using the EL Functor, which will allow you to call any Java beans methods, even with parameters... |
|||
|
|
On screen it displays the Table size Example: Table Size = 5 |
|||
|
|
