We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring Aop分为jdk代理和cglib两种模式
jdk代理是使用java.lang.reflect.Proxy.newProxyInstance方法生成一个继承了接口的代理类,然后通过调用接口方法
The text was updated successfully, but these errors were encountered:
No branches or pull requests
简述
Spring Aop分为jdk代理和cglib两种模式
jdk代理
jdk代理是使用java.lang.reflect.Proxy.newProxyInstance方法生成一个继承了接口的代理类,然后通过调用接口方法
The text was updated successfully, but these errors were encountered: