无法获取代理对象执行的方面

时间:2015-01-20 04:37:01

标签: java spring aop aspectj

我正在尝试在代理对象上执行方面

package thispkg;

public class MyLogger {
    public void before() {
        System.out.println("=========Before========");
    }
    public void after() {
        System.out.println("=========After=========");
    }
    public void info() {
        System.out.println("=========Info=========");
    }
}

package thispkg;

public interface MyInterface {
    public void speak();
}

package thispkg;

public class MyInterfaceImpl implements MyInterface {
    @Override
    public void speak() {
        System.out.println("MyInterfaceImpl :: Hello world");
    }
}

package thispkg;

public class RandomClass {
    public void suvichar() {
        System.out.println("RandomClass (suvichar)::Karm kiye jaa, fal ki chinta mat kar");
    }
}

package thispkg;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("thispkg.xml");
        MyInterface in = (MyInterface) context.getBean("randomClass", RandomClass.class);
        in.speak();
    }
}

我的XML

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:spring-configured/>
    <bean id="mylogger" class="thispkg.MyLogger"/>
    <bean id="randomClass" class="thispkg.RandomClass"/>
    <bean id="myInterfaceImpl" class="thispkg.MyInterfaceImpl"/>
    <aop:config proxy-target-class="true">
        <aop:aspect id="usageTrackerAspect" ref="mylogger">
            <aop:declare-parents types-matching="thispkg.RandomClass+" implement-interface="thispkg.MyInterface" default-impl="thispkg.MyInterfaceImpl"/>
            <aop:pointcut expression="this(thispkg.MyInterface)" id="randompointcut"/>
            <aop:before pointcut-ref="randompointcut" method="info"/>
        </aop:aspect>
    </aop:config>
</beans>

我试过了thispkg.MyInterfaceImpl&amp; thispkg.RandomClass in 切入点表达但仍无法获得========Info======== 打印。只打印

MyInterfaceImpl :: Hello world

有任何线索吗?

2 个答案:

答案 0 :(得分:0)

我不确定这是一个错误还是预期的行为。

您要将MyInterface(和MyInterfaceImpl)添加为introductions

<aop:declare-parents ... />

这些是通过代理对象中的特定拦截器(称为引入拦截器)实现的。该方面在代理中作为单独的拦截器(称为AOP拦截器)添加。一个人不能(不)拦截另一个。

如果您执行以下操作

RandomClass bean = context.getBean(RandomClass.class);
bean.suvichar();

你的建议会被调用,因为AOP拦截器开始发挥作用。

MyInterface in = (MyInterface) context.getBean("randomClass", RandomClass.class);
in.speak();

然而,它是处理speak调用的介绍拦截器。您的AOP拦截器不参与,因此在建议之前不会调用

答案 1 :(得分:0)

因此,经过一些尝试,然后更多的阅读,然后更多的重试,我发现我可以在使用delegate-ref而不是default-impl时获得所需的行为,从而允许spring管理我的实现。还纠正我的切入点表达。

<aop:aspect ref="mylogger">
        <aop:declare-parents types-matching="thispkg.RandomClass+" implement-interface="thispkg.MyInterface" delegate-ref="myInterfaceImpl"/>
        <aop:pointcut expression="execution(* thispkg.MyInterface.speak())" id="randompointcut"/>
        <aop:before method="info" pointcut-ref="randompointcut"/>
</aop:aspect>

输出

=========Info=========
MyInterfaceImpl :: Hello world