작성
·
354
답변 3
3
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.6</version>
<scope>runtime</scope>
</dependency>
에서 <scope>runtime</scope> 를 주석처리 하니 정상적으로 되었습니다.
감사합니다.
1
1