此版本重构了side包的集成方案,将所有web集成统一用Listener进行初始化:
<context-param>
<param-name>commontemplate-config</param-name>
<param-value>
org/commontemplate/standard/commontemplate-standard.properties
</param-value>
</context-param>
<listener>
<listener-class>
org.commontemplate.side.web.EngineInitializeListener
</listener-class>
</listener>
配置路径若以"/"开头则有web应用下查找(如:/WEB-INF/xxx.properties),否则在classpath中查找。
EngineInitializeListener会按commontemplate-config所指的配置初始化引擎,
并将其放入EngineHolder中,
在各集成方案中只需:
Engine engine = org.commontemplate.side.web.EngineHolder.getEngine();
使用engine处理模板...
当然,EngineHolder还有其它一些工具方法,用于辅助常见方案,如:createContext, renderTemplate等。
项目网站:
[url]http://www.commontemplate.org[/url]
集成方案:
[url]http://www.commontemplate.org/zh/integration_guide.html[/url]