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

五柳-先生發表於2016-01-29

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

相關文章