liuzhengyang / simple-rpc

RPC with service discovery base on netty

Home Page:https://liuzhengyang.github.io/2016/12/16/rpc-principle/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add Cglib support for client proxying

liuzhengyang opened this issue · comments

Now we have a default JDK proxy implementation, JDK Proxy use class code generating and can proxy interfaces. Although we have assumed that the proxyed class is interface, we can add an alternative of proxy implementation with cglib, javaassist, asm etc.

Finished with #25