From first.jsp I am sending some parameters to result.jsp as -
<a href="result.jsp?itemId=${itemId}&itemName=${item.itemName}&itemCode=${item.itemCode} )">Show Items</a>
Here ${item.itemName} can have values like "food & stationary". When item name contains an "&", I am not able to get whole value on result page, its printing only "food". Is there any way (in JSTL or any) so that I can encode "&". I know if I would convert "&" to "%26" then this would correct.