You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "wxbty (via GitHub)" <gi...@apache.org> on 2023/05/07 07:56:38 UTC

[GitHub] [dubbo] wxbty opened a new issue, #12248: The generic call in bean mode passes a null parameter and reports an error NPE

wxbty opened a new issue, #12248:
URL: https://github.com/apache/dubbo/issues/12248

   ### Environment
   
   * Dubbo version: 3.1
   * Operating System version: mac m1
   * Java version: 1.8
   
   ### Steps to reproduce this issue
   
   1. Use the following code to make a generalization call of the bean mode
   
   2. ```java
      ReferenceConfig<GenericService> referenceConfig = new ReferenceConfig<>();
          referenceConfig.setInterface(DemoService.class.getCanonicalName());
          applicationConfig.setRegistry(registryConfig);
          referenceConfig.setApplication(applicationConfig);
          referenceConfig.setGeneric(GENERIC_SERIALIZATION_BEAN);
          GenericService genericService = referenceConfig.get();
      JavaBeanDescriptor result = (JavaBeanDescriptor)genericService.$invoke("sayHello", new String[]{"java.lang.String"}, new Object[]{JavaBeanSerializeUtil.serialize(null)});
      ```
   
   ### Expected Behavior
   
   call success
   
   ### Actual Behavior
   
   If there is an exception, please attach the exception trace:
   
   ```
   Caused by: java.lang.NullPointerException
   	at org.apache.dubbo.rpc.filter.GenericImplFilter.invoke(GenericImplFilter.java:126)
   	at org.apache.dubbo.rpc.cluster.filter.FilterChainBuilder$CopyOfFilterChainNode.invoke(FilterChainBuilder.java:327)
   	at org.apache.dubbo.rpc.cluster.filter.FilterChainBuilder$CallbackRegistrationInvoker.invoke(FilterChainBuilder.java:194)
   	at org.apache.dubbo.rpc.protocol.ReferenceCountInvokerWrapper.invoke(ReferenceCountInvokerWrapper.java:78)
   	at org.apache.dubbo.rpc.cluster.support.AbstractClusterInvoker.invokeWithContext(AbstractClusterInvoker.java:379)
   	at org.apache.dubbo.rpc.cluster.support.FailoverClusterInvoker.doInvoke(FailoverClusterInvoker.java:81)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo] AlbumenJ closed issue #12248: The generic call in bean mode passes a null parameter and reports an error NPE

Posted by "AlbumenJ (via GitHub)" <gi...@apache.org>.
AlbumenJ closed issue #12248: The generic call in bean mode passes a null parameter and reports an error NPE
URL: https://github.com/apache/dubbo/issues/12248


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org