I have a list of string in java code:
List keywords = new ArrayList(); keywords.add("Apple"); keywords.add("Banana");
and I would like to display the keywords using Freemarker: Apple, Banana
How to do that?
PS: I read through the manual and found some articles suggesting using <#list>, but the output is: Apple
Banana