Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 396 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 396 Bytes

dubbo-extension

Dubbo extension points implementation

Simple tutorial:

<dubbo:provider serialization="cryo" />

Custom Kryo instance:


KryoRegister.register(new KryoCustom() {
	@Override
	public void custom(Kryo kryo) {
		kryo.register(Map.class, new HashMapSerializer());
		kryo.register(List.class, new ArrayListSerializer());
	}
});