欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

详解Java的Spring框架下bean的自动装载方式

程序员文章站 2022-05-23 10:11:58
...

Spring容器可以自动装配相互协作bean之间的关系,这有助于减少对XML配置,而无需编写一个大的基于Spring应用程序的较多的和元素。

自动装配模式:
有下列自动装配模式,可用于指示Spring容器使用自动装配依赖注入。使用元素的autowire属性为一个bean定义中指定自动装配模式。

1、byName模式

这种模式规定由自动装配属性名称。Spring容器在外观上自动线属性设置为byName的XML配置文件中的bean。然后,它尝试匹配和接线其属性与配置文件中相同的名称定义的Bean。如果找到匹配项,它会注入这些bean,否则,它会抛出异常。

例如,如果一个bean定义设置为自动装配byName的配置文件,它包含aspellChecker属性(即,它有一个 setSpellChecker(…)方法),Spring就会查找名为拼写检查一个bean定义,并用它来设置该属性。仍然可以使用的标签连线其余属性。下面的例子将说明这个概念。

来创建一个Spring应用程序:
这里是TextEditor.java文件的内容:

package com.yiibai;
 
public class TextEditor {
  private SpellChecker spellChecker;
  private String name;
 
  public void setSpellChecker( SpellChecker spellChecker ){
   this.spellChecker = spellChecker;
  }
  public SpellChecker getSpellChecker() {
   return spellChecker;
  }
 
  public void setName(String name) {
   this.name = name;
  }
  public String getName() {
   return name;
  }
 
  public void spellCheck() {
   spellChecker.checkSpelling();
  }
}

下面是另外一个相关的类文件SpellChecker.java内容:

package com.yiibai;
 
public class SpellChecker {
  public SpellChecker() {
   System.out.println("Inside SpellChecker constructor." );
  }
 
  public void checkSpelling() {
   System.out.println("Inside checkSpelling." );
  }
  
}

以下是MainApp.java文件的内容:

package com.yiibai;
 
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.yiibai.TextEditor">
   <property name="spellChecker" ref="spellChecker" />
   <property name="name" value="Generic Text Editor" />
  </bean>
 
  <!-- Definition for spellChecker bean -->
  <bean id="spellChecker" class="com.yiibai.SpellChecker">
  </bean>
 
</beans>

但是,如果要使用自动装配“byName”,那么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.yiibai.TextEditor"
   autowire="byName">
   <property name="name" value="Generic Text Editor" />
  </bean>
 
  <!-- Definition for spellChecker bean -->
  <bean id="spellChecker" class="com.yiibai.SpellChecker">
  </bean>
 
</beans>

创建源代码和bean配置文件完成后,让我们运行应用程序。如果一切顺利,这将打印以下信息:

Inside SpellChecker constructor.
Inside checkSpelling.

2、byType模式

byType模式规定由自动装配属性类型。Spring容器在外观上autowire属性设置为byType的XML配置文件中的bean。然后,它尝试匹配和连接一个属性,如果它的类型有完全相同的名称的一个匹配的配置文件。如果找到匹配项,它会注入这些bean,否则,它会抛出异常。

例如,如果一个bean定义设置为自动装配byType的配置文件,它包含拼写检查类型的aspellChecker属性,查找名为拼写检查一个bean定义,并用它来设置该属性。仍然可以使用标签接线其余属性。下面的例子将说明这个概念,会发现和上面的例子没有什么区别,除了XML配置文件已被更改。

同样,来创建一个Spring应用程序说明:
这里是TextEditor.java文件的内容:

package com.yiibai;
 
public class TextEditor {
  private SpellChecker spellChecker;
  private String name;
 
  public void setSpellChecker( SpellChecker spellChecker ) {
   this.spellChecker = spellChecker;
  }
  public SpellChecker getSpellChecker() {
   return spellChecker;
  }
 
  public void setName(String name) {
   this.name = name;
  }
  public String getName() {
   return name;
  }
 
  public void spellCheck() {
   spellChecker.checkSpelling();
  }
}

下面是另外一个相关的类文件SpellChecker.java内容:

package com.yiibai;
 
public class SpellChecker {
  public SpellChecker(){
   System.out.println("Inside SpellChecker constructor." );
  }
 
  public void checkSpelling() {
   System.out.println("Inside checkSpelling." );
  }
  
}

以下是MainApp.java文件的内容:

package com.yiibai;
 
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.yiibai.TextEditor">
   <property name="spellChecker" ref="spellChecker" />
   <property name="name" value="Generic Text Editor" />
  </bean>
 
  <!-- Definition for spellChecker bean -->
  <bean id="spellChecker" class="com.yiibai.SpellChecker">
  </bean>
 
</beans>

但是,如果要使用自动装配“byType”,那么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.yiibai.TextEditor"
   autowire="byType">
   <property name="name" value="Generic Text Editor" />
  </bean>
 
  <!-- Definition for spellChecker bean -->
  <bean id="SpellChecker" class="com.yiibai.SpellChecker">
  </bean>
 
</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.yiibai.TextEditor"
   autowire="constructor">
   <constructor-arg value="Generic Text Editor"/>
  </bean>
 
  <!-- Definition for spellChecker bean -->
  <bean id="SpellChecker" class="com.yiibai.SpellChecker">
  </bean>
 
</beans>

除此之外,还有autodetect和默认方式,这里就不再细讲。

相关标签: Java基础 java