I\'m new to Java EE and Struts2. I need to know if I\'m doing it wrong or not.
I\'ve got a link like this : http://localhost:8080/myProject/deleteUser?idUser=42
Well, I'm not a Struts expert, but what I do in my Struts 2.2 project (and it works ok) is:
String paramValue = ServletActionContext.getRequest().getParameter("paramName");
Here paramName would be "idUser".