Grails GSPに次のものを置き換える方法はありますか?
<tmpl:/templates/header />
<!-- tmpl namespace call is equivalent to <g:render template="/templates/header" /> -->
<!-- definition of inner content -->
<tmpl:/templates/footer />
外側のテンプレートを使用しますか?基本的に、ラッピング外部テンプレートをインポートする方法は、
<outertemplate:templatename>
<!-- header will be rendered from outer template -->
<!-- definition of inner content -->
<!-- footer will be rendered from outer template -->
</outertemplate:templatename>
外側のテンプレートの定義は、
<!-- definition of header content -->
<!-- placeholder or attr for inner content -->
<!-- definition of footer content -->
ラッピングコンテンツを2つではなく1つのテンプレートにカプセル化します。IIRCはJSFでこれを行う方法がありましたが、GSPで同等のものを見つけることができません。