struts升级:FileUploadInterceptor在struts 2.3.14.2的jar中修改了方法acceptFile中的参数
生活随笔
收集整理的這篇文章主要介紹了
struts升级:FileUploadInterceptor在struts 2.3.14.2的jar中修改了方法acceptFile中的参数
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
低版本
@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,
?? ??? ??? ?ValidationAware validation) {}
去掉了, Locale locale
轉(zhuǎn)載于:https://www.cnblogs.com/sunxucool/archive/2013/06/04/3117593.html
總結(jié)
以上是生活随笔為你收集整理的struts升级:FileUploadInterceptor在struts 2.3.14.2的jar中修改了方法acceptFile中的参数的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ActionContextCleanUp
- 下一篇: 基本排序算法之4——归并排序merges