Spring – 通过 Setter 注入来注入字面量量
Spring IoC(控制反转)容器是 Spring Framework 的核心。它创建对象,配置和组装它们的依赖关系,管理它们的整个生命周期。容器使用依赖注入(DI)来管理组成应用程序的组件。它从配置文件 (XML) 或Java代码或Java注释和Java POJO 类中获取有关对象的信息。这些对象称为 Bean。由于Java对象及其生命周期的控制不是由开发人员完成的,因此称为控制反转。以下是 Spring IoC 的一些主要特性,
- 为我们创建对象,
- 管理我们的对象,
- 帮助我们的应用程序可配置,
- 管理依赖项
Spring 依赖注入
依赖注入是Spring IOC(Inversion of Control)提供的主要功能。 Spring-Core 模块负责通过 Constructor 或 Setter 方法注入依赖项。控制反转的设计原则强调保持Java类相互独立,容器将它们从对象创建和维护中解放出来。这些由 Spring 管理的类必须遵守 Java-Bean 的标准定义。 Spring 中的依赖注入还确保了类之间的松散耦合。 Spring 依赖注入有两种类型。
- Setter 依赖注入 (SDI)
- 构造函数依赖注入 (CDI)
To read more on Spring Dependency Injection please refer to this article: Spring Dependency Injection with Example
二传手注入
Setter Injection 是两种依赖注入方法中更简单的一种。在此,依赖注入将在 setter 和/或 getter 方法的帮助下注入。现在要在 bean 中将 Dependency Injection 设置为 Setter Injection,它是通过 bean-configuration 文件完成的。为此,要使用 Setter Injection 设置的属性在 bean-config 文件中的
所以在本文中,让我们学习如何使用 Spring 通过 Setter Injection 将我们的依赖项注入到我们的字面量中。 字面量中的Java是布尔、数字、字符或字符串数据的合成表示。它是程序中表达特定值的一种媒介,比如一个名为''/count的整数变量在下面的语句中被赋值为一个整数值。
插图:
int x = 100;
// Here 100 is a constant/literal.
插图:字符串字面量。
String s = "Hello";
示例:创建一个具有两个属性 id 和 studentName 的简单类 Student。为这两个属性创建 setter 方法和打印学生详细信息的简单方法。
Java
public class Student {
private int id;
private String studentName;
public void setId(int id) { this.id = id; }
public void setStudentName(String studentName)
{
this.studentName = studentName;
}
public void displayInfo()
{
System.out.println("Student Name is " + studentName
+ " and Roll Number is " + id);
}
}
XML
Java
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Exam {
public static void main(String[] args) {
// Using ApplicationContext tom implement Spring IoC
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// Get the bean studentAmiya
Student amiya = context.getBean("studentAmiya", Student.class);
// Calling the methods
amiya.displayInfo();
// Get the bean studentAsish
Student asish = context.getBean("studentAsish", Student.class);
// Calling the methods
asish.displayInfo();
}
}
现在让我们在 beans.xml 文件中创建一个学生 Bean,在 bean 中,您必须在
语法:标准
例如,对于这个项目,我们可以这样写
示例 1:
同样,我们可以创建另一个 bean 并像这样放置值
示例 2:
下面是 beans.xml 文件的完整代码
XML
所以现在我们的两个豆子已经准备好了。现在让我们创建一个类并在该类中定义 main() 方法。
假设我们创建了一个类名 Exam,并且我们在这个类中定义了 main() 方法。下面是考试代码。 Java类。代码中添加了注释以便更好地理解。
Java
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Exam {
public static void main(String[] args) {
// Using ApplicationContext tom implement Spring IoC
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// Get the bean studentAmiya
Student amiya = context.getBean("studentAmiya", Student.class);
// Calling the methods
amiya.displayInfo();
// Get the bean studentAsish
Student asish = context.getBean("studentAsish", Student.class);
// Calling the methods
asish.displayInfo();
}
}
现在运行你的 main() 方法,输出将是这样的。
输出:
Student Name is Amiya Rout and Roll Number is 101
Student Name is Asish Rout and Roll Number is 102