#1164
[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));
[Weblogic] Migration (minor version) Migrating from Spring Security 3.x to 4.x (XML Configuration)