@MethodParam never invoked

Hi all,

Could anyone help me with using @MethodParam? I have tried the example below and the method getDefaultView is never reached:

public Object doSomething(@MethodParam("getDefaultView") String view) {
	...	
}

public String getDefaultView(@RequestParam(value="view", required=false) String viewParam) {
  if (StringUtils.isEmpty(viewParam)) {
    return "default_view";
  }
  return viewParam;
}

That looks correct to me, FYI this only works for the Controllers written based on the new uiframework, can you share your full controller code?

Sorry this was not committed yet when you requested it: here.