type
status
date
slug
summary
tags
category
icon
password
Java 动态代理一般分为 JDK 动态代理和 CGLIB 动态代理,二者的区别如下:
- JDK 动态代理是基于接口的代理,只能代理实现了接口的类,而 CGLIB 动态代理是基于继承的代理,可以代理未实现接口的类。
- JDK 动态代理生成的代理对象性能较低,因为每次生成代理对象时都需要通过反射来进行,而 CGLIB 动态代理在生成代理对象时会使用代码生成技术,性能更高。
以下是 JDK 动态代理和 CGLIB 动态代理的代码实现:
JDK 动态代理:
CGLIB 动态代理:
- Author:NotionNext
- URL:https://tangly1024.com/article/f09ae3dd-121d-40f8-aeb0-cfc5ad013801
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!