Java学习路线-58:AOP面向切面编程

简介: Java学习路线-58:AOP面向切面编程

AOP 面向切面编程

AOP aspect oriented programming

OOP Object oriented programming

  1. 提供申明式服务
  2. 允许用户实现自定义切面

传统编程模式

自上而下,纵向的编程

Jsp
    ->
Action
    ->
Service
    ->
Dao

AOP 编程:

在不改变原有的代码,增加新的功能

Jsp

->
Action
->
Service <- log()
->
Dao

好处:

  1. 使得真实角色处理业务更加纯粹,不再关注公共的问题
  2. 公共业务由代理类完成,实现业务的分工
  3. 公共业务发生扩展时变得更加集中和方便


关注点:日志,安全,缓存,事务

切面 Aspect:一个关注点的模块化

实现 AOP

1、通过 Spring 接口实现

依赖


<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.5</version>
</dependency>
package com.spring.service;

public interface UserService {
public void add();
public void delete();
}
package com.spring.service.impl;

import com.spring.service.UserService;

public class UserServiceImpl implements UserService {

@Override
public void add() {
System.out.println("add");
}

@Override
public void delete() {
System.out.println("delete");
}
}
package com.spring.aop;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

// 前置通知
public class BeforeLog implements MethodBeforeAdvice {
@Override
public void before(Method method, Object[] args, Object target)
throws Throwable {
System.out.println(target.getClass().getName() + ": "+ method.getName());
}
}
package com.spring.aop;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

// 后置通知
public class AfterLog implements AfterReturningAdvice {
@Override
public void afterReturning(
Object result, Method method, Object[] objects, Object target)
throws Throwable {
System.out.println(target.getClass().getName() + ": "+ method.getName());
}
}
<?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
http://www.springframework.org/schema/aop/spring-aop.xsd";>


<bean id="service" class="com.spring.service.impl.UserServiceImpl"/>

<bean id="beforeLog" class="com.spring.aop.BeforeLog"/>
<bean id="AfterLog" class="com.spring.aop.AfterLog"/>

<aop:config>
<aop:pointcut id="action"
expression="execution( com.spring.service.impl.UserServiceImpl. (..))"/>
<aop:advisor advice-ref="beforeLog" pointcut-ref="action"/>
<aop:advisor advice-ref="AfterLog" pointcut-ref="action"/>
</aop:config>
</beans>
package com.spring.test;


import com.spring.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Demo {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
UserService service = (UserService) context.getBean("service");

service.add();
service.delete();

}
}

执行结果

com.spring.service.impl.UserServiceImpl: add
add
com.spring.service.impl.UserServiceImpl: add

com.spring.service.impl.UserServiceImpl: delete
delete
com.spring.service.impl.UserServiceImpl: delete

Spring AOP 本质


就是讲公共的业务(如日期,安全等)和领域业务结合,

当执行领域业务时将会把公共业务加进来,

实现公共业务的重复利用,

领域业务更纯粹,可以专注于领域业务,

本质是动态代理


2、自定义类实现 AOP


UserService、UserServiceImpl、Demo 三个类不变


添加 Log 类和修改配置文件

package com.spring.aop;

public class Log {
public void before(){
System.out.println("--before--");
}

public void after(){
System.out.println("--after--");
}
}
<?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
http://www.springframework.org/schema/aop/spring-aop.xsd";>


<bean id="service" class="com.spring.service.impl.UserServiceImpl"/>
<bean id="log" class="com.spring.aop.Log"/>

<aop:config>
<aop:aspect ref="log">
<aop:pointcut id="action"
expression="execution( com.spring.service.impl.UserServiceImpl. (..))"/>
<aop:before method="before" pointcut-ref="action"/>
<aop:after method="after" pointcut-ref="action"/>
</aop:aspect>
</aop:config>
</beans>

执行结果

--before--
add
--after--
--before--
delete
--after--

3、注解实现 AOP

业务类不改变

package com.spring.aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class Log {
@Before("execution( com.spring.service.impl.UserServiceImpl. (..))")
public void before(){
System.out.println("--before--");
}

@After("execution( com.spring.service.impl.UserServiceImpl. (..))")
public void after(){
System.out.println("--after--");
}

@Around("execution( com.spring.service.impl.UserServiceImpl. (..))")
public Object Around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("--Around before--");
Object result = pjp.proceed();
System.out.println("--Around after--");
return result;
}
}
<?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
http://www.springframework.org/schema/aop/spring-aop.xsd";>


<bean id="service" class="com.spring.service.impl.UserServiceImpl"/>
<bean id="log" class="com.spring.aop.Log"/>

<aop:aspectj-autoproxy />

</beans>

执行结果

--Around before--
--before--
add
--Around after--
--after--

--Around before--
--before--
delete
--Around after--
--after--

总结

公共业务:

日志,安全,权限,缓存,事务

分离思想

在不改变原有代码的情况下,增加额外的功能

            </div>
目录
相关文章
|
1月前
|
Java 程序员
Java编程中的异常处理:从基础到高级
在Java的世界中,异常处理是代码健壮性的守护神。本文将带你从异常的基本概念出发,逐步深入到高级用法,探索如何优雅地处理程序中的错误和异常情况。通过实际案例,我们将一起学习如何编写更可靠、更易于维护的Java代码。准备好了吗?让我们一起踏上这段旅程,解锁Java异常处理的秘密!
|
25天前
|
存储 缓存 Java
Java 并发编程——volatile 关键字解析
本文介绍了Java线程中的`volatile`关键字及其与`synchronized`锁的区别。`volatile`保证了变量的可见性和一定的有序性,但不能保证原子性。它通过内存屏障实现,避免指令重排序,确保线程间数据一致。相比`synchronized`,`volatile`性能更优,适用于简单状态标记和某些特定场景,如单例模式中的双重检查锁定。文中还解释了Java内存模型的基本概念,包括主内存、工作内存及并发编程中的原子性、可见性和有序性。
Java 并发编程——volatile 关键字解析
|
29天前
|
算法 Java 调度
java并发编程中Monitor里的waitSet和EntryList都是做什么的
在Java并发编程中,Monitor内部包含两个重要队列:等待集(Wait Set)和入口列表(Entry List)。Wait Set用于线程的条件等待和协作,线程调用`wait()`后进入此集合,通过`notify()`或`notifyAll()`唤醒。Entry List则管理锁的竞争,未能获取锁的线程在此排队,等待锁释放后重新竞争。理解两者区别有助于设计高效的多线程程序。 - **Wait Set**:线程调用`wait()`后进入,等待条件满足被唤醒,需重新竞争锁。 - **Entry List**:多个线程竞争锁时,未获锁的线程在此排队,等待锁释放后获取锁继续执行。
64 12
|
26天前
|
存储 安全 Java
Java多线程编程秘籍:各种方案一网打尽,不要错过!
Java 中实现多线程的方式主要有四种:继承 Thread 类、实现 Runnable 接口、实现 Callable 接口和使用线程池。每种方式各有优缺点,适用于不同的场景。继承 Thread 类最简单,实现 Runnable 接口更灵活,Callable 接口支持返回结果,线程池则便于管理和复用线程。实际应用中可根据需求选择合适的方式。此外,还介绍了多线程相关的常见面试问题及答案,涵盖线程概念、线程安全、线程池等知识点。
145 2
|
2月前
|
设计模式 Java 开发者
Java多线程编程的陷阱与解决方案####
本文深入探讨了Java多线程编程中常见的问题及其解决策略。通过分析竞态条件、死锁、活锁等典型场景,并结合代码示例和实用技巧,帮助开发者有效避免这些陷阱,提升并发程序的稳定性和性能。 ####
|
2月前
|
缓存 Java 开发者
Java多线程编程的陷阱与最佳实践####
本文深入探讨了Java多线程编程中常见的陷阱,如竞态条件、死锁和内存一致性错误,并提供了实用的避免策略。通过分析典型错误案例,本文旨在帮助开发者更好地理解和掌握多线程环境下的编程技巧,从而提升并发程序的稳定性和性能。 ####
|
1月前
|
安全 算法 Java
Java多线程编程中的陷阱与最佳实践####
本文探讨了Java多线程编程中常见的陷阱,并介绍了如何通过最佳实践来避免这些问题。我们将从基础概念入手,逐步深入到具体的代码示例,帮助开发者更好地理解和应用多线程技术。无论是初学者还是有经验的开发者,都能从中获得有价值的见解和建议。 ####
|
1月前
|
Java 调度
Java中的多线程编程与并发控制
本文深入探讨了Java编程语言中多线程编程的基础知识和并发控制机制。文章首先介绍了多线程的基本概念,包括线程的定义、生命周期以及在Java中创建和管理线程的方法。接着,详细讲解了Java提供的同步机制,如synchronized关键字、wait()和notify()方法等,以及如何通过这些机制实现线程间的协调与通信。最后,本文还讨论了一些常见的并发问题,例如死锁、竞态条件等,并提供了相应的解决策略。
63 3
|
1月前
|
开发框架 安全 Java
Java 反射机制:动态编程的强大利器
Java反射机制允许程序在运行时检查类、接口、字段和方法的信息,并能操作对象。它提供了一种动态编程的方式,使得代码更加灵活,能够适应未知的或变化的需求,是开发框架和库的重要工具。
63 4
|
2月前
|
安全 Java 开发者
Java中的多线程编程:从基础到实践
本文深入探讨了Java多线程编程的核心概念和实践技巧,旨在帮助读者理解多线程的工作原理,掌握线程的创建、管理和同步机制。通过具体示例和最佳实践,本文展示了如何在Java应用中有效地利用多线程技术,提高程序性能和响应速度。
77 1