GStringTemplateEngineのテンプレートで使用する関数を定義したいと思います。私はそのようなバインディングを使おうとしました:
import groovy.text.GStringTemplateEngine
def prettify = {
return "***${it}***"
}
def var = "test"
def f = new File('index.tpl')
engine = new GStringTemplateEngine()
tpl = engine.createTemplate(f).make([
"var": var,
"prettify": prettify
])
print tpl.toString()
index.tpl:
Var: ${var}
Prettified: <% print prettify(var) %>
例外をスローします:
Caught: groovy.lang.MissingMethodException: No signature of method: groovy.tmp.templates.GStringTemplateScript1.prettify() is applicable for argument types: (java.lang.String) values: [test]
Possible solutions: notify(), printf(java.lang.String, [Ljava.lang.Object;), printf(java.lang.String, java.lang.Object), printf(java.lang.String, [Ljava.lang.Object;), identity(groovy.lang.Closure), printf(java.lang.String, java.lang.Object)
しかし、それは機能していません。テンプレートエンジンがブール値へのバインディングでクロージャをキャストしているように見えます。どうすればいいのですか?または、おそらく別のテンプレートエンジンを選択する必要がありますか?