GroovyMOP 元对象协议与元编程 ( 使用 Groovy 元编程进行函数拦截 | 动态拦截函数 | 动态获取 MetaClass 中的方法 | evaluate 方法执行Groovy脚本 )

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GroovyMOP 元对象协议与元编程 ( 使用 Groovy 元编程进行函数拦截 | 动态拦截函数 | 动态获取 MetaClass 中的方法 | evaluate 方法执行Groovy脚本 )相关的知识,希望对你有一定的参考价值。

文章目录





一、基础示例



定义类 Student , 在其中声明若干成员变量和成员方法 ;

class Student 
    def name
    def age

    def hello() 
        println "Hello , my name is $name, $age years old"
    

    def walk() 
        println "$name walk"
    

初始化 Student 对象 , 并执行 Student 对象的 hello 方法 ,

def student = new Student(name: "Tom", age: 18)

// 第一次调用 hello 方法
student.hello()

执行结果如下 :

Hello , my name is Tom, 18 years old




二、根据字符串动态获取 MetaClass 中的方法



进行动态函数拦截时 , 事先不知道要要拦截的方法名 , 这里声明一个药拦截的方法名变量 ;

// 要拦截的方法名
def interceptMethodName = "hello"

使用如下代码操作 , 即可获取 MetaClass 中的方法 ;

// 函数拦截操作
student.metaClass."$interceptMethodName"




二、使用 evaluate 执行字符串形式的 Groovy 脚本



动态函数拦截时 , 也不知道拦截后要执行哪些操作 , 使用 evaluate 函数 , 可以直接执行的 Groovy 脚本字符串 ;

Groovy 脚本字符串如下 :

// 拦截后要执行的 字符串 代码
def interceptAction = "println 'Intercept Hello Method'"

执行 Groovy 脚本字符串 :

    // 执行 代码 , 传入的参数是 代码的字符串形式
    evaluate(interceptAction)

代码示例 :

// 要拦截的方法名
def interceptMethodName = "hello"

// 拦截后要执行的 字符串 代码
def interceptAction = "println 'Intercept Hello Method'"

// 函数拦截操作
student.metaClass."$interceptMethodName" = 
    // 执行 代码 , 传入的参数是 代码的字符串形式
    evaluate(interceptAction)





二、完整代码示例



完整代码示例 : 在下面的代码中 , 先执行原始的 hello 方法 ; 然后第一次动态拦截 hello 方法 , 执行 "println 'Intercept Hello Method'" 字符串脚本内容 , 再次执行 hello 方法 ; 最后再次动态拦截 hello 方法 , 执行 "println 'Intercept Hello Method Second Time'" 字符串脚本内容 , 执行 hello 方法 ;


class Student 
    def name
    def age

    def hello() 
        println "Hello , my name is $name, $age years old"
    

    def walk() 
        println "$name walk"
    


def student = new Student(name: "Tom", age: 18)

// 第一次调用 hello 方法
student.hello()


// I. 第一次进行函数拦截


// 要拦截的方法名
def interceptMethodName = "hello"

// 拦截后要执行的 字符串 代码
def interceptAction = "println 'Intercept Hello Method'"

// 函数拦截操作
student.metaClass."$interceptMethodName" = 
    // 执行 代码 , 传入的参数是 代码的字符串形式
    evaluate(interceptAction)


// 方法拦截后执行 hello 方法
student.hello()


// II . 第二次进行函数拦截


// 拦截后要执行的 字符串 代码
interceptAction = "println 'Intercept Hello Method Second Time'"

// 函数拦截操作
student.metaClass."$interceptMethodName" = 
    // 执行 代码 , 传入的参数是 代码的字符串形式
    evaluate(interceptAction)


// 方法拦截后执行 hello 方法
student.hello()

执行结果 :

Hello , my name is Tom, 18 years old
Intercept Hello Method
Intercept Hello Method Second Time

以上是关于GroovyMOP 元对象协议与元编程 ( 使用 Groovy 元编程进行函数拦截 | 动态拦截函数 | 动态获取 MetaClass 中的方法 | evaluate 方法执行Groovy脚本 )的主要内容,如果未能解决你的问题,请参考以下文章

GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 ExpandoMetaClass 进行方法注入 )

GroovyMOP 元对象协议与元编程 ( 方法委托 | 批量方法委托 )

GroovyMOP 元对象协议与元编程 ( 方法合成引入 | 类内部获取 HandleMetaClass )

GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 MetaClass 进行方法注入构造方法 )

GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 Category 分类注入方法 )

GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 MetaClass 注入静态方法 )