chickenlj commented on issue #10014: URL: https://github.com/apache/dubbo/issues/10014#issuecomment-1235988853
Patch https://github.com/apache/dubbo-spi-extensions/pull/136 is only limited to certain types: ```java static { marshaller(String.class, new StringMarshaller()); marshaller(Integer.class, new IntegerMarshaller()); marshaller(Long.class, new LongMarshaller()); marshaller(Boolean.class, new BooleanMarshaller()); marshaller(Float.class, new FloatMarshaller()); marshaller(Double.class, new DoubleMarshaller()); marshallers.put(NULL_CLASS_NAME, new NullMarshaller()); } ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
