摘要: 低版本@Override protected boolean acceptFile(Object action, File file, String filename, String contentType, String inputName, ValidationAware validation, Locale locale) {}2.3.14.2中@Override protected boolean acceptFile(Object action, File file, String filename, String contentType, String inputName, ... 阅读全文
posted @ 2013-06-04 18:08 悟寰轩-叶秋 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 延长action中属性的生命周期,包括自定义属性,以便在jsp页面中进行访问,让actionContextcleanup过滤器来清除属性,不让action自己清除。 为了使用WebWork,我们只需要在web.xml配置FilterDispatcher一个过滤器即可,阅读一下FilterDispatcher的JavaDoc和源码,我们可以看到它调用了: finally{ActionContextCleanUp.cleanUp(req);}在ActionContextCleanUp中,有这样的代码:req.setAttribute(CLEANUP_PRESENT, Boolean.TRUE).. 阅读全文
posted @ 2013-06-04 15:33 悟寰轩-叶秋 阅读(7385) 评论(0) 推荐(0) 编辑
摘要: 版本过期如图:org.apache.struts2.dispatcher.FilterDispatcher 换成:org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter 1 <filter> 2 <filter-name>struts2CleanupFilter</filter-name> 3 <filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class> 阅读全文
posted @ 2013-06-04 15:20 悟寰轩-叶秋 阅读(7703) 评论(0) 推荐(0) 编辑