13

有没有办法制作一种每次调用方法时都会调用的“超级方法”,即使对于未定义的方法也是如此?有点像这样:

public void onStart() {
    System.out.println("Start");
}

public void onEnd() {
    System.out.println("End");
}

public SuperMethod superMethod() {
    System.out.println("Super");
}

// "Start"
// "Super"
onStart();

// "End"
// "Super"
onEnd();

// "Super"
onRun();

编辑 - 细节:我有一个更新很多的库,每次更新都会重新混淆。为了使我的工作流程更轻松,我正在让我的程序自动更新库(需要做我想做的事情,我不会具体说明原因,但我的程序将适用于未来的更新)并且我有混淆映射与库一起下载,我想制作一种称为Library例如代理的代理,然后当我调用Library.getInstance()它时,它将获取混淆映射getInstance()并调用库的方法getInstance(),或者abz在当前时刻映射到它。

4

5 回答 5

9

当然你可以做到这一点,不是使用标准 java,而是使用AspectJ

这是一个简单的例子:

事后建议方面

package net.fsa.aspectj.test;


public aspect SuperMethdAspect {

    pointcut afterPointCut() : execution(public * com.my.pack.age.MyClass.*(..));

    after() : afterPointCut() {
        System.out.println("Super");
    }
}

你的目标班级

package com.my.pack.age;

public class MyClass {

    public void onStart() {
        System.out.println("Start");
    }

    public void onEnd() {
        System.out.println("End");
    }
}

最后是一些测试应用程序

package net.fsa.aspectj.test;

import com.my.pack.age.MyClass;

public class MyApp {

    public static void main(String... args) {
        MyClass myClass = new MyClass();
        myClass.onStart();
        myClass.onEnd();
    }
}

输出

Start
Super
End
Super
于 2013-11-08T14:20:16.413 回答
9

这是使用Proxy类的纯 Java 实现:

import java.lang.reflect.*;
import java.util.*;

public class Demo
{
    public static void main(String[] args)
    {
        Map<String, String> map = new HashMap<String, String>();
        map.put("onStart", "abc");
        map.put("onEnd", "def");
        Library library = new LibraryProxy(map, new LibraryImpl()).proxy();
        library.onStart();
        library.onEnd();
        library.onRun();
    }
}

interface Library
{
    void onStart();
    void onEnd();
    void onRun();
}

class LibraryImpl
{
    public void abc() { System.out.println("Start"); }
    public void def() { System.out.println("End"); }
}

class LibraryProxy implements InvocationHandler
{
    Map<String, String> map;
    Object impl;

    public LibraryProxy(Map<String, String> map, Object impl)
    {
        this.map = map;
        this.impl = impl;
    }

    public Library proxy()
    {
        return (Library) Proxy.newProxyInstance(Library.class.getClassLoader(),
            new Class[] { Library.class }, this);
    }

    @Override
    public Object invoke(Object proxy, Method m, Object[] args) throws Throwable
    {
        Object res = null;
        String name = map.get(m.getName());
        if (name == null) {
            System.out.println("[" + m.getName() + " is not defined]");
        } else {
            m = impl.getClass().getMethod(name, m.getParameterTypes());
            res = m.invoke(impl, args);
        }
        System.out.println("super duper");
        return res;
    }
}

输出:

Start
super duper
End
super duper
[onRun is not defined]
super duper
于 2013-11-08T16:26:10.147 回答
4

Java 真的不允许这样的魔法。为了进行调用,它必须出现在您的(编译的)代码中。所以答案是否定的,除非明确添加对相关方法的调用。但是,您可以通过使用预处理器或运行时代码生成来隐藏它。

我认为 AspectJ 可能是你想要的。

于 2013-11-08T14:19:46.120 回答
0

我猜这不是您想要的,但是您可以将方法中的所有代码包装到try {}finally {supermethod ()}. 这将保证调用超方法。

于 2013-11-08T14:21:51.090 回答
0

这个概念背后的术语称为拦截器。你需要一个像 ApplicationServer、CDI Container、Spring 或 AOP 这样的容器。它像这样工作

1. call your Method
2. pause your Method
3. call intercepter
4. do interceptor stuff
5. resume your Method inside the interceptor
于 2013-11-08T15:25:55.430 回答