return;
}
Exception exception = null;
ModelMap modelMap = RestContextManager.getModelMap();
if (method != null) {
try {
Object[] args = null;
// 构造参数集合
if (!isRpc) {
List params = constructParams(method, modelMap);
args = params.size() > 0 ? params.toArray() : null;
} else {
byte[] bytes = (byte[]) modelMap.get(ModelMap.RPC_ARGS_KEY);
ObjectInputStream obj_in = new ObjectInputStream(
new ByteArrayInputStream(bytes));
args = (Object[]) obj_in.readObject();
}