下面是我将一些键值放入哈希图中的主要功能。
如何构造freemarker模板,使其仅读取一个键值,而不遍历整个列表
import freemarker.template.TemplateException;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class main {
public static void main(String[] args) throws TemplateException {
HashMap<String, String> gtmData = new HashMap<String, String>();
Map gtm = new HashMap();
gtmData.put("Uid", "a12");
gtmData.put("SettlementCurrency","USD");
gtmData.put("Quantity","123455");
Map root = new HashMap();
root.put("hello", gtmData);
FreeMarkerConverter convert = new FreeMarkerConverter();
try {
convert.setTemplateName("gtm-temp-h");
convert.convert(root);
}
catch(IOException e) {
e.printStackTrace();
}
}
}
下面是freemarker模板,用于代替root.SettlementCurrency我想要该键的值,但是每个示例都显示了打印整个列表
"header"[
{
messageid :$(root.uid)
SettlementCurrency:$(root.SettlementCurrency)
}
]
答案 0 :(得分:0)
我没有完全遵循您的示例,但是在我的FreeMarker模板中,我使用Map[key]
表示法。
创建地图
Map<String, String> ringImageLocationMap = new HashMap<>();
for (Ring ringItem : ringItems){
String url = getRingImageUrl(ringItem);
ringImageLocationMap.put(ringItem.getIoItemGuid(), url);
}
Java向模型添加地图:
model.put("ringImageLocationMap", orderSummary.getRingImageLocationMap());
免费标记访问地图
<#if (ringImageLocationMap[item.ioItemGuid])??>
<#assign location = ringImageLocationMap[item.ioItemGuid]>
<td colspan="4" style="padding-top: 100px; padding-bottom: 130px;">
<img id="productImage" src="${location}" width="259"/>
</td>
<#else>
<td colspan="4" style="padding-top: 100px; padding-bottom: 130px;">
</td>
</#if>