인프런 커뮤니티 질문&답변

junhyoeung kim님의 프로필 이미지
junhyoeung kim

작성한 질문수

스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

AOP 적용

Around 기능을 사용하면 에러가 나네요

작성

·

278

0

밑에 코드처럼 프로젝트명이 hello-spring이라서 변경한건데 에러가 발생 합니다.

 

public class TimeTraceAop {

 

    @Around("execution(* hello.hello-spring..*(..)) && !target(hello.hello-spring.SpringConfig)")

    public Object execute(ProceedingJoinPoint joinPoint) throws Throwable{

        long start = System.currentTimeMillis();

        System.out.println("START: " + joinPoint.toString());

        try{

            return joinPoint.proceed();

        }finally{

            long finish = System.currentTimeMillis();

            long timeMs = finish - start;

            System.out.printf("END: " + joinPoint.toString() + " " + timeMs + "ms");

        }

    }

}

 

 

 

execution(* hello.hello-spring..*(..)) && !target(hello.hello-spring.SpringConfig)

                       ^^^^^^^

 

2022-03-28 21:51:23.929  INFO 25164 --- [           main] ConditionEvaluationReportLoggingListener : 

 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.

2022-03-28 21:51:23.982 ERROR 25164 --- [           main] o.s.boot.SpringApplication               : Application run failed

답변 1

1

 

안녕하세요. junhyoeung kim님 공식 서포터즈 OMG입니다.


전체 프로젝트를 압축해서 구글 드라이브로 공유해서 링크를 남겨주세요.
구글 드라이브 업로드 방법은 다음을 참고해주세요.

https://bit.ly/3fX6ygx

주의: 업로드시 권한 문제 꼭 확인해주세요

감사합니다

junhyoeung kim님의 프로필 이미지
junhyoeung kim

작성한 질문수

질문하기