我想为视频文件和其他图片文件定义一个MultipartResolver ,但大小不同。
<!-- Configure the multipart resolver -->
<beans:bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- one of the properties available; the maximum file size in bytes -->
<beans:property name="maxUploadSize" value="100000000"/>
</beans:bean>
任何想法?
一种解决方案是在上传后使用spring 验证器验证文件,但文件已上传......