From b0e7f72a27ea1e7fcbed3a33de781fd94ba7be66 Mon Sep 17 00:00:00 2001 From: md42 Date: Fri, 6 Dec 2013 21:01:39 +0100 Subject: [PATCH] typo in pointcut expression --- src/asciidoc/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 58f7388e9d..a7c4bfecbc 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -12704,7 +12704,7 @@ this purpose. A typical such aspect would look as follows: * "service" package, and that implementation types are in sub-packages. * * 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.*.*(..))" * 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 * named your Spring service beans in a consistent fashion.) */ - @Pointcut("execution(* com.xyz.someapp.service.*.*(..))") + @Pointcut("execution(* com.xyz.someapp..service.*.*(..))") public void businessService() {} /** -- GitLab