springmvc封装list个数限制问题

本文详细解析了在Spring框架中提交超过1000个三级区域参数时遇到的异常问题,提供了通过调整DataBinder的autoGrowCollectionLimit属性来解决的方法,同时介绍了使用JSON替代表单提交的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

提交一颗树,三级区域个数大于1000个导致提交失败!!!

org.springframework.beans.InvalidPropertyException: Invalid property 'divisionList[1000]' of bean class [com.gome.bean.Presell]: Index of out of bounds in property path 'divisionList[1000]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 1000, Size: 1000
    org.springframework.beans.BeanWrapperImpl.getPropertyValue(BeanWrapperImpl.java:811)
    org.springframework.beans.BeanWrapperImpl.getNestedBeanWrapper(BeanWrapperImpl.java:554)

 

溯源了下Spring的代码,找到了DataBinder,先解释下DataBinder类的作用,见链接 
http://docs.spring.io/spring/docs/1.2.x/api/org/springframework/validation/DataBinder.html 
其中有一句

INFO: More than the maximum number of request parameters (GET plus POST) for a single request ([10,000]) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector. Note: further occurrences of this error will be logged at DEBUG level.

解决如下:重set下autoGrowCollectionLimit,当做绑定的时候set为3000或者更大 
在Controller重写这个方法

/**
     * 由于Spring在接受前台传入的List时,就会出现256的IndexOutOfBoundsException异常
     * 设置setAutoGrowCollectionLimit为1024
     * @param binder
     * @see [类、类#方法、类#成员]
     */
    @InitBinder
    public void initListBinder(WebDataBinder binder)
    {
        // 设置需要包裹的元素个数,默认为256
        binder.setAutoGrowCollectionLimit(3000);
    }
 

或者不用表单提交

先转换成json字符串到后台 然后用jsonarray反序列和成集合对象也是可以的

原贴  https://blog.youkuaiyun.com/zgliang88/article/details/52780213

转载于:https://www.cnblogs.com/lzh-boy/p/9645987.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值