配置好的模板引擎在调用renderView, renderFragment, respondView时被调用。
配置模板引擎
在config/xitrum.conf中,模板引擎可以通过两种方式进行配置。默认为 xitrum-scalate
template = my.template.EngineClassName ## 或者 template { "my.template.EngineClassName" { option1 = value1 option2 = value2 } }
如果所创建的项目不需要显示View,可以删除模板引擎设置使项目更轻量
要创建自己的模板引擎,需要创建xitrum.view.TemplateEngine的实现类,且把它加入到config/xitrum.conf中。
自定义模板引擎,参照demo https://github.com/xitrum-framework/xitrum-scalate