반응형
# aspectjweaver.jar의 아이콘이 흐리게 나오며 적용이 되지 않는다.
mavenrepository.com 에서 maven dependency 코드를 받아와 보면
<!-- 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>
이렇게 scope 태그가 달려있는데,
runtime시에만 동작하도록 설정이 되어있는 것.
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.6</version>
</dependency>
<scope> 태그를 지워주면 dependencies에 제대로 적용이 된다.
반응형
'메모 > 에러 메모' 카테고리의 다른 글
Circular View Path Error (& 500 error) (0) | 2021.01.14 |
---|---|
git non-fast-foward 에러 (0) | 2021.01.09 |
[ 스프링 ] BeanCreationException (0) | 2021.01.02 |
java.io.IOException: Posted content type isn't multipart/form-data (0) | 2020.12.16 |
[ 이클립스 - JSP / Servlet 에러 ] cvc-elt.1.a: Cannot find the declaration of element 'web-app'. (0) | 2020.11.21 |