浅记专题

Java浅记InvocationHandler实现动态代理

抽象角色 /*** @author chaoxi* @create 2021-08-17 15:57*///待实现的接口public interface UserService {void add();void delete();void update();void query();} 实现了接口的真实角色 /*** @author chaoxi* @create 2021-08