* paramter called "method" in the request and formats the value that may be
* in the form of "namespace.subnamespace.action" into "namespaceSubnamespaceAction"
* or more like a java method name
*/
public RestMultiActionController() {
setMethodNameResolver(new MethodNameResolver() {
public String getHandlerMethodName(HttpServletRequest request) throws NoSuchRequestHandlingMethodException {
String temp = request.getParameter("method");
if (temp == null) {
return null;
}