Can freemarker be used to loop through collections and output the properties of each item in the collection?
This collections properties will be dynamic i.e. can't be hard coded, will be generated ...
From my java code I'm returning a Set<String>. The view needs to check if the Set contains a specific string.. I can't find any docs on how Freemarker can handle this.
Any ...