How it's done?
Collection of recipes that I've used during code cooking.
Thursday, March 26, 2009
FreeMarker & HashMap
I had the following hash map
ConcurrentHashMap<String, AtomicLong> requestPerOperation;
In order to iterate the content in free marker template use:
<#list requestPerOperation?keys as key>
<li>${key} : ${statistics.operationsRequests[key]}</li>
</#list>
1 comment:
Anonymous
May 22, 2012 at 8:56 AM
very good! ir 's works!
Reply
Delete
Replies
Reply
Add comment
Load more...
‹
›
Home
View web version
very good! ir 's works!
ReplyDelete