SpringMVC提交数组时不能超过256个值

来源:互联网 发布:安卓局域网软件 编辑:程序博客网 时间:2024/04/30 10:21

使用SpringMVC提交数组时,如果list大小超过256,就会报错。

原因是DataBinder 中默认限制了list最大只能增长到256。

private int autoGrowCollectionLimit = DEFAULT_AUTO_GROW_COLLECTION_LIMIT;

解决方案:

1)修改业务,不允许一次提交超过256条数据偷笑

2)在需要的Action中添加InitBinder方法。如果所有Action都需要添加……不仅工作量很大,而且代码冗余很难看尴尬

@InitBinderpublic void initBinder(WebDataBinder binder) {    binder.setAutoGrowCollectionLimit(Integer.MAX_VALUE);}

3)增加一个WebBindingInitializer类,并在xml中配置。推荐大笑(如果你不知道改哪个xml文件,先好好学习一下SpringMVC吧奋斗

public class DataBindingInitializer implements WebBindingInitializer {    @Override    public void initBinder(WebDataBinder binder, WebRequest request) {        binder.setAutoGrowCollectionLimit(Integer.MAX_VALUE);    }}
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"><property name="webBindingInitializer"><bean class="xxx.DataBindingInitializer"/></property></bean>



原创粉丝点击