If I have a java object that contains a list, which in turn can contain a list... How would one go about iterating through this list within Velocity, recursively, if possible?
class A
has a STRING s;
and a list of class A objects;
Is there a non-recursive solution?
