Is there anyway to have additional arguments in the url of a struts2 rest plugin controller?
For example, I have:
public class PersonController() implements ModelDriven<Object> {
private Integer id;
...
public String comment() { ... };
// Getter and Setter for id
}
which is successfully reached with [domain]/person/{id}/comment
However, what I would like to be able to is have a url like [domain]/person/{id}/comment/{commentId}