parent
22b3c29b08
commit
3f2e0e18c9
|
|
@ -59,7 +59,9 @@ public class AotUtils {
|
|||
}
|
||||
}));
|
||||
|
||||
registerSerializationType(registerType.getSuperclass(), hints, serializationTypeCache);
|
||||
if (registerType.getSuperclass() != null) {
|
||||
registerSerializationType(registerType.getSuperclass(), hints, serializationTypeCache);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,4 +19,6 @@ package org.apache.dubbo.config.spring6.utils;
|
|||
public interface DemoService {
|
||||
|
||||
HelloResponse sayHello(HelloRequest request);
|
||||
|
||||
String sayHelloForSerializable(java.io.Serializable name);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue