↧
How to create a url ensuring parameters are encoded?
URL parameters require the parameter values (and names) to be appropriately encoded. You can use the URLEncoder class to do this yourself, or the and tags can be used to handle it for you. <c:url...
View ArticleHow to access request parameters containing dot
When using JTST to access a request parameter we typically use something like this: ${param.xyz} If the parameter name contains a . then this becomes ${param.xyz.abc} Problem is that JSTL interprets...
View Article