SAP ABAP和Java的動態代理實現
In my blog Implement CGLIB in ABAP I demonstrate how to create dynamical proxy class via CGLIB in Java and ABAP. The generated proxy class is actually a subclass which inherits the base class. Such class created by CGLIB is transient, which means the life time of generated class is only within the current session where it is created, which will not be persisted.
In this blog I will show how to create a globally persistent proxy class dynamically in Java and ABAP.
The example is built based on Proxy design pattern.
Dynamic proxy in Java
There is one interface:
public interface IHelloWorld{
void print();}
And one implementation class:
class HelloWorldImp implements IHelloWorld{
public void print()
{
System.out.println("Hello World");
}}
Then I will create a dynamic proxy class ( which will be persisted to my laptop ) based on HelloWorldImp, with additional line System.out.println(\”Before Hello World!\”); before original method print() and System.out.println(\”After Hello World!\”); after method print().
The class object of generated proxy class is created via the following method which consists of four steps:
private static Class<?> getProxyClass() {
String sourceCode = getSourceCode();
String javaFile = createJavaFile(sourceCode);
compile(javaFile);
return loadClass();
}
step1: populate source code of proxy class
step2: create a new .java file in disk with source code generated in previous step:
step3: compile the generated .java file in step 2 via API exposed by interface in package javax.tools.JavaCompiler, after compilation .class file will be generated in disk.
step4: use URLClassLoader to load the generated .class file in step3. After that it is available to create a new instance based on this loaded class via reflection.
Here below is the code how to consume this getProxyClass() method:
Once the above code is executed, you can observe:
(1) The original method of print is successfully enhanced via generated proxy class:
(2) corresponding .java and .class are persisted in the disk.
Dynamic proxy in ABAP
Again there is an interface IF_HELLOWORLD and an implementation class CL_HELLOWORLD based on which a new proxy class will be created dynamically.
Let’s first see what could be achieved in ABAP:
zcl_abap_dynamic_proxy_factory=>get_proxy(
EXPORTING
io_origin = NEW cl_helloworld( )
iv_new_class_name = 'ZCLABAP'
iv_pre_exit = `WRITE:/ 'Before hello world'.`
iv_post_exit = `WRITE:/ 'After hello world'.`
RECEIVING
ro_proxy = DATA(proxy) ).DATA(lo_helloworld) = CAST if_helloworld( proxy ).lo_helloworld->print( ).
(1) The original instance of class CL_HELLOWORLD is passed to GET_PROXY method. Inside this method, it will inject the pre exit and post exit logic into the original implementation of print method. The injection is done in a new class, whose name is passed via parameter iv_new_class_name, in this example, ZCLABAP.
(2) Once the above report is executed, the injected proxy instance returned in line 10 contains the enhanced logic so as expected you can now see the ABAP statement passed in iv_pre_exit and iv_post_exit are executed.
And you can also open the generated proxy class in SE24:
The pre exit and post exit logic are injected here:
Brief explanation about main logic of dynamic proxy generation
(1) extract_interface_info extract the involved interface name and the name of method to be injected via RTTI against passed reference via parameter io_origin (2) prepare_source_code Inject the pre exit and post exit statement into method source code internal table. (3) prepare_attr_and_signature Prepare method signature and private attribute for new class (4) generate_class Call ABAP class generation function module based on metadata assembled by previous two steps.
Further reading
I have written a series of blogs which compare the language feature among ABAP, JavaScript and Java. You can find a list of them below:
- Lazy Loading, Singleton and Bridge design pattern in JavaScript and in ABAP
- Functional programming – Simulate Curry in ABAP
- Functional Programming – Try Reduce in JavaScript and in ABAP
- Simulate Mockito in ABAP
- A simulation of Java Spring dependency injection annotation @Inject in ABAP
- Singleton bypass – ABAP and Java
- Weak reference in ABAP and Java
- Fibonacci Sequence in ES5, ES6 and ABAP
- Java byte code and ABAP Load
- How to write a correct program rejected by compiler: Exception handling in Java and in ABAP
- An small example to learn Garbage collection in Java and in ABAP
- String Template in ABAP, ES6, Angular and React
- Try to access static private attribute via ABAP RTTI and Java Reflection
- Local class in ABAP, Java and JavaScript
- Integer in ABAP, Java and JavaScript
- Covariance in Java and simulation in ABAP
- Various Proxy Design Pattern implementation variants in Java and ABAP
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2713821/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 淺談Java和SAP ABAP的靜態代理和動態代理,以及ABAP面向切面程式設計的嘗試Java程式設計
- Java使用Porxy和InvocationHandler實現動態代理Java
- Java代理設計模式(Proxy)的四種具體實現:靜態代理和動態代理Java設計模式
- java靜態代理和動態代理Java
- Java動態代理 jdk和cglib的實現比較JavaJDKCGLib
- Java中的靜態代理和動態代理Java
- 反射-動態代理的概述和實現反射
- JDK解構 - Java中的引用和動態代理的實現JDKJava
- Java代理(jdk靜態代理、動態代理和cglib動態代理)JavaJDKCGLib
- go如何實現類似java的動態代理GoJava
- Java的Covariance設計原理和SAP ABAP的模擬實現Java
- java 反射和動態代理Java反射
- Java基礎系列-靜態代理和動態代理Java
- SAP ABAP 動態內表實現 ALV橫向按月份動態顯示資料
- Java JDK 動態代理使用及實現原理分析JavaJDK
- JAVA 靜態代理 & 動態代理Java
- Android 動態代理以及利用動態代理實現 ServiceHookAndroidHook
- Java 靜態代理和動態代理的使用及原理解析Java
- java 的動態代理Java
- JDK 和 CGLib 實現動態代理和區別JDKCGLib
- java執行原理、靜態代理和動態代理區分Java
- Java JDK 動態代理(AOP)使用及實現原理分析JavaJDK
- SAP ABAP Gateway Client 的 ABAP 實現,重用 HTTP ConnectionGatewayclientHTTP
- 靜態代理和動態代理
- java動態代理Java
- Java動態代理(JDK和cglib)JavaJDKCGLib
- Java動態代理和反射機制Java反射
- JavaScript代理模式,怎麼實現物件的動態代理?JavaScript模式物件
- 【JAVA】代理模式之Java動態代理Java模式
- Java-JDK動態代理(AOP)使用及實現原理分析JavaJDK
- 一篇文章徹底搞懂java動態代理的實現Java
- java動態代理動態在哪裡?Java
- 細說JDK動態代理的實現原理JDK
- 深入理解 Java 反射和動態代理Java反射
- Java動態代理(AOP)Java
- java動態代理(1)Java
- Java Proxy動態代理Java
- java動態代理原理Java