Spring基础篇-快速面试笔记(速成版)

文章目录

  • 1. Spring概述
  • 2. 控制反转(IoC)
    • 2.1 Spring声明Bean对象的方式
    • 2.2 Spring的Bean容器:BeanFactory
    • 2.3 Spring的Bean生命周期
    • 2.4 Spring的Bean的注入方式
  • 3. Spring的事件监听器(Event Listener)
    • 3.1 Spring内置事件监听器
    • 3.2 自主发布事件与监听
  • 4. Spring的面向切面编程(AOP)
    • 4.1 AOP简介
    • 4.2 静态代理与动态代理
    • 4.3 使用Spring AOP
    • 4.4 Pointcut的声明
  • 参考资料

1. Spring概述

Spring的主要目的是为了简化Java EE的企业级应用开发

Spring框架主要提供了两个基础功能:

  • 控制反转(Ioc):也称为依赖注入(Dependency Injection, DI)
  • 面向切面编程(Aspect Oriented Programming, AOP)

2. 控制反转(IoC)

控制反转(Inversion of Control, IoC):将对象的控制权交由Spring管理,而不是自己管理。体验上就是:在需要用到对象(称为Bean对象)时(例如某个业务处理对象,连接池对象等),不需要自己去new,而是从Spring的容器中直接拿就行了。对于Spring如何初始化对象,可以由开发者指定,也可以使用Spring提供的默认初始化方式。

依赖注入(Dependency Injection):控制反转功能也可以称为依赖注入。即当我们要使用某个对象时,直接通过Spring注入即可,不需要显示的获取。体验上就是:在需要注入的对象变量上增加@Autowired注解

2.1 Spring声明Bean对象的方式

要进行依赖注入bean对象,首先要声明Bean,即告诉Spring如何初始化该Bean。

Spring声明Bean有如下几种方式:

  1. XML 配置方式:通过在 XML 配置文件中使用 <bean> 元素声明对象。(Spring Boot出现后,该方式基本淘汰)

    <bean id="myBean" class="com.example.MyBean"/>
    
  2. 基于注解的方式:使用注解来标记类,告诉 Spring 在运行时将其作为 Bean 进行管理。常用的注解包括 @Component@Service@Repository@Controller

    @Component
    public class MyBean { ... }
    
    • @Component:最通用的注解,用于标记任何类作为 Spring Bean,如工具类或者没有明确分类的类。
    • @Repository:通常用于标记数据访问层(DAO 层)的类。
    • @Service:通常用于标记业务逻辑层(Service 层)的类。
    • @Controller:通常用于标记控制器层的类(如 Spring MVC 中的控制器)。

    这些注解名字不同的原因:①(主要原因)用于语义区分;② Spring会进行一些特殊处理。例如:@Repository将底层的数据访问异常转换为 Spring 的 DataAccessException。

  3. JavaConfig 配置方式:通过 Java 类来配置 Spring Bean。可以使用 @Configuration 注解标记配置类,并在方法上使用 @Bean 注解声明 Bean。

    @Configuration
    public class AppConfig {@Beanpublic MyBean myBean() {return new MyBean();}// 可以配置多个Bean。通常将一组相关的Bean配置在一个Config类下
    }
    

    对于@Bean的配置方式,需要通过@ComponentScan注解来启用扫描,这样才能被Spring管理。例如:

    @ComponentScan("com.example")  // 通常加在启动类上
    

2.2 Spring的Bean容器:BeanFactory

当Spring将Bean初始化后之后,需要一个容器来存储这些Bean。这个容器就是BeanFactory

BeanFactory是一个接口,里面定义了几个重要的getBean(...)方法,让用户可以方便的通过名字、XXX.class等方式获取Bean对象。

在SpringBoot的Web程序中,使用的BeanFactory的实现类为AnnotationConfigServletWebServerApplicationContext。它的继承关系如下图:

在这里插入图片描述

从上到下,比较重要的类/接口如下:

  • BeanFactory:最基本的容器接口,提供了最基本的 IoC(Inverse of Control)功能。
  • ApplicationContext:BeanFactory 的子接口,扩展了 BeanFactory 的功能,提供了更完整的国际化、事件传播、资源访问、AOP 支持等功能。
  • WebApplicationContext:专门用于 Web 应用程序的 ApplicationContext 接口。在ApplicationContext的基础上,增加了一些针对 Web 开发的功能,例如 Servlet 上下文的生命周期管理、Servlet 属性的访问、Web 应用中 Servlet 和 Filter 的注册等。
  • ConfigurableWebApplicationContext: WebApplicationContext 的子接口,提供了一些额外的配置和定制能力。
  • ServletWebServerApplicationContext:用于 Web 应用程序的 ApplicationContext 的特定实现类,它与 Servlet 容器集成(例如 Tomcat),负责配置和启动 Servlet 容器,并提供了一些特定于 Servlet 容器的功能,例如设置上下文路径、配置 SSL、处理错误页面等
  • AnnotationConfigServletWebServerApplicationContext:ServletWebServerApplicationContext的子类,使用基于 Java 注解的配置来管理 Web 应用程序的 Bean,通过扫描指定的包(@ComponentScan注解)来查找和注册带有特定注解的 Bean 定义,然后将它们装配到容器中。

在非SpringBoot或非Web程序中,也会用到一些其他的BeanFactory的实现。例如:XmlBeanFactoryFileSystemXmlApplicationContextClassPathXmlApplicationContext

2.3 Spring的Bean生命周期

Spring的Bean从出生到死亡一共会经历以下三个主要阶段:

  1. 实例化(Instantiation):当容器启动时,根据配置文件或注解等方式,Spring会实例化Bean,也就是执行Bean的构造方法
  2. 依赖注入(Dependency Injection):完成实例化后,若该Bean依赖其他的Bean,会将其他的Bean注入进来,因为后续的初始化过程可能会用。
  3. 初始化(Initialization):执行用户定义的初始化方法。有如下方式:① 实现InitializingBean接口并实现其中的afterPropertiesSet()方法;② 在Bean的初始化方法上添加@PostConstruct注解;③ @Bean注解上指定初始化方法
  4. 使用(In Use):初始化结束后,Bean就会存储在Bean容器中,运行期间就可以获取并使用。
  5. 销毁(Destruction):销毁阶段是在Bean不再需要时执行的(通常为正常退出程序时执行)。Spring提供了两种方式来定义销毁方法:① 实现DisposableBean接口并实现其中的destroy()方法;② 在Bean的销毁方法上添加@PreDestroy注解。

示例1(@Component的Bean各个阶段使用注解):

@Component
public class MyBean1 {@Autowiredprivate RestTemplate restTemplate;public MyBean1() {System.out.println("MyBean1实例化!restTemplate:" + restTemplate);  // restTemplate为null}@PostConstruct  // post construct(在构造之后)public void init() {System.out.println("MyBean1初始化!restTemplate:" + restTemplate);  // restTemplate已经被注入}@PreDestroy  // pre destroy(在销毁之前)public void destroy() {System.out.println("MyBean1销毁");}}

输出:

// 启动SpringBoot程序
MyBean1实例化!restTemplate:null
MyBean1初始化!restTemplate:org.springframework.web.client.RestTemplate@5effc15d
// 关闭SpringBoot程序
MyBean1销毁

示例2(@Component的Bean各个阶段使用实现接口):

@Component
public class MyBean2 implements InitializingBean, DisposableBean {@Autowiredprivate RestTemplate restTemplate;public MyBean2() {System.out.println("MyBean2实例化!restTemplate:" + restTemplate);  // restTemplate为null}@Overridepublic void afterPropertiesSet() throws Exception {System.out.println("MyBean2初始化!restTemplate:" + restTemplate);  // restTemplate已经被注入}@Overridepublic void destroy() {System.out.println("MyBean2销毁");}
}

输出:

// 启动SpringBoot程序
MyBean2实例化!restTemplate:null
MyBean2初始化!restTemplate:org.springframework.web.client.RestTemplate@5effc15d
// 关闭SpringBoot程序
MyBean2销毁

示例3(@Bean注解):

class MyBean3 {@Autowiredpublic RestTemplate restTemplate;public MyBean3() {System.out.println("MyBean3实例化!restTemplate:" + restTemplate);  // restTemplate为null}private void init() {System.out.println("MyBean3初始化!restTemplate:" + restTemplate);  // restTemplate已经被注入}private void destroy() {System.out.println("MyBean3销毁");}
}@Configuration
public class MyBeanConfiguration {@Bean(initMethod="init", destroyMethod="destroy")public MyBean3 myBean() {return new MyBean3();}
}

输出:

// 启动SpringBoot程序
MyBean3实例化!restTemplate:null
MyBean3初始化!restTemplate:org.springframework.web.client.RestTemplate@5effc15d
// 关闭SpringBoot程序
MyBean3销毁

对于Bean的生命周期,可能大部分人在网上看到的是这张图:在这里插入图片描述
这张图其实就是把上面的几种方式揉到一起复杂化了。但开发者其实不用关注哪种方式谁先谁后,正常也不会一起用。

2.4 Spring的Bean的注入方式

当我们声明好Bean后,就可以在需要它们的地方进行注入了。Spring为我们提供了以下注入方式:

假设我们有一个配置类配置了如下Bean:

@Configuration
public class TestConfiguration {@Bean(name = "restTemplate1")  // 有两个RestTemplate的Bean,名字不同public RestTemplate restTemplate1() {return new RestTemplate();}@Bean(name = "restTemplate2")public RestTemplate restTemplate2() {return new RestTemplate();}@Bean // 有一个Random类的Beanpublic Random random() {return new Random();}
}
  1. 使用注解方式注入:通过在代码中使用注解来实现依赖注入,包括 @Autowired@Resource等注解。

    • @Autowired:Spring提供的注解,自动根据类型装配。若需要根据名称,则需要配合@Qualifier注解。
    • @Resource:Java EE提供的注解。可以通过参数来指定根据名称或类型进行注入。
    @Component
    public class MyBean1 {@Autowired  // 查找Random类型的Bean,必须唯一private Random random1;@Resource(type = Random.class)  // 根据类型注入private Random random2;// @Autowired  // 加入这个启动失败,因为有两个RestTemplate类型的Bean// private RestTemplate restTemplate;@Autowired@Qualifier("restTemplate1")  // 根据名称注入private RestTemplate restTemplate1;@Resource(name = "restTemplate2")  // 根据类型注入private RestTemplate restTemplate2;@PostConstructpublic void init() {System.out.println("random1:" + random1);System.out.println("random2:" + random2);System.out.println("restTemplate1:" + restTemplate1);System.out.println("restTemplate2:" + restTemplate2);}
    }
    
  2. 使用构造方法注入:直接将你需要注入的Bean配在构造方法上

    @Component
    public class MyBean1 {private Random random1;private Random random2;private RestTemplate restTemplate1;private RestTemplate restTemplate2;private MyBean1(Random random1,Random random2,@Qualifier("restTemplate1") RestTemplate restTemplate1,  // 使用@Qualifier指定要注入bean的名称RestTemplate restTemplate2  // 这里居然不报错,且能正常注入。我的版本是spring-beans5.3.9) {this.random1 = random1;this.random2 = random2;this.restTemplate1 = restTemplate1;this.restTemplate2 = restTemplate2;}@PostConstructpublic void init() {System.out.println("random1:" + random1);System.out.println("random2:" + random2);System.out.println("restTemplate1:" + restTemplate1);System.out.println("restTemplate2:" + restTemplate2);}
    }
    

    输出:

    random1:java.util.Random@738a1324
    random2:java.util.Random@738a1324  // 因为只有一个Random,所以两个是一个Bean
    restTemplate1:org.springframework.web.client.RestTemplate@65a86de0  // restTemplate1
    restTemplate2:org.springframework.web.client.RestTemplate@745e1fb7 // restTemplate2
    
  3. 使用Aware接口注入:Spring提供了一些XxxxxAware的接口,通过这些接口可以注入ApplicationContextBeanFactory等系统Bean。(不过也可以用@Autowired注入)

    @Component
    public class MyBean1 implements ApplicationContextAware, ResourceLoaderAware {private ApplicationContext applicationContext;private ResourceLoader resourceLoader;@Overridepublic void setApplicationContext(ApplicationContext applicationContext) throws BeansException {this.applicationContext = applicationContext;}@Overridepublic void setResourceLoader(ResourceLoader resourceLoader) {this.resourceLoader = resourceLoader;}@Autowired  // 也可以使用@Autowired注入private ApplicationContext applicationContext2;@Autowiredprivate ResourceLoader resourceLoader2;@PostConstructpublic void init() {System.out.println("applicationContext: " + applicationContext);System.out.println("resourceLoader: " + resourceLoader);System.out.println("applicationContext2: " + applicationContext2);System.out.println("resourceLoader2: " + resourceLoader2);}
    }
    

    输出:

    // 这里输出的四个对象是同一个,因为在SpringBoot的wen程序中,这ResourceLoader和Application就是同一个实现,即AnnotationConfigServletWebServerApplicationContext
    applicationContext: ... AnnotationConfigServletWebServerApplicationContext@1dc76fa1 ...
    resourceLoader: ... AnnotationConfigServletWebServerApplicationContext@1dc76fa1 ...
    applicationContext2: ... AnnotationConfigServletWebServerApplicationContext@1dc76fa1 ...
    resourceLoader2: ... AnnotationConfigServletWebServerApplicationContext@1dc76fa1 ...
    

3. Spring的事件监听器(Event Listener)

Spring框架为用户提供了一套基于观察者模式的事件发布与监听机制。

事件监听器包含三个部分:

  • 事件(Event):对应观察者模式中的消息。事件发布者发布事件,事件监听者来监听消息。
  • 事件发布者(Event Publisher):对应观察者模式中的主体(被观察者)。通常,Spring会在自己的上下文状态变更的时候发布事件。用户也可以发布自己的事件。
  • 事件监听者(Event Listener):对应观察者模式中的观察者。一般由用户实现,来监听Spring发布的上下文变更事件。

用户想要监听事件,只需要写一个类,继承ApplicationListener<E extends ApplicationEvent>类,其中泛型为要监听的实践。例如:

@Component
public class MyListener implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {System.out.println("onApplicationEvent:" + event.getSource());}
}

3.1 Spring内置事件监听器

Spring为用户内置许多事件监听器,当Spring的上下文等的状态发生变化时,Spring会发布事件。如果用户注册了相应的监听器,就可以进行相应的处理。

你也可以把它理解成Spring生命周期中的钩子函数。

Spring提供的常用内置监听器事件有(ApplicationListener类的):

  • ContextRefreshedEvent监听器:当ApplicationContext被初始化或刷新时触发。这个事件通常用于执行应用程序初始化或者加载缓存等操作。
  • ContextStartedEvent监听器:当ApplicationContext启动时触发。可以在这个事件中执行一些需要在应用程序启动时完成的任务。
  • ContextStoppedEvent监听器:当ApplicationContext停止时触发。可以在这个事件中执行一些清理工作或者资源释放操作。
  • ContextClosedEvent监听器:当ApplicationContext关闭时触发。这个事件通常用于执行一些清理工作或者释放资源的操作。
  • RequestHandledEvent监听器:在Spring MVC中,每次处理HTTP请求完成时都会触发该事件。这个事件通常用于收集请求处理的统计信息或者日志记录。

此外,在SpringBoot等中,还有一些其他的监听器类,例如:

  • ServletContextListener:监听ServletContext的生命周期事件。
  • HttpSessionListener:监听HTTP会话的生命周期
  • ServletRequestListener:监听HTTP请求的生命周期事件,如请求创建和销毁事件。
  • SpringApplicationRunListener:监听Spring Boot应用程序的的生命周期事件。

示例1(ApplicationListener事件):

@Component
public class MyListener1 implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {System.out.println("ContextRefreshedEvent");}
}
@Component
public class MyListener2 implements ApplicationListener<ContextClosedEvent> {@Overridepublic void onApplicationEvent(ContextClosedEvent event) {System.out.println("ContextClosedEvent");}
}
@Component
public class MyListener3 implements ApplicationListener<ContextStartedEvent> {@Overridepublic void onApplicationEvent(ContextStartedEvent event) {System.out.println("ContextStartedEvent");}
}

输出:

ContextRefreshedEvent
...
ContextRefreshedEvent
// 这里关闭SpringBoot程序
ContextClosedEvent

不同的Spring容器监听的事件不同。例如,在我的SpringBoot程序中,ContextStartedEventContextStoppedEvent是不会被触发的。需要使用ApplicationStartedEventApplicationStoppedEvent事件

示例2(SpringApplicationRunListener):

public class MySpringBootListener implements SpringApplicationRunListener {// 构造函数必须这么写public MySpringBootListener(SpringApplication application, String[] args) {System.out.println("SpringApplicationRunListener constructor");}@Overridepublic void starting(ConfigurableBootstrapContext bootstrapContext) {System.out.println("SpringApplicationRunListener starting:" + bootstrapContext);}@Overridepublic void environmentPrepared(ConfigurableBootstrapContext bootstrapContext, ConfigurableEnvironment environment) {System.out.println("SpringApplicationRunListener environmentPrepared:" + bootstrapContext);}@Overridepublic void contextPrepared(ConfigurableApplicationContext context) {System.out.println("SpringApplicationRunListener contextPrepared:" + context);}@Overridepublic void contextLoaded(ConfigurableApplicationContext context) {System.out.println("SpringApplicationRunListener contextLoaded:" + context);}@Overridepublic void started(ConfigurableApplicationContext context) {System.out.println("SpringApplicationRunListener started:" + context);}@Overridepublic void running(ConfigurableApplicationContext context) {System.out.println("SpringApplicationRunListener running:" + context);}@Overridepublic void failed(ConfigurableApplicationContext context, Throwable exception) {System.out.println("SpringApplicationRunListener failed:" + context);}
}

src/resource/META-INF/spring.factories文件中增加一条配置:

# 写对应路径
org.springframework.boot.SpringApplicationRunListener=com.example.MySpringBootListener

输出:

SpringApplicationRunListener constructor
SpringApplicationRunListener starting:org.springframework.boot.DefaultBootstrapContext@2a898881
SpringApplicationRunListener environmentPrepared:org.springframework.boot.DefaultBootstrapContext@2a898881
SpringApplicationRunListener contextPrepared:org.springframework.context.annotation.AnnotationConfigApplicationContext@585811a4
SpringApplicationRunListener contextLoaded:org.springframework.context.annotation.AnnotationConfigApplicationContext@585811a4
SpringApplicationRunListener started:org.springframework.context.annotation.AnnotationConfigApplicationContext@585811a4
SpringApplicationRunListener running:org.springframework.context.annotation.AnnotationConfigApplicationContext@585811a4

3.2 自主发布事件与监听

除了使用内置的监听器外,我们也可以自己发布事件,然后监听自己的事件。

自己发布事件需要做如下三件事:

  1. 定义事件类:需要继承ApplicationEvent
  2. 在需要的地方发布事件:通过ApplicationEventPublisher.publishEvent(...)方法可以发布事件
  3. 定义监听器监听事件:定义监听类,实现ApplicationListener<你的事件类>

示例:

  1. 定义事件类:

    public class CustomEvent extends ApplicationEvent {public String anyArg;public CustomEvent(Object source, String anyArg) {super(source);this.anyArg = anyArg;}
    }
    
  2. 定义监听器:

    @Component
    public class CustomEventListener implements ApplicationListener<CustomEvent> {@Overridepublic void onApplicationEvent(CustomEvent event) {System.out.println("CustomEvent:" + event.anyArg);}
    }
    
  3. 在合适的地方发布事件。这里我使用Controller接口进行测试:

    @RestController
    @RequestMapping("test")
    public class TestController {@Autowiredprivate ApplicationEventPublisher eventPublisher;@GetMapping("/eventTest")public void eventTest() {eventPublisher.publishEvent(new CustomEvent(this, "myEvent"));}
    }
    

当我调用eventTest接口后,控制台就会执行监听器方法,输出:

CustomEvent:myEvent

4. Spring的面向切面编程(AOP)

4.1 AOP简介

面向对象处理的痛点:在面向对象编程中,我们会有许多业务处理模块(例如:创建订单、查询订单、派发工单等)。对于这些模块,需要一些公共的处理逻辑(例如:日志记录、权限校验等),如果为每一个方法都在前后增加额外的代码进行这些逻辑的处理,对业务系统的侵入性太高了,会造成代码的严重耦合。

面向切面编程(Aspect-Oriented Programming,AOP)可以解决上述痛点,其主要思想是通过将横切关注点从业务逻辑中分离出来,然后在需要的时候将其插入到应用程序的特定点上,而不是将其分散在整个应用程序代码中。这样做可以使得应用程序的核心逻辑更加清晰,同时也提高了代码的可维护性和可重用性。

AOP的实现其实就是代理模式,通过一个代理类来调用业务逻辑的方法,从而在其前后增加逻辑处理。

如图所示:

在这里插入图片描述

注意,代理模式会实打实的生成一个代理类。例如,我们有一个XxxxService.class类,若使用了AOP,就会生成一个XxxxService$Proxy.class类。而在调用时,你实际调用的是代理类。

4.2 静态代理与动态代理

Java中要实现AOP(或者说代理模式),通常有两种方式,即静态代理动态代理

  • 静态代理:在编译期就已经确定下来代理类和代理方式。代理类可以是用户自己编写的,也可以使用框架(例如AspectJ)在编译期生成的。
    • 优点:性能高。编译期生成代理类,JVM直接加载就能用。
    • 缺点:不够灵活。无法在运行期更改切入点。
  • 动态代理(Spring AOP采用)利用反射和动态字节码技术(CGLIB库),在运行期动态构建字节码的class文件,以此来生成代理类
    • 优点:灵活。可以运行期随时调整代理类,切入点等。
    • 缺点:性能差(其实还好)。由于是动态生成class类,相比静态代理JVM直接载入类,性能要差一下。不过Spring会在启动时将代理类都生成好,运行时就直接用,所以还好。这也是为什么Spring项目启动慢的原因之一。

4.3 使用Spring AOP

在Spring中使用AOP只需要做以下三点即可:

  1. 定义切面类:新建一个类,作为切面类,用于处理一些事务(例如:日志打印)。需要在类上增加@Component@Aspect注解。
  2. 定义切点(Pointcut):定义该切面需要给“哪些方法”前后增加逻辑。需要使用@Pointcut注解来声明。
  3. 定义通知(Advice):就是定义你要增加的前后逻辑的方法。需要使用@Before@After@Around注解来标注通知方式。

示例:

import org.aspectj.lang.JoinPoint;
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;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;@Aspect  // 告诉Spring这个类是切面类
@Component  // 告诉Spring这个类要被你管理起来
public class LogAspect {// 定义切入点,即告诉Spring哪些方法要增加切面。// 切点定义支持不同的方式,详见:https://docs.spring.io/spring-framework/reference/core/aop/ataspectj/pointcuts.html// 也可以不定义Pointcut,而是直接写到@Before等注解上@Pointcut("execution(* com.*.MyService.*(..))")public void logPointcut() {}// 前置通知。在方法执行前被调用@Before("logPointcut()")  // 指定Pointcutpublic void beforeAdviceLog(JoinPoint joinPoint) {System.out.println("beforeAdviceLog");}// 后置通知。在方法执行后被调用@After("logPointcut()")public void afterAdviceLog(JoinPoint joinPoint) {System.out.println("afterAdviceLog");}// 环绕通知。自主决定在哪执行方法。@Around("logPointcut()")public Object aroundAdviceLog(ProceedingJoinPoint joinPoint) throws Throwable {System.out.println("Around beforeAdviceLog");Object result = null;try {result = joinPoint.proceed();  // 执行业务方法,并保存返回值} catch (Throwable throwable) {// 切点方法报错的处理。一般会处理后重新抛出去System.out.println("Around Exception");throw throwable;}System.out.println("Around afterAdviceLog");return result;  // 返回方法执行的返回值}}

业务类如下:

@Service
public class MyService {public void doSomething() {System.out.println("do something...");}}

当执行业务类的doSomething后的输出:

Around beforeAdviceLog
beforeAdviceLog
do something...
afterAdviceLog
Around afterAdviceLog

通常只需要使用Around就行了

4.4 Pointcut的声明

Pointcut提供了不同的声明方式(称为表达式),几乎覆盖了人们的应用场景。

主要有以下几种(官方链接):

  • execution:按方法签名进行模糊匹配。表达式为:execution(modifiers-pattern? return-type-pattern declaring-type-pattern? method-name-pattern(param-pattern) throws-pattern?)
    • 样例1:execution(public * com.example.service.*.*(..))。匹配com.example.service包下的所有public方法。
    • 样例2:execution(* com.example.service.UserService.*(..))。匹配UserService类的所有方法
    • 样例3:execution(* com.example.service.*.*(java.lang.String, int))。根据方法参数匹配service包下所有匹配该参数的方法。
    • 样例4:execution(* com.example.service.*.*() throws java.io.IOException)。匹配service包下,所有抛出IOException异常的方法。
    • 样例5:execution(public static * com.example.service.*.*(..))。匹配service包下的所有public的静态方法。
  • within:按类进行匹配。表达式为:within(type-pattern)。粗粒度相比execution较粗,建议使用execution。
  • annotation:按注解进行匹配。表达式为:@annotation(annotation-type)
    • 样例1:@annotation(org.springframework.transaction.annotation.Transactional)。匹配加了注解@Transactional注解的方法。
  • bean:按bean名称,匹配该bean下的所有方法。
    • 样例1:bean(accountService*)。匹配bean名称以accountService类下的所有方法。若我们有一个AccountServiceImpl,那么该类下面的所有方法都会被切面。

此外,Pointcut可以使用&&||!表达式。

示例1:

@Pointcut("execution(* com.example.service.*.*(..)) && within(com.example.controller.*)")
@Pointcut("execution(* com.example.service.*.*(..)) || execution(* com.example.dao.*.*(..))")
@Pointcut("execution(* com.example.service.*.*(..)) && !execution(* com.example.service.internal.*.*(..))")





参考资料

  • Spring解密(王福强 著)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/822342.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

自学Java的第二十四次笔记

一,方法重载 1.基本介绍 java 中允许同一个类中&#xff0c;多个同名方法的存在&#xff0c;但要求 形参列表不一致&#xff01; 比如&#xff1a; System.out.println(); out 是 PrintStream 类型 2.重载的好处 1) 减轻了起名的麻烦 2) 减轻了记名的麻烦 3.快速入门案…

认识海康摄像头的编码信息以及使用等

认识海康摄像头的编码信息以及使用等 主要是来源一下文章&#xff1a; 海康摄像头、NVR命名规则-弱电新人学习&#xff01; - 知乎 大体是分了三类&#xff0c;当然海康的产品实在是有点多&#xff0c;没找见官方权威的解答&#xff0c;参考着先看看。 网络摄像机、网络球机…

浅谈Java JVM

Java虚拟机&#xff08;Java Virtual Machine&#xff0c;简称JVM&#xff09;是Java语言的核心组成部分&#xff0c;它是一个抽象的计算机&#xff0c;负责执行Java字节码指令。JVM是Java平台无关性的基石&#xff0c;它为Java代码提供了一个标准的运行环境&#xff0c;使Java…

golang-基础语法

make 和 new 的区别 make 和 new 都是用来分配内存 make 只能对 slice map channel 进行初始化结构体实例。new 可以对任意类型进行初始化make 用于分配数据对象的具体实例&#xff0c;new 用于分配数据类型的默认值&#xff0c;并返回该数据的指针。 new 出来的 slice 、ma…

html5测试题整理--针对标签的概念性,我们究竟还要学习哪些软件测试知识

先自我介绍一下&#xff0c;小编浙江大学毕业&#xff0c;去过华为、字节跳动等大厂&#xff0c;目前阿里P7 深知大多数程序员&#xff0c;想要提升技能&#xff0c;往往是自己摸索成长&#xff0c;但自己不成体系的自学效果低效又漫长&#xff0c;而且极易碰到天花板技术停滞…

Ubuntu20.04版本命令行设置挂载磁盘,并设置开机自动挂载

最近部署应用 系统是Ubuntu20.4版本的Linux系统&#xff0c;加了数据盘&#xff0c;需要格式化后挂载&#xff0c;记录下&#xff1a; Linux 数据盘挂载(采用 parted 分区工具)-格式化为 ext4 1. 初始化 Linux 数据盘 挂载数据盘后或者随实例创建时一并创建的数据盘&#xff…

使用SpringBoot3+Vue3开发公寓管理系统

项目介绍 公寓管理系统可以帮助公寓管理员更方便的进行管理房屋。功能包括系统管理、房间管理、租户管理、收租管理、房间家具管理、家具管理、维修管理、维修师傅管理、退房管理。 功能介绍 系统管理 用户管理 对系统管理员进行管理&#xff0c;新增管理员&#xff0c;修改…

碳课堂|碳关税是什么?企业如何从容应对?

2023年10月1日&#xff0c;欧盟碳边境调节机制&#xff08;CBAM&#xff09;法规&#xff0c;即全球首个“碳关税”开始实施。据世界银行研究报告称&#xff0c;如果“碳关税”全面实施&#xff0c;在国际市场上&#xff0c;中国制造可能将面临平均26%的关税&#xff0c;出口量…

Android JetPack Compose+Room----实现搜索记录功能

文章目录 需求概述功能展示实现搜索功能使用的技术1.Android Jetpack room2.Android JetPack Compose 代码实现编写搜索界面接入Room实现搜索功能的管理引入依赖定义包结构定义操作表的Dao类定义数据库的基础配置定义数据库的Dao管理类使用数据库升级 源码地址 需求概述 搜索功…

台灯目前口碑最好的护眼灯有哪些?分享多款高口碑护眼灯

根据数据表明中国近视患者人数已达到7亿&#xff0c;关于视力问题&#xff0c;而儿童及中小学生居多&#xff0c;关于视力问题&#xff0c;很多人都归咎于幼时学习时的用眼时间过长&#xff0c;但这只是其中的一部分&#xff0c;不合适的光源环境影响也是非常大的&#xff0c;尤…

006Node.js cnpm的安装

百度搜索 cnpm,进入npmmirror 镜像站https://npmmirror.com/ cmd窗口输入 npm install -g cnpm --registryhttps://registry.npmmirror.com

Fluke ADPT连接器(隔离版)----发布2

代替手工记录、记录后在整理的麻烦&#xff0c;轻点鼠标&#xff08;单次采集、自动时间间隔采集自由选择&#xff09;即可完成&#xff0c;测试数据导出图片、导出数据到EXCEL文件随意选择&#xff1b; 所需设备&#xff1a; 1、Fluke ADPT连接器&#xff1b;内附链接 ● …

基于小程序实现的餐饮外卖系统

作者主页&#xff1a;Java码库 主营内容&#xff1a;SpringBoot、Vue、SSM、HLMT、Jsp、PHP、Nodejs、Python、爬虫、数据可视化、小程序、安卓app等设计与开发。 收藏点赞不迷路 关注作者有好处 文末获取源码 技术选型 【后端】&#xff1a;Java 【框架】&#xff1a;spring…

闲不住,手写一个数据库文档生成工具

shigen坚持更新文章的博客写手&#xff0c;擅长Java、python、vue、shell等编程语言和各种应用程序、脚本的开发。记录成长&#xff0c;分享认知&#xff0c;留住感动。 个人IP&#xff1a;shigen 逛博客的时候&#xff0c;发现了一个很有意思的文章&#xff1a;数据库表结构导…

xxl-job使用自动注册节点,ip不对,如何解决????

很明显这时我们本机的ip和我们xxl-job自动注册的ip是不一致的&#xff0c;此时该如何处理呢&#xff1f;&#xff1f;&#xff1f;&#xff1f; 方法一&#xff1a;在配置文件中&#xff0c;将我们的ip固定写好。 ### xxl-job executor server-info xxl.job.executor.ip写你的…

解决EasyPoi导入Excel获取不到第一列的问题

文章目录 1. 复现错误2. 分析错误2.1 导入的代码2.2 DictExcel实体类2.2 表头和标题3. 解决问题1. 复现错误 使用EasyPoi导入数据时,Excel表格如下图: 但在导入时,出现如下错误: name为英文名称,在第一列,Excel表格有值,但导入的代码中为null,就很奇怪? 2. 分析错误 …

线上频繁fullgc问题-SpringActuator的坑

整体复盘 一个不算普通的周五中午&#xff0c;同事收到了大量了cpu异常的报警。根据报警表现和通过arthas查看&#xff0c;很明显的问题就是内存不足&#xff0c;疯狂无效gc。而且结合arthas和gc日志查看&#xff0c;老年代打满了&#xff0c;gc不了一点。既然问题是内存问题&…

翱途O2OA新手上路-服务器下载及私有云部署

本篇主要简要描述从官网下载服务器&#xff0c;进行部署&#xff0c;启动的过程&#xff0c;并且描述在部署过程中常见的问题与报错以及云服务器安全策略配置和O2OA服务器端口修改的方式。 O2OA部署的服务器要求不高&#xff0c;一般使用4C8G以上的服务器均可正常运行。 一、检…

Spark_SparkSql写入Oracle_Undefined function.....将长字符串写入Oracle中方法..

在使用Spark编写代码将读库处理然后写入Oracle中遇到了诸多小bug,很磨人&#xff0c;好在解决了。shit!! 实测1&#xff1a;TO_CLOB(a3) 代码样例 --这是一个sparksql写入hive的一个小逻辑&#xff0c;我脱敏了噻 SELECT a1, a2, TO_CLOB(a3) AS clob_data, TO_DATE(a4) AS …

【C语言】每日一题,快速提升(4)!

&#x1f525;博客主页&#x1f525;&#xff1a;【 坊钰_CSDN博客 】 欢迎各位点赞&#x1f44d;评论✍收藏⭐ 题目&#xff1a;实现计算机程序 解答&#xff1a; 该程序运用函数指针数组&#xff0c;具体请看代码 代码&#xff1a; #include <stdio.h> int add(int a…