有没有人在使用Spring Webflow 2.3和Spring Security进行文件上传时遇到问题?每当我有一个带有enctype =“multipart / form-data”的JSP页面时,它们都会火上浇油。我添加了这个:
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- one of the properties available; the maximum file size in bytes -->
<property name="maxUploadSize" value="100000"/>
</bean>
进入Spring配置以及将commons-fileupload JAR提供给应用程序
答案 0 :(得分:0)
将maxUploadSize
增加为value="1048576"
,奇怪的是它不会抛出任何异常。