I get this below exceptions(which is in the mentioned in this question) while submitting more than 256 rows of data from jsp.
(Recently I moved jars in my web app from spring3 to spring4.)
org.springframework.beans.InvalidPropertyException: Invalid property 'list[256]' of bean class [com.test.Bean]: Index of out of bounds in property path 'list[256]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 256, Size: 256
Caused By: java.lang.IndexOutOfBoundsException: Index: 256, Size: 256
So I use this anwser and it worked .
What If I can have many rows of data ? should we use it in every controller to set the limit?