121122123124125126127128129130131
} // method + uri,用来判断是否有Action与之绑定 ActionExecution actionExe = new ActionExecution(uri, reqMethod, context); if (actionExe.findAction()) { actionExe.execute();// 5.execute the action return; } this.normalReqLog(uri);// log
127128129130131132133134135136137
9293949596979899100101102
return; } // method + uri,用来判断是否有Action与之绑定 ActionExecution actionExe = new ActionExecution(uri, reqMethod, context); if (actionExe.findAction()) { actionExe.execute();// 5.execute the action return; } this.normalReqLog(uri);// log
117118119120121122123124125126127