使用Spring实现aop
第一种:使用SpringAPI接口
导入依赖
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>
接口
public interface UserService {
public void add();
public void delet();
public void update();
public void select();
}
实现类
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("增加了一条数据");
}
public void delet() {
System.out.println("删除了一条数据");
}
public void update() {
System.out.println("修改了一条数据");
}
public void select() {
System.out.println("查询了一条数据");
}
}
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.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册bean-->
<bean id="userService" class="com.liu.service.UserServiceImpl"/>
<bean id="log" class="com.liu.log.log"/>
<bean id="afterLog" class="com.liu.log.AfterLog"/>
<!--配置aop-->
<aop:config>
<!--切入点-->
<aop:pointcut id="pointcut" expression="execution(* com.liu.service.UserServiceImpl.*(..))"/>
<!--执行环绕增强-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
测试
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = context.getBean("userService", UserService.class);
userService.delet();
}
第二种:自定义方法实现aop
<!--方式二:自定义类-->
<bean id="diy" class="com.liu.diy.DiyPointCut"/>
<aop:config>
<!--自定义切面,ref要引用的类-->
<aop:aspect ref="diy">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.liu.service.UserServiceImpl.*(..))"/>
<!--通知-->
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
</aop:config>
public void before(){
System.out.println("========方法执行前========");
}
public void after(){
System.out.println("========方法执行后========");
}
第三种:使用过注解实现
<!--方式三-->
<bean id="AnnotationPointCut" class="com.liu.diy.AnnotationPointCut"/>
<!--开启注解支持-->
<aop:aspectj-autoproxy/>
@Aspect//标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.liu.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("========方法执行前========");
}
@After("execution(* com.liu.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("========方法执行后========");
}
//在环绕增强在中,我们可以给定一个参数,代表我们要获取处理切入的点;
@Around("execution(* com.liu.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("环绕前");
System.out.println(jp.getSignature());
jp.proceed();//执行方法
System.out.println("环绕后");
}
}