Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing CommonsMultipartResolver's maxUploadSize during runtime

I am using a CommonsMultipartResolver for file upload.

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" >
    <!-- specify maximum file size in bytes -->
<property name="maxUploadSize" value="100000"/>
</bean

I want to be able to change its property maxUploadSize at runtime (so that the size may be changed by the administrator). What is the best way to do this please?

like image 909
ET13 Avatar asked Jan 16 '23 22:01

ET13


1 Answers

You can autowire CommonsMultipartResolver in your controller and update the property there at runtime.

For example:

@Controller
public class MyController {

    @Autowired
    private CommonsMultipartResolver multipartResolver;


    @RequestMapping(value = "/setMaxUploadSize", method = RequestMethod.GET)
    public ModelAndView setMaxUploadSize() {
        ...
        multipartResolver.setMaxUploadSize(5000);
        ...
    }
}
like image 195
jelies Avatar answered Jan 27 '23 06:01

jelies