throw new RsfException(ProtocolStatus.NotFound, "service was not found.");
}
//2.反序列化
String[] pTypes = this.requestMsg.getParameterTypes();
try {
SerializeFactory serializeFactory = this.rsfContext.getSerializeFactory();
this.parameterObjects = this.requestMsg.toParameters(serializeFactory);
//
this.parameterTypes = new Class<?>[pTypes.length];
for (int i = 0; i < pTypes.length; i++) {
this.parameterTypes[i] = ProtocolUtils.toJavaType(pTypes[i], Thread.currentThread().getContextClassLoader());