spring package-info 源码

  • 2022-08-08
  • 浏览 (327)

spring package-info 代码

文件路径:/spring-aop/src/main/java/org/springframework/aop/package-info.java

/**
 * Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
 *
 * <p>Any AOP Alliance MethodInterceptor is usable in Spring.
 *
 * <br>Spring AOP also offers:
 * <ul>
 * <li>Introduction support
 * <li>A Pointcut abstraction, supporting "static" pointcuts
 * (class and method-based) and "dynamic" pointcuts (also considering method arguments).
 * There are currently no AOP Alliance interfaces for pointcuts.
 * <li>A full range of advice types, including around, before, after returning and throws advice.
 * <li>Extensibility allowing arbitrary custom advice types to
 * be plugged in without modifying the core framework.
 * </ul>
 *
 * <p>Spring AOP can be used programmatically or (preferably)
 * integrated with the Spring IoC container.
 */
@NonNullApi
@NonNullFields
package org.springframework.aop;

import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;

相关信息

spring 源码目录

相关文章

spring Advisor 源码

spring AfterAdvice 源码

spring AfterReturningAdvice 源码

spring AopInvocationException 源码

spring BeforeAdvice 源码

spring ClassFilter 源码

spring DynamicIntroductionAdvice 源码

spring IntroductionAdvisor 源码

spring IntroductionAwareMethodMatcher 源码

spring IntroductionInfo 源码

0  赞