Smooks中的FreeMarker内联模板(从数据库加载)未解释

时间:2012-07-18 16:59:48

标签: inline freemarker template-engine smooks

所有

我尝试从Smooks配置文件中的数据库加载FreeMarker模板,并使用内置程序INTERPRET将字符串解析为模板。但是,输出正是我存储在数据库中的模板。

以下是Smooks配置文件的一部分:


...

<resource-config selector="hs:TravelerProfile">
    <resource>org.milyn.delivery.DomModelCreator</resource>
</resource-config>
  
<db:executor executeOnElement="hs:TravelerProfile" datasource="StagingDS">
          <db:statement>select freeMarker_template from template_lookup where agencyid='111'; 
          </db:statement>
          <db:resultSet name="mytemplate" />
    </db:executor>

<ftl:freemarker applyOnElementNS="www.travel.com" applyOnElement="TravelerProfile">

    <ftl:template>
    < !--       
    <#assign templateSource = r"${mytemplate[0].freeMarker_template}">
    <#assign inlineTemplate = [templateSource, "myInlineTemplate"]?interpret>
    <@inlineTemplate/> 
    -- >
    </ftl:template>
</ftl:freemarker>

.....


我存储在数据库中的模板如下:

<#ftl ns_prefixes={"D":"www.hhs.gov/travel"}>
<?xml version="1.0" encoding="UTF-8"?>
<po:PoHeadersInterfaceCollection xmlns:po="https://www.travel.com/xmlns/financial/po112007.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.travel.com/xmlns/financial/po112007.xsd">
  <po:PoHeadersInterface>
    <po:interfaceSourceCode>VendorName</po:interfaceSourceCode>
    <po:poLinesInterfaceCollection>
      <po:PoLinesInterface>
        <po:PoDistributionsInterfaceCollection>
          <po:PoDistributionsInterface>
            <po:destinationOrganizationId>${TravelerProfile.TravelerOfficeCode}
            </po:destinationOrganizationId>
          </po:PoDistributionsInterface>
        </po:PoDistributionsInterfaceCollection>
      </po:PoLinesInterface>
    </po:poLinesInterfaceCollection>
  </po:PoHeadersInterface>
</po:PoHeadersInterfaceCollection>

====================================

由于某种原因,输出正好是上面的模板本身。 “$ {TravelerProfile.TravelerOfficeCode}”尚未评估过!请帮忙!!!

谢谢!!!

艾格尼丝

1 个答案:

答案 0 :(得分:0)

正弦mytemplate[0].freeMarker_template返回模板源代码本身(或者至少我认为是这样),并且由于您使用的是原始字符串文字(r"..."),因此模板的源代码将是字面意思${mytemplate[0].freeMarker_template},然后由?interpret对模板源代码进行评估。更正的模板将是:

<#assign inlineTemplate = [mytemplate[0].freeMarker_template, "myInlineTemplate"]?interpret>
<@inlineTemplate/>

也可以写成:

<@([mytemplate[0].freeMarker_template, "myInlineTemplate"]?interpret) />

或者如果您不需要"myInlineTemplate"模板名称:

<@mytemplate[0].freeMarker_template?interpret />