Hi,
I am using following peace of code in my jsp page to remove quote character or invalid character from url parameters.
code is--
To remove quote character or invalid character from address variable, I am using JSTL function -- fn:escapeXml(address). It is working fine.Code:<spring:eval expression="@uiController.dataTag('${fn:escapeXml(address)}')" var="cleanaddress" />
But i need equivalent spring functionality instead of JSTL function.
is there any equivalent tag or function in spring to remove double quote, or invalid character from address varibale?
Please suggest me spring function to replace fn:escapeXML(address) jstl function.
Thanks in advance.


Reply With Quote