spirng-aop maven dependency

This page gives you a quick reference to get spring-aop dependency for Maven or Gradle projects. You can also download the spring-aop jar dependency, the link given at the "Download JAR File" section.

This module contains all the classes you need to use Spring’s AOP features within your application. You also need to include this JAR in your application if you plan to use other features in Spring that use AOP, such as declarative transaction management. Moreover, classes that support integration with AspectJ are packed in this module.

Learn spring AOP at https://www.javaguides.net/p/spring-aop-tutorial.html.

Spring AOP Maven Dependency

Copy below Spring AOP maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-aop -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aop</artifactId>
    <version>5.2.1.RELEASE</version>
</dependency>
For more details about the proper version to use, check out the following Maven Central link.

Spring AOP Gradle Dependency

Copy below Spring AOP Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.springframework/spring-aop
compile group: 'org.springframework', name: 'spring-aop', version: '5.2.1.RELEASE'

Download JAR File



Comments