【Groovy】MOP 元对象协议与元编程 ( 使用 Groovy 元编程进行函数拦截 | 动态拦截函数 | 动态获取 MetaClass 中的方法 | evaluate 方法执行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

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

上一篇:ASA静态PAT的双向访问测试及理解


下一篇:h5 input,textarea属性placeholder样式修改失效问题解决