You can put your map directly to action class and in JSP use Struts2 tags to submit/get values.
Action
public class SaveAction extends ActionSupport {
private Map map;
public String execute(){
// do something with map
return SUCCESS;
}
// getter/setter for map
}