CODEDRAGON ㆍDevelopment/Spring
Spring AOP 라이브러리 설치
Maven 리포지토리 사이트에 접속
"spring aop"으로 검색
spring aop
첫번째 항목 선택
https://mvnrepository.com/search?q=spring+aop
버전번호 클릭
https://mvnrepository.com/artifact/org.springframework/spring-aop
Maven항목의 dependency 정보 복사
https://mvnrepository.com/artifact/org.springframework/spring-aop/5.1.6.RELEASE
pom.xml 파일의 <dependencies> 태그안에 붙여넣기 하여 추가합니다.
pom.xml
<!-- https://mvnrepository.com/artifact/org.springframework/spring-aop --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>5.1.6.RELEASE</version> </dependency> |
Project Explorer의 [Maven Dependencies]항목을 펼치면 라이브러리가 추가된 것을 확인할 수 있습니다.
'Development > Spring' 카테고리의 다른 글
pom.xml (0) | 2020.02.20 |
---|---|
@RequestBody (0) | 2020.02.15 |
Maven 프로젝트 설정시 필수항목 (0) | 2020.01.16 |
Index downloads are disabled, search results may be incomplete. 해결방법 (0) | 2020.01.06 |
AOP(Aspect Oriented Programming), 기존 방식, AOP 적용 방식 (0) | 2019.12.31 |