此版本仍在开发中,尚不被认为是稳定的。对于最新的稳定版本,请使用 Spring Framework 6.2.10spring-doc.cadn.net.cn

作建议对象

无论您如何创建 AOP 代理,您都可以通过使用org.springframework.aop.framework.Advised接口。任何 AOP 代理都可以转换为此 接口,无论它实现了哪些其他接口。此接口包括 以下方法:spring-doc.cadn.net.cn

Advisor[] getAdvisors();

void addAdvice(Advice advice) throws AopConfigException;

void addAdvice(int pos, Advice advice) throws AopConfigException;

void addAdvisor(Advisor advisor) throws AopConfigException;

void addAdvisor(int pos, Advisor advisor) throws AopConfigException;

int indexOf(Advisor advisor);

boolean removeAdvisor(Advisor advisor) throws AopConfigException;

void removeAdvisor(int index) throws AopConfigException;

boolean replaceAdvisor(Advisor a, Advisor b) throws AopConfigException;

boolean isFrozen();
fun getAdvisors(): Array<Advisor>

@Throws(AopConfigException::class)
fun addAdvice(advice: Advice)

@Throws(AopConfigException::class)
fun addAdvice(pos: Int, advice: Advice)

@Throws(AopConfigException::class)
fun addAdvisor(advisor: Advisor)

@Throws(AopConfigException::class)
fun addAdvisor(pos: Int, advisor: Advisor)

fun indexOf(advisor: Advisor): Int

@Throws(AopConfigException::class)
fun removeAdvisor(advisor: Advisor): Boolean

@Throws(AopConfigException::class)
fun removeAdvisor(index: Int)

@Throws(AopConfigException::class)
fun replaceAdvisor(a: Advisor, b: Advisor): Boolean

fun isFrozen(): Boolean

getAdvisors()方法返回一个Advisor对于每个顾问、拦截器或 已添加到工厂的其他通知类型。如果您添加了Advisor这 此索引处返回的顾问是您添加的对象。如果您添加了 拦截器或其他建议类型,Spring 将其包装在一个顾问中,并带有 始终返回的切入点true.因此,如果您添加了MethodInterceptor、顾问 为此索引返回的是DefaultPointcutAdvisor返回您的MethodInterceptor以及匹配所有类和方法的切入点。spring-doc.cadn.net.cn

addAdvisor()方法可用于添加任何Advisor.通常,顾问持有 切入点和建议是通用的DefaultPointcutAdvisor,您可以将其与 任何建议或切入点(但不用于介绍)。spring-doc.cadn.net.cn

默认情况下,即使曾经是代理,也可以添加或删除顾问或拦截器 已被创建。唯一的限制是无法添加或删除 介绍顾问,因为工厂的现有代理不显示界面 改变。(您可以从工厂获取新的代理以避免此问题。spring-doc.cadn.net.cn

以下示例演示了将 AOP 代理转换为Advised接口和检查以及 纵其建议:spring-doc.cadn.net.cn

Advised advised = (Advised) myObject;
Advisor[] advisors = advised.getAdvisors();
int oldAdvisorCount = advisors.length;
System.out.println(oldAdvisorCount + " advisors");

// Add an advice like an interceptor without a pointcut
// Will match all proxied methods
// Can use for interceptors, before, after returning or throws advice
advised.addAdvice(new DebugInterceptor());

// Add selective advice using a pointcut
advised.addAdvisor(new DefaultPointcutAdvisor(mySpecialPointcut, myAdvice));

assertEquals("Added two advisors", oldAdvisorCount + 2, advised.getAdvisors().length);
val advised = myObject as Advised
val advisors = advised.advisors
val oldAdvisorCount = advisors.size
println("$oldAdvisorCount advisors")

// Add an advice like an interceptor without a pointcut
// Will match all proxied methods
// Can use for interceptors, before, after returning or throws advice
advised.addAdvice(DebugInterceptor())

// Add selective advice using a pointcut
advised.addAdvisor(DefaultPointcutAdvisor(mySpecialPointcut, myAdvice))

assertEquals("Added two advisors", oldAdvisorCount + 2, advised.advisors.size)
是否建议(没有双关语)修改建议是值得怀疑的 business 对象,尽管毫无疑问存在合法的用例。 但是,它在开发中非常有用(例如,在测试中)。我们有时 发现能够以拦截器或其他形式添加测试代码非常有用 建议,进入我们想要测试的方法调用。(例如,建议可以 进入为该方法创建的事务,也许可以运行 SQL 来检查 在将事务标记为回滚之前,数据库已正确更新。

根据您创建代理的方式,您通常可以将frozen旗。在那 case 中,则Advised isFrozen()方法返回true,以及任何修改的尝试 通过添加或删除的建议会导致AopConfigException.能力 在某些情况下,冻结建议对象的状态很有用(例如,将 防止调用代码删除安全拦截器)。spring-doc.cadn.net.cn