We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@method注解中用onreturn属性 但是该属性只会设置org.apache.dubbo.config.MethodConfig中的onreturn属性并不会设置其onreturnMethod属性 但是org.apache.dubbo.rpc.protocol.dubbo.filter.FutureFilter::fireReturnCallback中会进行两个属性的判空呢
if (onReturnMethod == null || onReturnInst == null) { throw new IllegalStateException("service:" + invoker.getUrl().getServiceKey() + " has a onreturn callback config , but no such " + (onReturnMethod == null ? "method" : "instance") + " found. url:" + invoker.getUrl()); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@method注解中用onreturn属性 但是该属性只会设置org.apache.dubbo.config.MethodConfig中的onreturn属性并不会设置其onreturnMethod属性
但是org.apache.dubbo.rpc.protocol.dubbo.filter.FutureFilter::fireReturnCallback中会进行两个属性的判空呢
if (onReturnMethod == null || onReturnInst == null) {
throw new IllegalStateException("service:" + invoker.getUrl().getServiceKey() + " has a onreturn callback config , but no such " + (onReturnMethod == null ? "method" : "instance") + " found. url:" + invoker.getUrl());
}
The text was updated successfully, but these errors were encountered: