唐突にgoogle guiceでなんなのですが。 google guiceのAOPというと、私の勝手なイメージですが、 http://docs.google.com/View?docid=dd2fhx4z_5df5hw8 上記のユーザーズガイドの「Intercepting Methods」の項にあるサンプルコードの、 binder.bindInterceptor( any(), annotatedWith(Transactional.class), new TransactionInterceptor() );にあるようなイメージです。ようするに、 @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.METHOD }) @BindingAnnotation public @interface CalledLogging { /