4

我的 Aspect 课程将是,

@Configuration
@EnableAspectJAutoProxy
@Component
@Aspect
public class AspectClass {

    @Before("execution(* com.pointel.aop.test1.AopTest.beforeAspect())")
    public void logBefore(JoinPoint joinPoint) {

        System.out.println("Before running the beforeAspect() in the AopTest.java class!");
        System.out.println("Hijacked Method name : " + joinPoint.getSignature().getName());
        System.out.println("************************");
    }

}

我的其他java类

public class AopTest {

    public void beforeAspect() {
        System.out.println("This is beforeAspect() !");
    }
}

我的主要课程是

public class MainMethod {

    public static void main(String[] args) {    
        ApplicationContext context = new FileSystemXmlApplicationContext("ApplicationContext/applicationContext.xml");
        AopTest test = (AopTest)context.getBean("bean1");
        test.beforeAspect();
    }
}

我的 applicationContext.xml 是,

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:aop="http://www.springframework.org/schema/aop"
    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 ">

    <bean id="bean1" class="com.pointel.aop.test1.AopTest" />

</beans>

在运行 Main 方法时, in this @Before("execution(* com.pointel.aop.test1.AopTest.beforeAspect())")inAspectClass不会在beforeAspect()in之前执行。AopTest

好的答案绝对值得赞赏。

4

4 回答 4

4

首先,如果您要使用基于注释的配置,请使用AnnotationConfigApplicationContext而不是FileSystemXmlApplicationContext. 并摆脱该applicationContext.xml文件,只需@Bean在您的配置类中添加一个方法。像这样的东西:

@Configuration
@EnableAspectJAutoProxy
@ComponentScan(basePackages = "your.aspect.package")
public class AspectConfig {
    @Bean 
    public AopTest aopTest() {
        return new AopTest();
    }
}

在你的主要

public class MainMethod {

    public static void main(String[] args) {    
        AnnotationConfigApplicationContextcontext = new AnnotationConfigApplicationContext(AspectConfig.class);
        // don't forget to refresh
        context.refresh();
        AopTest test = (AopTest)context.getBean("aopTest");
        test.beforeAspect();
    }
}

AspectClass你应该有@Component, ,并且@Aspect你的方法应该有建议或切入点注释,如@Before. 它必须是@Component,以便 Spring 知道扫描它。

于 2013-03-27T15:10:13.203 回答
1

这里需要在xml中添加一些代码来使用注解- 1.for @component注解。

xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd" 

2.之后使用组件扫描获取所有使用@component注解的注解bean类,并使用aop autoproxy-

<context:annotation-config/>
<context:component-scan base-package="mypackage"></context:component-scan>
 <aop:aspectj-autoproxy>
</aop:aspectj-autoproxy>

例如,请访问www.technicaltoday.com/p/spring.html

于 2013-03-27T15:58:59.677 回答
0

您在方面类中缺少切点定义。

例如;

@Pointcut("execution(* *.advice(..))")  
public void logBefore(){}  

@Before("logBefore()")  
public void beforeAdvicing(){  
System.out.println("Listen Up!!!!");  
}  

您首先必须定义将方面编织到的点。您可以使用切点来执行此操作。这是您在 @Before 注释中给出的切点名称。查看我的博客文章以获取更多信息@ http://dinukaroshan.blogspot.com/2010/06/aop-with-spring.html

于 2013-03-27T16:45:21.093 回答
0

AspectClass在 bean 配置中看不到你的。您还应该将其声明为 Bean。

于 2015-07-31T13:44:49.183 回答