什么是cglib?
cglib is a powerful, high performance and quality Code Generation Library, It is used to extend JAVA classes and implements interfaces at runtime.
This library is free software, freely reusable for personal or commercial purposes.
谁都用了cglib?
Open source projects use cglib and used by cglib:
"The Byte Code Engineering Library (formerly known as JavaClass) is intended to give users a convenient possibility to analyze, create, and manipulate (binary) Java class files (those ending with .class)." Used by cglib for Class file format manipulation.
" XORM is an extensible object-relational mapping layer for Java applications. It provides interface-based persistence to RDBMSs while allowing developers to focus on the object model, not the physical layer." Uses cglib to generate persistent classes.
" Hibernate is a powerful, ultra-high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritance, polymorphism, composition and the Java collections framework." Uses cglib to generate proxies for persistent classes.
" The Java Class File Editor allows you to read / modify java .class files, either on disk or while loading classes at runtime. The project grew out of the Generic Delegator, which creates new classes on the fly, allowing you to dynamically implement a group of interfaces by forwarding them to a shim" Both cglib and JCFE provide dynamic proxy implementation
" Voruta reduces JDBC code in application, it makes code more readable and safe, SQL procedures and queries are mapped to JAVA methods using custom javadoc tags and dynamic code generation at runtime. It needs no custom build tools or external files" Uses cglib to generate method implementations.
" Nanning Aspects is a simple yet scaleable aspect-oriented framework for Java."
" Spring is a J2EE application framework based on code published in Expert One-on-One J2EE Design and Development http://www.wrox.com/books/1861007841.htm by Rod Johnson."
" The iBATIS Database Layer takes a different approach to solving the Object Relational mapping problem --it avoids it altogether!"
" ASM is a Java bytecode manipulation framework. It offers similar functionalities as BCEL or SERP, but is much more smaller and faster than these tools."
" Proxool is a Java connection pool."
可以用来做什么?
·CGLIB and JAVA Security:
可以为java的二进制class文件进行访问授权。可以识别代码签名者和代码库URL(JAR或类文件),它可以是本地或从网络上下载。
通过CGLIB生成的类,不存在配置文件和JVM启动时间的差异,所有的生成类通过cglib拥有相同的签名和codebase,可以用在WS或RMI安全管理其中。
默认的安全配置文件在java.policy中。如:
grant codeBase "file:${user.dir}/jars/cglib.jar"{
permission java.security.AllPermission;
};
·CGLIB和Java序列化 :
可以通过代理来拦截序列化相关的writeReplace和readResolve方法,来做一些事情。
(序列化实现readResolve方法的作用 http://blog.csdn.net/partner4java/article/details/7058741)
·Access the generated byte[] array directly:
demo:
helloworld
场景:
我们会在下面的场景中逐步添加cglib的helloworld示例。
(CURD的基本操作,并模拟工厂,然后客户端调用)
然后我们会利用实现demo1日志记录,demo2权限拦截(指定拦截规则),demo3懒加载(如果用过hibernate就知道这个常用的方式)
MethodInterceptor:
General-purpose Enhancer callback which provides for "around advice".
extends Callback
唯一的接口方法--intercept
All generated proxied methods call this method instead of the original method.
The original method may either be invoked by normal reflection using the Method object, or by using the MethodProxy (faster).
这个类的基本意思就是供Enhancer回调,当调用类的方法时,不是调用原方法,而是调用intercept。
Enhancer:
翻译上为增强。也就是我们最常用的增强类,你告诉他需要增强什么类,以什么样的方式增强,增强什么方法等。
CallbackFilter:
也不知道咋说,就是accept决定调用Callback数组里的第几个。