joinpoint

joinpoint

 英

  • 网络连接点;接入点;连接点模型

例句

In the case of Spring AOP (all versions), the only joinpoint supported is the execution of a public method.

SpringAOP所有版本案例唯一支持连接公有方法执行

A pointcut, then, is a language construct that picks out a set of join points based on defined criteria.

那么Pointcut就是一种语言构造这种构造根据定义标准挑选joinpoint

Typical join points in AspectJ include method calls, access to class members, and the execution of exception handler blocks.

AspectJ典型joinpoint包括方法调用成员访问以及异常处理程序执行

After advice: Advice invoked after the joinpoint, regardless of the outcome.

Afteradvice连接之后调用通知无论结果什么

The second statement identifies the exact join point where the advice is executed and makes use of the AspectJ JoinPoint class.

第二语句指明通知执行确切连接并且应用AspectJJoinPoint

Advice is code that executes before, after, or around a join point.

Advicejoinpoint之前之后周围执行代码

A join point is a precise point of execution in a program, such as a method found in a class.

一个连接joinpoint程序执行一个精确执行比如一个方法

AfterThrowing advice (called ThrowsAdvice in Spring 1. x): Advice invoked if the method at the joinpoint throws a particular exception.

AfterThrowingadviceSpring1.x叫做Throws通知):如果连接方法抛出一个特殊异常调用通知

Around advice: Advice that can completely control whether to invoke the joinpoint.

Aroundadvice能够完全控制是否执行连接通知

Before advice: Advice invoked before the joinpoint.

Beforeadvice连接之前调用通知

Action taken at a particular joinpoint

特定注入执行操作

热门查询