작성
·
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
주의: 업로드시 권한 문제 꼭 확인해주세요
감사합니다