You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.
客户端设置dubbo.consumer.lazy=true时,所有的@reference在启动时,不应该去检查是否为null了,这样就会导致lazy的配置不起作用。
org.springframework.beans.factory.config.BeanPostProcessor#postProcessBeforeInitialization的 if (dubboReference == null) { referenceBean.afterPropertiesSet(); // dubboReference should not be null, otherwise it will cause // NullPointerException dubboReference = referenceBean.getObject(); DubboConsumerAutoConfiguration.DUBBO_REFERENCES_MAP.put(classIdBean, dubboReference); }
期望早日修复
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
客户端设置dubbo.consumer.lazy=true时,所有的@reference在启动时,不应该去检查是否为null了,这样就会导致lazy的配置不起作用。
org.springframework.beans.factory.config.BeanPostProcessor#postProcessBeforeInitialization的
if (dubboReference == null) { referenceBean.afterPropertiesSet(); // dubboReference should not be null, otherwise it will cause // NullPointerException dubboReference = referenceBean.getObject(); DubboConsumerAutoConfiguration.DUBBO_REFERENCES_MAP.put(classIdBean, dubboReference); }
期望早日修复
The text was updated successfully, but these errors were encountered: