Pointcut as a design abstraction.
作为设计抽象的切入点。
The pointcut must be a method call.
pointcut必须是一个方法调用。
The method name is used as the name of the pointcut.
方法名被用作切入点的名称。
Note that we can use keywords for aspect and pointcut.
请注意我们可以使用aspect和pointcut关键词。
Pointcut composition can also be done in Spring AOP XML.
切入点组合同样可以在SpringAOPXML中完成。
Access to the account is provided by a pointcut parameter.
对帐户的访问,由pointcut参数提供。
A pointcut is in essence a construct to capture join points.
一个切入点(pointcut)本质上一个用于捕捉连接点的结构。
Process-pointcut designators vary from the programming domain.
Process -pointcut指示者根据程序设计域的不同而不同。
This new pointcut primitive is already supported by Spring IDE 2.0.
SpringIDE 2.0已经能够支持这个新的pointcut基本元素。
Spring 2.1 introduces a new bean(
Spring 2.1引入了新的bean()pointcut基本元素。
A sub-aspect needs to provide this information, in the form of a pointcut.
一个子方面需要提供这种信息,也就是pointcut的形式。
The more mature the pointcut language, the easier it is to write robust pointcuts.
切入点语言越成熟, 越容易编写健壮的切入点。
The abstract pointcut, myClass, must be provided by any aspect that extends Trace.
抽象的切入点是myClass,它必须通过可以扩展Trace的方面来提供。
The staticinitalization pointcut is an artifact of the JDK141Tracing implementation.
staticinitalization pointcut是JDK141Tracing的实现工件。
As you might expect from the name, an around advice surrounds the pointcut execution.
从名字上可以看出,aroundadvice包围了pointcut执行。
The exact point of execution of the contract checking, through the targetPointcut pointcut
通过targetPointcutpointcut 指定进行契约检查的准确位置。
Later in the article, I rewrite the pointcut as I demonstrate some of the testing patterns.
在本文的后面,我将重写这个切点以展示一些测试模式。
The pointcut in the example uses a modifier and wildcard pattern to express "all public methods."
示例中的切入点使用了修饰符(modifier)和通配符(wildcard)模式来表达“所有公共方法”。
public abstract pointcut targetPointcut() expresses the pointcut where the advice must be applied.
public abstract pointcut targetPointcut()表示其中必须应用advice的pointcut。
Consider pointcut without metadata as the first choice and rely on programming elements themselves.
把没有元数据的pointcut看作是首选并依赖于编程元素本身。
You use a pointcut to specify join points of a program, and advice to specify the behavior to join.
可以使用切入点指定程序的连接点,用通知(advice)指定连接的行为。
The Listing 3 version of the code shows how I can access the actual method information from the pointcut.
清单3中的代码展示了如何访问pointcut中的实际方法信息。
The pointcut expression language is the same as in AspectJ's own syntax, and the semantics are identical.
这种切入点表达语言和AspectJ自己的语法一样,而且语义相同。
Fortunately, AspectWerkz provides easy ways of accessing information about the pointcut being intercepted.
幸运的是,AspectWerkz提供了访问中断的pointcut的信息的方便方法。
In a future version of AJDT, a "USES pointcut" relationship could be exposed to facilitate this connection.
在AJDT的未来版本中,可能会公开“使用切入点(usespointcut)”来帮助实现这个连接。
An advice is a method in an aspect class that's used as the "something different" to be done at a pointcut.
advice是aspect类中的一个方法,在pointcut处用它来做“某些不同的事件”。
With 2.6.0 we added refactoring support for the p-namespace and for renaming advice and pointcut definitions.
在2.6.0中,我们为p命名空间增加了重构支持,还增加了advice和pointcut定义的重命名支持。
The pointcut required in these situations can get unwieldy, as you can see for yourself in the following example.
在这种情况下,所需要的切入点可能会变得很难处理,从下面的例子中就可看到。
While declaring void limits the reach of the testCase() pointcut, it reduces complexity and increases protection.
虽然声明void限制了testCase()切入点的应用范围,但是这样降低了复杂性,增强了安全性。
You can also see that we are using bean(purchseItem) pointcut expression to qualify which bean we are intercepting.
你还可以看到我们使用了bean(purchseItem)pointcut表达限定我们正在拦截哪个bean。
应用推荐