spring-boot-protocol icon indicating copy to clipboard operation
spring-boot-protocol copied to clipboard

springboot功能扩充-netty动态协议,可以支持各种网络协议的动态切换(单端口支持多个网络协议).支持mmap,sendfile零拷贝,http请求批量聚合

Results 11 spring-boot-protocol issues
Sort by recently updated
recently updated
newest added

` @Override public byte[] encodeResponseData(Object data, RpcMethod rpcMethod) { if (data == null) { return EMPTY; } try (SerializeWriter out = new SerializeWriter()) {//这里报错 JSONSerializer serializer = new JSONSerializer(out, serializeConfig);...