【Spring】java.lang.IndexOutOfBoundsException: Index: 256, Size: 256

来源:互联网 发布:单片机是什么意思 编辑:程序博客网 时间:2024/05/15 16:02

Spring接受前台的数据超过256出现如下异常:

[java] view plain copy
 print?
  1. org.springframework.beans.InvalidPropertyException: Invalid property 'specificationValues[256]' of bean class [com.sencloud.entity.Specification]: Index of out of bounds in property path 'specificationValues[256]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 256, Size: 256  
  2.     org.springframework.beans.BeanWrapperImpl.getPropertyValue(BeanWrapperImpl.java:811)  
  3.     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

其中有一句

[plain] view plain copy
 print?
  1. Binder that allows for binding property values to a target object. The binding process can be customized through specifying allowed fields, required fields, and custom editors.  
  2.   
  3. Note that there are potential security implications in failing to set an array of allowed fields. In the case of HTTP form POST data for example, malicious clients can attempt to subvert an application by supplying values for fields or properties that do not exist on the form. In some cases this could lead to illegal data being set on command objects or their nested objects. For this reason, it is highly recommended to specify the allowedFields property on the DataBinder.  

大概意思是前台的Form 元素绑定到 后台的JaveBean对象,做的一个映射,但是这个映射的List长度不可以超过256

反编译的源码如下:




解决如下:重set下autoGrowCollectionLimit,当做绑定的时候set为1024或者更大

[java] view plain copy
 print?
  1. /** 
  2.    * 由于Spring在接受前台传入的List时,就会出现256的IndexOutOfBoundsException异常 
  3.    * 设置setAutoGrowCollectionLimit为1024 
  4.    * @param binder 
  5.    * @see [类、类#方法、类#成员] 
  6.    */  
  7.   @InitBinder  
  8.   public void initListBinder(WebDataBinder binder)  
  9.   {  
  10.       // 设置需要包裹的元素个数,默认为256  
  11.       binder.setAutoGrowCollectionLimit(1024);  
  12.   }  

转载:http://blog.csdn.net/Dracotianlong/article/details/47604723

0 0
原创粉丝点击