2012-05-13から1日間の記事一覧

Spring3 AOPに挑戦(2)

それでは、ジョインポイントの情報をコンソールに表示してみましょう。SampleIntercepterのbeforeメソッドを下記のように修正します。 @Before("execution(* jp.org.tomotaro.aop.*.*(..))") public void before(JoinPoint joinPoint) throws Throwable { Sy…