web-dev-qa-db-ja.com

Spring Boot Loggerの側面

特定のパッケージのクラスのメソッドにアクセスすると、ログのアスペクトに情報を記録させるのに問題があります。つまり、「ノー」ロギングが発生します。私は必死でSystem.out.printlnステートメントを追加しましたが、運がありませんでした。

すべてのクラスはorg.my.packageパッケージ、つまりorg.my.package.controllerの下にありますorg.my.package.modelなど.

これが私のアプリケーションクラスです:

package org.my.package;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;

@Configuration
@ComponentScan(basePackages = {"org.my.package.config"})
@EnableAutoConfiguration
@EnableAspectJAutoProxy
public class FirstWebAppApplication {

    public static void main(String[] args) {
        SpringApplication.run(FirstWebAppApplication.class, args);
    }
}

これは私の構成クラスです:

package org.my.package.config;

import org.deloitte.javatraining.daythree.utilities.MyLogger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;

@Configuration
@EnableAspectJAutoProxy
@ComponentScan(basePackages = {"org.my.package.utilities"})
public class AssetConfig {

    //-----------------------------------------------------------------------------------------------------------------------
    @Bean   
    public MyLogger myLogger(){
       return new MyLogger();
    }
}

これは私のアスペクトクラスです:

package org.my.package.utilities;

import org.Apache.commons.logging.Log;
import org.Apache.commons.logging.LogFactory;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class MyLogger {

    /** Handle to the log file */
    private final Log log = LogFactory.getLog(getClass());

    public MyLogger () {}

    @AfterReturning("execution(* org.my.package.*.*(..))")
    public void logMethodAccessAfter(JoinPoint joinPoint) {
        log.info("***** Completed: " + joinPoint.getSignature().getName() + " *****");
        System.out.println("***** Completed: " + joinPoint.getSignature().getName() + " *****");
    }

    @Before("execution(* org.my.package.*.*(..))")
    public void logMethodAccessBefore(JoinPoint joinPoint) {
        log.info("***** Starting: " + joinPoint.getSignature().getName() + " *****");
        System.out.println("***** Starting: " + joinPoint.getSignature().getName() + " *****");
    }
}

これらは私のGradleビルド依存関係です:

dependencies {
    compile("org.springframework.boot:spring-boot-starter-data-jpa")
    compile("org.springframework.boot:spring-boot-starter-web")
    compile('com.h2database:h2:1.3.156')
    compile('javax.servlet:jstl:1.2')
    compile('org.springframework.boot:spring-boot-starter-aop')
    providedRuntime("org.Apache.Tomcat.embed:Tomcat-embed-jasper")
    testCompile("org.springframework.boot:spring-boot-starter-test") 
}

何か欠けているのか、それともアスペクトクラスを誤って設定していますか?他の同様のスタックオーバーフローの質問とオンラインチュートリアルで確認したところ、問題は見つかりませんでした。

お知らせ下さい。

15
Rick

ポイントカットexecution( * org.my.package.*.*(..))は、サブパッケージではなく、_org.my.package_ packageのクラスでのメソッドの実行にのみ一致します。

あなたがおそらく望んでいるのはexecution( * org.my.package..*.*(..)) _.._ではなく_._に注意してください。

16
M. Deinum