当MyBean的save方法被称为方面未被调用时
MyBean.java
package com.crm.web.beans;
public class MyBean {
public String save() {
System.out.pringln("Save is called");
}
}
AppConfig.java
@Configuration
@EnableAspectJAutoProxy
public class AppConfig {
@Bean
public MyLogger myAspect() {
return new MyLogger();
}
}
MyLogger.java
@Configuration
@Aspect
public class MyLogger {
private Logger log = Logger.getAnonymousLogger();
@Around("execution(* com.crm.web.beans.*(..))")
public void log(JoinPoint point) {
System.out.println("This is calledddddddddd");
log.info(point.getSignature().getName() + " called...");
}
}
的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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-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/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<context:annotation-config />
<context:spring-configured />
</beans>
Iam仅调用保存方法&#34;保存称为&#34;得到印刷。 提前致谢
答案 0 :(得分:2)
你的切入点表达方式不正确。它应该是下面的
@Around("execution(* com.crm.web.beans..(..))")
参见参考文档here (参考点 - 服务包中定义的任何方法的执行)
同样将@Configuration
注释更正为@Component
MyLogger
,如下所示
@Component
@Aspect
public class MyLogger { .. }
见解释here。粘贴下面的相关部分。
您可以在Spring XML配置中将方面类注册为常规bean,或者通过类路径扫描自动检测它们 - 就像任何其他Spring管理的bean一样。但是,请注意@Aspect注释不足以在类路径中进行自动检测:为此,您需要添加单独的 @Component 注释(或者根据需要添加符合条件的自定义构造型注释) Spring的组件扫描程序的规则。)
答案 1 :(得分:2)
好的我觉得我做到了,试试这个:
@Configuration
@EnableAspectJAutoProxy
public class AppConfig {
@Bean
public MyLogger myAspect() {
return new MyLogger();
}
@Bean
public MyBean myBean() {
System.out.println("MyBean is called");
return new MyBean();
}
}
然后:
public class MainApp {
public static void main(String[] args) {
ApplicationContext context =
new AnnotationConfigApplicationContext(AppConfig.class);
MyBean mybean = context.getBean(MyBean.class);
mybean.save();
}
}
通过这种方式,您可能会获得一个无法解析的循环引用&#39;错误,我认为这是因为它试图记录logger类。你可以修改它改变你的周围表达,缺少一个&#39; *&#39;无论如何,对于这样的事情:
@Around("execution(* com.crm.web.beans.MyBean.*(..))")
还要检查来自flob和JavaBond的答案。
答案 2 :(得分:0)
你要么
aspectjweaver.jar
和aspectjrt.jar
(@see Spring Aspectj documentation)或MyBean
本身内调用增强型代理。