java spring bean 中的构造函数参数中的 ref 有什么用?
What is the use of ref in constructor-arg in java spring beans?
我是 spring bean 的新手,所以我没有在构造函数参数中使用 ref。为什么不像这里的示例那样再次使用值,
这是 TextEditor.java 文件的内容:
package com.tutorialspoint;
public class TextEditor {
private SpellChecker spellChecker;
public TextEditor(SpellChecker spellChecker) {
System.out.println("Inside TextEditor constructor." );
this.spellChecker = spellChecker;
}
public void spellCheck() {
spellChecker.checkSpelling();
}
}
以下是另一个依赖 class 文件的内容 SpellChecker.java:
package com.tutorialspoint;
public class SpellChecker {
public SpellChecker(){
System.out.println("Inside SpellChecker constructor." );
}
public void checkSpelling() {
System.out.println("Inside checkSpelling." );
}
}
以下是 MainApp.java 文件的内容:
package com.tutorialspoint;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
public static void main(String[] args) {
ApplicationContext context =
new ClassPathXmlApplicationContext("Beans.xml");
TextEditor te = (TextEditor) context.getBean("textEditor");
te.spellCheck();
}
}
以下是配置文件Beans.xml,其中包含基于构造函数的注入的配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Definition for textEditor bean -->
<bean id="textEditor" class="com.tutorialspoint.TextEditor">
<constructor-arg ref="spellChecker"/>
</bean>
<!-- Definition for spellChecker bean -->
<bean id="spellChecker" class="com.tutorialspoint.SpellChecker">
</bean>
</beans>
在这里,为什么不这样做,而不是创建一个 bean textEditor 并引用另一个对象 spellChecker,您可以直接使用 spellChecker bean?
在MainApp.java
TextEditor te = (TextEditor) context.getBean("spellChecker");
如果我们使用它是因为两个对象都在不同的 classes 中,那么如果它们都在相同的 class 中,我们可以取消 ref 吗?
此外,如果多个对象引用同一个对象,是否有必要为每个 classes 创建一个 bean 并使用 ref 来引用该对象或使用相同的 bean 但 scope=prototype?
Spring bean 的 ref
属性引用在某处实例化的另一个 Spring bean。在你的例子中,SpellChecker
是一个 Spring-singleton bean,你想 "inject" 到另一个 Spring 类型的 TextEditor
bean。 ref
之所以有用,是因为你的大多数 bean 都将是 Singleton,除非你希望它们根据请求、每个会话等创建,默认范围是 Singleton。
Also if multiple objects refer to same object, is it necessary to
create a bean for each of those classes and use ref to refer to this
object or use same bean but with scope=prototype?
我猜你想说 "multiple classes refer to same object"。在这种情况下,您在 类 中所做的就是向该 bean(或对象)声明一个 "reference"。而你"inject"那个bean依赖类(或bean)。
您可以阅读更多关于 Spring bean references.
此外,如果多个对象引用同一个对象,是否有必要为每个对象创建一个 bean classes 并使用 ref 来引用该对象或使用相同的 bean 但具有范围=原型?
如果多个class引用同一个对象,你可以使用单例作用域(如果你没有在bean中指定作用域属性则默认)。在单例中,多个对象共享单例object.They 只创建对单例对象的本地引用。他们不会每次都初始化一个新对象。因此,使用的堆内存不多。
然而,在原型中,每个对象都会创建一个新的内部对象(即在本地初始化一个新的对象引用)。因此,有创建许多对象的开销,结果堆被加载。
这完全取决于您的应用程序您想要使用哪个范围。但通常,在 Web 应用程序中,人们将 Singleton 用于 DAO Connection classes,以便连接过程只发生一次,并被所有引用 DAOConnection classes 重用 class.
他们使用 POJO classes 的原型。这样每次 class 引用它时都会创建一个新对象。
我是 spring bean 的新手,所以我没有在构造函数参数中使用 ref。为什么不像这里的示例那样再次使用值,
这是 TextEditor.java 文件的内容:
package com.tutorialspoint;
public class TextEditor {
private SpellChecker spellChecker;
public TextEditor(SpellChecker spellChecker) {
System.out.println("Inside TextEditor constructor." );
this.spellChecker = spellChecker;
}
public void spellCheck() {
spellChecker.checkSpelling();
}
}
以下是另一个依赖 class 文件的内容 SpellChecker.java:
package com.tutorialspoint;
public class SpellChecker {
public SpellChecker(){
System.out.println("Inside SpellChecker constructor." );
}
public void checkSpelling() {
System.out.println("Inside checkSpelling." );
}
}
以下是 MainApp.java 文件的内容:
package com.tutorialspoint;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
public static void main(String[] args) {
ApplicationContext context =
new ClassPathXmlApplicationContext("Beans.xml");
TextEditor te = (TextEditor) context.getBean("textEditor");
te.spellCheck();
}
}
以下是配置文件Beans.xml,其中包含基于构造函数的注入的配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Definition for textEditor bean -->
<bean id="textEditor" class="com.tutorialspoint.TextEditor">
<constructor-arg ref="spellChecker"/>
</bean>
<!-- Definition for spellChecker bean -->
<bean id="spellChecker" class="com.tutorialspoint.SpellChecker">
</bean>
</beans>
在这里,为什么不这样做,而不是创建一个 bean textEditor 并引用另一个对象 spellChecker,您可以直接使用 spellChecker bean?
在MainApp.java
TextEditor te = (TextEditor) context.getBean("spellChecker");
如果我们使用它是因为两个对象都在不同的 classes 中,那么如果它们都在相同的 class 中,我们可以取消 ref 吗?
此外,如果多个对象引用同一个对象,是否有必要为每个 classes 创建一个 bean 并使用 ref 来引用该对象或使用相同的 bean 但 scope=prototype?
Spring bean 的 ref
属性引用在某处实例化的另一个 Spring bean。在你的例子中,SpellChecker
是一个 Spring-singleton bean,你想 "inject" 到另一个 Spring 类型的 TextEditor
bean。 ref
之所以有用,是因为你的大多数 bean 都将是 Singleton,除非你希望它们根据请求、每个会话等创建,默认范围是 Singleton。
Also if multiple objects refer to same object, is it necessary to create a bean for each of those classes and use ref to refer to this object or use same bean but with scope=prototype?
我猜你想说 "multiple classes refer to same object"。在这种情况下,您在 类 中所做的就是向该 bean(或对象)声明一个 "reference"。而你"inject"那个bean依赖类(或bean)。
您可以阅读更多关于 Spring bean references.
此外,如果多个对象引用同一个对象,是否有必要为每个对象创建一个 bean classes 并使用 ref 来引用该对象或使用相同的 bean 但具有范围=原型?
如果多个class引用同一个对象,你可以使用单例作用域(如果你没有在bean中指定作用域属性则默认)。在单例中,多个对象共享单例object.They 只创建对单例对象的本地引用。他们不会每次都初始化一个新对象。因此,使用的堆内存不多。
然而,在原型中,每个对象都会创建一个新的内部对象(即在本地初始化一个新的对象引用)。因此,有创建许多对象的开销,结果堆被加载。
这完全取决于您的应用程序您想要使用哪个范围。但通常,在 Web 应用程序中,人们将 Singleton 用于 DAO Connection classes,以便连接过程只发生一次,并被所有引用 DAOConnection classes 重用 class.
他们使用 POJO classes 的原型。这样每次 class 引用它时都会创建一个新对象。