This page gives you a quick reference to get Spring Boot Starter AOP dependency for Maven or Gradle projects.
You can also download the Spring Boot Starter AOP dependency, the link given at the "Download JAR File" section.
Spring Boot Starter AOP dependency is a starter for aspect-oriented programming with Spring AOP and AspectJ.
Spring Boot Starter AOP Maven Dependency
Copy below maven dependency and paste in your project pom.xml file:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
Spring Boot Starter AOP Gradle Dependency
Copy below Gradle dependency and paste it into your project build.gradle file:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop'
Comments
Post a Comment