Hi group, Suppose I have an URL with parameters (e.g. http://localhost:8080/myApp/action/myAction/user/name/Peter).
I would like to map those parameters in the following way.
class MyAction {
private String searchType; // user
private String searchMethod; // name
private String searchData // Peter
}
Is there any Action class can parse the parameters into properties of
Action?
Thanks
Franz

