I am referring to a url which has paramID from my portlet. The content of that paramID is handled in different portlet and it has its own controller.
That controller is taking HttpServletRequest to read that param.
HttpServletRequest request = PortalUtil.getOriginalServletRequest(PortalUtil.getHttpServletRequest(renderRequest));
String paramID= request.getParameter("paramID");`
My param is in the url http://mysite.com?paramID=123
Will the HttpServletRequest read this param when I am calling using renderURL
<liferay-portlet:renderURL var="xyz" portletName="ABC" windowState="Normal"/>
...
<a href="xyz?pramID"> Click here</a>