struts-cleanup作用

来源:互联网 发布:网络问政直通车 编辑:程序博客网 时间:2024/06/05 17:42

struts-cleanup作用

 (2012-02-28 17:43:38)
转载
标签: 

struts-cleanup

 

作用

分类: SSH/I框架

<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>


strtus2要在web.xml里面配置这一项作用:

清除缓存,帮我们进行清理
在做上传文件的时候,要在web.xml中增加ActionContextCleanUp这个filter,如果不增加,会发生第一次上传取不到文件的情况。


0 0