I've upgraded recently my application. My application uses the Java web API, with servlets and jsp's. I made in the new release the switch from Java 7 to Java 8.
My server uses now the Wildfly10 platform, which uses Java 8. Previous it was Jboss 7, which uses Java 7.
In the previous version of my application, my app crashed when I was adding +- 300 attributes at a specific page, which made my request url long. But in my new version, it's not a problem anymore, without making changes at the specific code.
Is there a difference in the size limits of request url's in Java 7 and Java 8?