代理模式就是SpringAOP的底层,它分为静态代理和动态代理
对上图的解释:
代码实现:
//租房
public interface Rent {
public void rent();
}
//房东
public class Host implements Rent {
public void rent() {
System.out.println("房东要出租房子!");
}
}
public class Proxy implements Rent {
private Host host;
public Proxy() {
}
public Proxy(Host host) {
this.host = host;
}
public void rent() {
seeHouse();//看房
host.rent();//租房
hetong();//签合同
}
//看房
public void seeHouse(){
System.out.println("中介带你看房");
}
//签合同
public void hetong(){
System.out.println("签租赁合同");
}
}
public class Client {
public static void main(String[] args) {
//房东要租房子
Host host = new Host();
//中介帮房东租房子和干所有和租房有关的事
Proxy proxy = new Proxy(host);
//你不用面对房东,直接找中介租房即可!
proxy.rent();
}
}
一个真实角色就会产生一个代理角色;代码量会翻倍开发效率会变低
动态代理和静态代理角色一样,只不过它是动态生成的
动态代理分为三大类 :
需要了解两个类 :Proxy:代理 ,InvocationHandler:调用处理程序
public interface Rent {
public void rent();
}
public class Host implements Rent {
public void rent() {
System.out.println("租房");
}
}
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxyInvocationHandler implements InvocationHandler {
//被代理的接口
private Rent rent;
public void setRent(Rent rent) {
this.rent = rent;
}
//生成得到代理类
public Object getProxy(){
return Proxy.newProxyInstance(this.getClass().getClassLoader(),rent.getClass().getInterfaces(),this);
}
//处理代理实例,并返回结果
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
//动态代理的本质就是使用反射机制实现
Object invoke = method.invoke(rent, args);
return invoke;
}
}
public class Client {
public static void main(String[] args) {
//真实角色
Host host = new Host();
ProxyInvocationHandler handler = new ProxyInvocationHandler();
//通过调用程序处理角色来处理我们要调用的接口对象
handler.setRent(host);
//生成代理对象
Rent proxy = (Rent) handler.getProxy();
proxy.rent();
}
}
面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。
AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。
利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
提供声明式事务;允许用户自定义切面
Aop可以在不改变原有代码的情况下 , 去增加新的功能
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:
使用AOP织入,需要导入的依赖
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.4version>
dependency>
建立service包并在包下建立Userservice接口和它的实现类UserserviceImpl
接口Userservice
public interface Userservice {
public void add();
public void delete();
public void update();
public void select();
}
实现类UserserviceImpl
public class UserserviceImpl implements Userservice {
public void add() {
System.out.println("增加用户");
}
public void delete() {
System.out.println("删除用户");
}
public void update() {
System.out.println("更改用户");
}
public void select() {
System.out.println("查询用户");
}
}
建立log包并在包下建立Log类,前置日志
public class Log implements MethodBeforeAdvice {
//method:要执行的目标对象的方法
//args:参数
//target:目标对象
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
在log包下建立AfterLog 类,后置日志
public class AfterLog implements AfterReturningAdvice {
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了"+method.getName()+"方法,返回结果为"+returnValue);
}
}
在resources包下建立配置文件applicationContext.xml
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="userService" class="com.yl.service.UserserviceImpl" />
<bean id="log" class="com.yl.log.Log" />
<bean id="afterLog" class="com.yl.log.AfterLog" />
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* com.yl.service.UserserviceImpl.*(..))" />
<aop:advisor advice-ref="log" pointcut-ref="pointcut" />
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut" />
aop:config>
beans>
public class Ceshi {
@Test
public void test1(){
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
Userservice userService = (Userservice) context.getBean("userService");
userService.delete();
}
}
在diy包下建立DiyPointCut类
public class DiyPointCut {
public void before(){
System.out.println("---------执行前---------");
}
public void after(){
System.out.println("---------执行后---------");
}
}
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="userService" class="com.yl.service.UserserviceImpl" />
<bean id="diy" class="com.yl.diy.DiyPointCut" />
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="pointcut" expression="execution(* com.yl.service.UserserviceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="pointcut" />
<aop:after method="after" pointcut-ref="pointcut" />
aop:aspect>
aop:config>
beans>
建立AnnotationPointCut类
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
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 AnnotationPointCut {
@After("execution(* com.yl.service.UserserviceImpl.*(..))")
public void after(){
System.out.println("=====执行后=====");
}
@Before("execution(* com.yl.service.UserserviceImpl.*(..))")
public void before(){
System.out.println("=====执行前=====");
}
@Around("execution(* com.yl.service.UserserviceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("=====环绕前=====");
Object proceed = jp.proceed();
Signature signature = jp.getSignature();
System.out.println(signature);
System.out.println("=====环绕后=====");
System.out.println(proceed);
}
}
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="userService" class="com.yl.service.UserserviceImpl" />
<bean id="annotationPointCut" class="com.yl.diy.AnnotationPointCut" />
<aop:aspectj-autoproxy />
beans>