I have been trying to obtain the id parameter:
http://localhost/client/edit.xhtml?id=0001
I already tried to obtain the parameter with HttpServletRequest using the next code block, but I obtain > id = 1
HttpServletRequest req = (HttpServletRequest) externalContext.getRequest();
String urlParams = req.getQueryString();
How can I obtain > id = 0001?