如果通过反射设置字段,是否会调用set()字段切入点?

时间:2014-04-04 19:14:14

标签: aspectj pointcut

我有一个字段设置切入点,这似乎按照我的预期进行。其定义如下

before(Object newval): set(@Serviced private * *.*) && args(newval)

以上内容旨在捕获:每当使用@Serviced注释的私有字段属性设置时,请在建议之前调用我。

除了我的代码中的一个案例通过java反射设置一个与上面相匹配的变量(即通过java.lang.reflect.Field.set(....)。

我知道如何能够抓住这个"设置"也?

由于

1 个答案:

答案 0 :(得分:5)

正如您所注意到的,set()切入点无法拦截反射场变化。但是如果您控制(即可以编织方面)调用Field.set*(..)方法的代码,您也可以通过使用反射解决该问题。这是一个完整的,可编译的代码示例,说明了解决方案:

示例注释:

package de.scrum_master.app;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Serviced {}

使用main方法的示例实体类:

package de.scrum_master.app;

public class Person {
    @Serviced private int id;
    @Serviced private String name;
    private String country;

    public int getId() { return id; }
    public void setId(int id) { this.id = id; }
    public String getName() { return name; }
    public void setName(String name) { this.name = name; }
    public String getCountry() { return country; }
    public void setCountry(String country) { this.country = country; }

    public void setIdReflective(int id) throws Exception {
        Person.class.getDeclaredField("id").setInt(this, id);
    }

    public void setNameReflective(String name) throws Exception {
        Person.class.getDeclaredField("name").set(this, name);
    }

    public void setCountryReflective(String country) throws Exception {
        Person.class.getDeclaredField("country").set(this, country);
    }

    @Override
    public String toString() {
        return "Person [id=" + id + ", name=" + name + ", country=" + country + "]";
    }

    public static void main(String[] args) throws Exception {
        Person person = new Person();
        person.setId(11);
        person.setName("Tin Man");
        person.setCountry("Oz");
        System.out.println("Before reflective setters: " + person);
        person.setIdReflective(22);
        person.setNameReflective("Cowardly Lion");
        person.setCountryReflective("The Land of Oz");
        System.out.println("After reflective setters:  " + person);
    }
}

如您所见,三个私有字段中只有两个具有@Serviced注释。两次调用所有三个字段的Setter:一次正常,一次通过反射。

Aspect拦截正常和反射字段更改:

package de.scrum_master.aspect;

import de.scrum_master.app.Serviced;
import java.lang.reflect.Field;

public aspect ServicedFieldChangeInterceptor {
    before(Object newValue):
        set(@Serviced private * *) && args(newValue)
    {
        System.out.println(thisJoinPointStaticPart + " -> " + newValue);
    }

    before(Object newValue, Field field):
        call(public void Field.set*(Object, *)) && args(*, newValue) && target(field)
    {
        if (field.getAnnotation(Serviced.class) == null)
            return;
        System.out.println(thisJoinPointStaticPart + " -> " + field + ", " + newValue);
    }
}

运行Person.main时的示例输出:

set(int de.scrum_master.app.Person.id) -> 11
set(String de.scrum_master.app.Person.name) -> Tin Man
Before reflective setters: Person [id=11, name=Tin Man, country=Oz]
call(void java.lang.reflect.Field.setInt(Object, int)) -> private int de.scrum_master.app.Person.id, 22
call(void java.lang.reflect.Field.set(Object, Object)) -> private java.lang.String de.scrum_master.app.Person.name, Cowardly Lion
After reflective setters:  Person [id=22, name=Cowardly Lion, country=The Land of Oz]

输出清楚地表明,对于使用@Serviced注释的字段,两个建议仅“执行某些操作”(在本例中为打印信息到标准输出),而其他字段则被跳过。虽然set()切入点是静态应用的,但反射切入点需要确定目标字段是否具有动态匹配的注释。