spring aop 小结

说到spring框架,大家都不会陌生,但是说到aop,可能有很多人只是听说过这个名词,但是对什么是aop以及怎么使用aop存在很多疑惑,正好最近在学spring的aop思想,现做如下总结:

一、什么是aop

大家可能都听说过oop,即面向对象的编程事项,与传统的面向过程的编程方法不同的是,oop思想讲究将服务(也就是函数方法)和数据(成员变量)封装成对象,由对象来调用方法,从而实现功能。因此,我们需要编写很多的类来实现我们需要的功能。但是,这种方式会导致类过多,而一些通用的方法虽然可以通过重构手法可以提取出来,但是还是有一些不足,那就是不能够自动化。我们希望能够在自动的增强某个函数的功能,不需要在每次调用的地方写任何代码,只需要写一次就OK。在这样的需求下,aop思想诞生了。aop---自动增强函数方法的思想,面向切面的编程方法。

下面一张图可以让你更加了解什么是aop思想:


spring aop 小结_第1张图片

也就是说如果有多个Service,aop就是研究怎么将安全,事务,其他这几个模块加入到service中去。下面我就用在java和spring环境下做实验。

二、java、spring环境下的aop

spring中自己对aop有一套实现,底层用的是jdk的动态代理和cglib代理,但是spring发现Aspectj对aop思想的实现更加方便我们开发,所以,spring运用拿来主义,将Aspectj中的aop实现整合到spring框架中了,所以本篇只讨论Aspectj中的aop实现,工作中一般也只用到Aspectj的aop实现。

首先我们搭建一下spring的环境:maven pom.xml如下:


  4.0.0
  AspectjDemo
  cn.ljtnono
  0.0.1-SNAPSHOT
  AspectDemo
  
    
    
        org.springframework
        spring-aop
        4.2.4.RELEASE
    
    
        org.springframework
        spring-aspects
        4.2.4.RELEASE
    
    
        org.springframework
        spring-beans
        4.2.4.RELEASE
    
    
        org.springframework
        spring-context
        4.2.4.RELEASE
    
    
        org.springframework
        spring-context-support
        5.0.8.RELEASE
    
    
        org.springframework
        spring-core
        4.2.4.RELEASE
    
    
        org.springframework
        spring-expression
        4.2.4.RELEASE
    
    
        org.slf4j
        slf4j-log4j12
        1.7.2
    
    
        log4j
        log4j
        1.2.12
    
    
        junit
        junit
        4.12
    
    
        org.springframework
        spring-test
        4.2.4.RELEASE
    
    
    
    
        cglib
        cglib
        3.2.8
    
    
  
  
    
      
        maven-compiler-plugin
        
          1.8
          1.8
        
      
    
  


项目结构图如下:


spring aop 小结_第2张图片

这里先创建一个切面t类,这是一个普通的pojo类。(不知道什么是切面?点击这里)

package cn.ljtnono.aop;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;

//@Aspect
@Component("Aspect1")
public class Aspect1 {
    
    //@Before("execution( * *..SomeService*.firstService(..))")
    public void myBefore() {
        System.out.println("这是一个前置通知");
    }
}

创建一个方法,一个前置通知。编写要增强的类的接口以及实现类

package cn.ljtnono.service;

import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;

 
public interface SomeService {
    
    
    void firstService();
    
    void secondService();
    
    void thiredService();
}

package cn.ljtnono.service;

import org.springframework.stereotype.Service;

@Service(value="SomeService")
public class SomeServiceImpl  {

    
    public void firstService() {
        // TODO Auto-generated method stub
        System.out.println("======执行了firstService方法");
    }

    
    public void secondService() {
        // TODO Auto-generated method stub
        System.out.println("======执行了secondService方法");

    }

    
    public void thiredService() {
        // TODO Auto-generated method stub

        System.out.println("======执行了thiredService方法");
    }
    
    

}

在spring配置文件中配置:



    
    
    
    
    
        
        
            
        
    
    

aop:config中的配置:首先要配置一个切入点,然后配置切面的实现。这里应该容易理解。这其中需要aspect类和目标对象被容器识别,也就是必须交给spring管理这两个对象。其中execution表达式详解见我的另一篇博文。

现在测试:

package cn.ljtnono.test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import cn.ljtnono.service.SomeService;
import cn.ljtnono.service.SomeServiceImpl;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContext.xml"})
public class Aspect1Test {
    
    
    
    
    @Test
    public void testBefore() {
        
        ApplicationContext ac = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
        SomeServiceImpl service = (SomeServiceImpl) ac.getBean("SomeService");
        service.firstService();
    }
}

spring aop 小结_第3张图片

至此,一个简单的aop demo完成了,有不懂的可以查看以下资料:

AOP execution表达式详解:https://www.jianshu.com/u/0eac251981be

你可能感兴趣的:(spring aop 小结)