typo in pointcut expression

This commit is contained in:
md42 2013-12-06 21:01:39 +01:00 committed by Stephane Nicoll
parent c1eb50ef48
commit b0e7f72a27
1 changed files with 2 additions and 2 deletions

View File

@ -12704,7 +12704,7 @@ this purpose. A typical such aspect would look as follows:
* "service" package, and that implementation types are in sub-packages. * "service" package, and that implementation types are in sub-packages.
* *
* If you group service interfaces by functional area (for example, * If you group service interfaces by functional area (for example,
* in packages com.xyz.someapp.abc.service and com.xyz.def.service) then * in packages com.xyz.someapp.abc.service and com.xyz.someapp.def.service) then
* the pointcut expression "execution(* com.xyz.someapp..service.*.*(..))" * the pointcut expression "execution(* com.xyz.someapp..service.*.*(..))"
* could be used instead. * could be used instead.
* *
@ -12712,7 +12712,7 @@ this purpose. A typical such aspect would look as follows:
* PCD, like so "bean(*Service)". (This assumes that you have * PCD, like so "bean(*Service)". (This assumes that you have
* named your Spring service beans in a consistent fashion.) * named your Spring service beans in a consistent fashion.)
*/ */
@Pointcut("execution(* com.xyz.someapp.service.*.*(..))") @Pointcut("execution(* com.xyz.someapp..service.*.*(..))")
public void businessService() {} public void businessService() {}
/** /**