How can I evaluate if a collection is empty or not with struts logic tag?
I tried with logic empty tag. but the tag evaluated if a collection is null or not.
I would like to do like this below.
List list = new ArrayList();
set(list);
<logic:XXXX name="someForm" property="list">
The list size is 0.
</logic>
thanks in advance.