0

全て、

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}」は評価されていません! 助けてください!!!

ありがとうございました!!!

アグネス

4

1 に答える 1

0

Sinemytemplate[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 />
于 2012-07-19T12:09:49.617 に答える