I have the following multi select block in JSP
inside a <s:form> tag. When I submit the form
the action method works ok.
<s:select
id="prodSelect"
list="#application.actionForm.vtrProduct"
name="repSearchProdVO.product"
multiple="true"
emptyOption="false"
headerKey="-1"
theme="simple"
style="
font-size: 14px;
color: #000069;
font-family: 'Arial, Helvetica, sans-serif';
height: 20px;
width: 240px;
"
value="#session.repSearchVO.product"
/>
However, the repSearchProdVO.product can only handle 890 options.
I have more than 3000 options that need to be selected.
When I choose 2000 options, it still returns 890 options.
I will be grateful for any help.
I forgot to mention that the server is Tomcat 9.0.75. The maxParameterCount for the port 8080 in server.xml has a default value of 1000. I changed it to 10000 and everything worked as expected. This may help someone.