spring-beans maven dependency

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

This module contains all the classes for supporting Spring’s manipulation of Spring beans. Most of the classes here support Spring’s bean factory implementation. For example, the classes required for processing the Spring XML configuration file and Java annotations are packed into this module.

Spring Beans Maven Dependency

Copy below Spring Beans maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>5.2.1.RELEASE</version>
</dependency>

Spring Beans Gradle Dependency

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

Download JAR File

Check for Latest Release

Reference


Comments