I’m trying to execute an action with the next URL
http://localhost:8080/FantasticWebsite/services/addPhone?id=6
So my parameter object must have at least the key “id” with value “6”, but no!, I get all parameters in my form but that ID don’t appears.
Im getting parameters with this :
id=Integer.parseInt(parameter.get("id")[0]);
Someone can help me?
use
where