使用Request里的Attribute值最简单的方法就是直接${AttributeName}或者安全一点:${AttributeName!"default Value"}
例如:
request.setAttribute("templateInformationMap", templateInformationMap);
在ftl中就可以使用下面获取该值
<#if "" != (templateInformationMap!)?trim >
<table cellpadding="0" cellspacing="0" id="product_parameter_table">
${templateInformationMap!}
</table>
</#if>