Code Snippet

Just another Code Snippet site

[Velocity] Increase list size (over 256 items)

Define the ‘AutoGrowCollectionLimit’

@InitBinder
public void initBinder(WebDataBinder dataBinder) {
     dataBinder.setAutoGrowCollectionLimit(5000);
}

Use LazyList :

listA = ListUtils.lazyList(new LinkedList<A>(), FactoryUtils.instantiateFactory(A.class));


Leave a Reply

Your email address will not be published. Required fields are marked *