webwork的过滤器

在webwork的架构中,标准过滤器推荐从ActionContextCleanUp,然后是其他过滤器,最后才是FilterDispatcher,FilterDispatcher通常是将请求提交给ActionMapper。ActionContextCleanUp是首要的任务是为了集成SiteMesh服务。它会通知FilterDispatcher在正确的时间清除请求。否则,ActionContext将在SiteMesh之前会清理数据。


通常我们会让SiteMesh过滤器排在第一位,而FilterDispatcher排在第二位,如我们希望SiteMesh修修饰器中使用webwork特性,包括value stack,但FilterDispatcher将清除ActionContext,因此修饰器就访问不到想要的数据了。因此如果我们想要让sitemesh访问到webwork特性,就要将ActionContextCleanUp位于他们的前面

webwork提供了一个SiteMesh的PageFilter过滤器的一个扩展版本,协助其与Velocity和FreeMarker集成。建议使用该过滤器代替SiteMesh的过滤器。如果想要使用velocity作为siteMesh修饰器,推荐使用VelocityPageFilter过滤器。位于ActionContextCleanUp和FilterDispatecher之间。这样Velocity修饰器可以使用$stack和$request来访问webwork的变量了。而如果想要使用FreeMarker作为sitemesh修饰器,使用FreeMarkerPageFilter。位于ActionContextCleanUp和FilterDispatecher之间。这样就可以通过${stack}和${request}来访问webwork变量了。

Velocity的过滤器配置
<filter>
<filter-name>webwork-cleanup</filter-name>
<filter-class>com.opensymphony.webwork.dispatcher.ActionContextCleanUp</filter-class>
</filter>
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>com.opensymphony.webwork.sitemesh.VelocityPageFilter</filter-class>
</filter>
<filter>
<filter-name>webwork</filter-name>
<filter-class>com.opensymphony.webwork.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>webwork-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>webwork</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

freemarker的过滤器配置
<filter>
<filter-name>webwork-cleanup</filter-name>
<filter-class>com.opensymphony.webwork.dispatcher.ActionContextCleanUp</filter-class>
</filter>
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>com.opensymphony.webwork.sitemesh.FreeMarkerPageFilter</filter-class>
</filter>
<filter>
<filter-name>webwork</filter-name>
<filter-class>com.opensymphony.webwork.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>webwork-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>webwork</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

你可能感兴趣的:(freemarker,velocity,Webwork)