-
Notifications
You must be signed in to change notification settings - Fork 5
Freemarker view
velna edited this page Nov 7, 2012
·
4 revisions
freemarker.configurationFactory.class | 配置工厂。需要实现org.sothis.web.mvc.views.freemarker.ConfigurationFactory接口。 |
freemarker.settings.${settingKey} | 仅在使用org.sothis.web.mvc.views.freemarker.DefaultConfigurationFactory时有用。 设置freemarker自身的相关参数,${settingKey}为freemarker.template.Configuration类中定义的设置key。 |
freemarker.directive.${directiveName}.class | 仅在使用org.sothis.web.mvc.views.freemarker.DefaultConfigurationFactory时有用。 配置freemarker的自定义指令。${directiveName}为在.ftl文件中引用这个指令的名称。 |
freemarker.static.${staticName}.class | 仅在使用org.sothis.web.mvc.views.freemarker.DefaultConfigurationFactory时有用。 配置freemarker的static模型调用。${staticName}为在.ftl文件中引用这个static模型的名称。 |
path | action对应的ftl文件的路径。不要带.ftl后缀。默认为当前action名称。 |
status | response的http status code。默认为系统默认值。 |
页面的content type可以在.ftl文件中通过<#ftl attributes={"content_type":"text/html; charset=utf-8"} >的方式来指定。