Implement CGLIB in ABAP

2019-12-11
阅读 2 分钟
1k
What is cglib?A Byte Code Generation Library which is high level API to generate and transform Java byte code. It is used in various scenarios such as AOP, testing, data access frameworks to generate dynamic proxy objects and intercept field access.See one example in unit test.In line 17, a new d...