Spring @Autowired 注解

  • @Autowired注解

    @Autowired注解提供了在哪里以及如何自动装配应做到更精细的控制。@Autowired注解可用于在setter方法上自动装配bean,就像@Required注解,构造函数,具有任意名称和/或多个参数的属性或方法一样。
  • setter方法上@Autowired注解实例

    您可以在setter方法上使用@Autowired注解,以摆脱XML配置文件中的<property>元素。当Spring找到与setter方法一起使用的@Autowired注解时,它将尝试对该方法执行byType自动装配。
    假设我们拥有一个运行良好的Eclipse IDE,并采取以下步骤来创建一个Spring应用程序:
    1. 创建一个名称为SpringExample的项目,并在创建的项目的src文件夹下创建一个包com.jc2182
    2. 使用“添加外部JAR”选项添加所需的Spring库,如“Spring Hello World示例”一章中所述。
    3. 在com.jc2182包下创建Java类TextEditor, SpellChecker 和 MainApp。
    4. 在src文件夹下创建Beans配置文件Beans.xml。
    5. 最后一步是创建所有Java文件和Bean配置文件的内容,然后按以下说明运行应用程序。
    以下是TextEditor.java内容。
    package com.jc2182;
    
    import org.springframework.beans.factory.annotation.Autowired;
    
    public class TextEditor {
       private SpellChecker spellChecker;
    
       @Autowired
       public void setSpellChecker( SpellChecker spellChecker ){
          this.spellChecker = spellChecker;
       }
       public SpellChecker getSpellChecker( ) {
          return spellChecker;
       }
       public void spellCheck() {
          spellChecker.checkSpelling();
       }
    }
    以下是另一个依赖类文件 SpellChecker.java的内容:
    package com.jc2182;
    
    public class SpellChecker {
       public SpellChecker(){
          System.out.println("Inside SpellChecker constructor." );
       }
       public void checkSpelling(){
          System.out.println("Inside checkSpelling." );
       }
    }
    以下是MainApp.java文件的内容。
    package com.jc2182;
    
    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它可以对基于setter方法注入配置
    <?xml version = "1.0" encoding = "UTF-8"?>
    
    <beans xmlns = "http://www.springframework.org/schema/beans"
       xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context = "http://www.springframework.org/schema/context"
       xsi:schemaLocation = "http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">
    
       <context:annotation-config/>
    
       <!-- Definition for textEditor bean without constructor-arg  -->
       <bean id = "textEditor" class = "com.jc2182.TextEditor">
       </bean>
    
       <!-- Definition for spellChecker bean -->
       <bean id = "spellChecker" class = "com.jc2182.SpellChecker">
       </bean>
    
    </beans>
    创建完源和Bean配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,这将打印以下消息:
    Inside SpellChecker constructor.
    Inside checkSpelling.
  • 属性上@Autowired注解实例

    您可以在属性上使用@Autowired注解,以摆脱setter方法。当您使用<property>传递自动装配属性的值时,Spring会自动为这些属性分配传递的值或引用。因此,在属性上使用@Autowired时,您的TextEditor.java文件将如下所示
    package com.jc2182;
    
    import org.springframework.beans.factory.annotation.Autowired;
    
    public class TextEditor {
       @Autowired
       private SpellChecker spellChecker;
    
       public TextEditor() {
          System.out.println("Inside TextEditor constructor." );
       }
       public SpellChecker getSpellChecker( ){
          return spellChecker;
       }
       public void spellCheck(){
          spellChecker.checkSpelling();
       }
    }
    以下是配置文件
    <?xml version = "1.0" encoding = "UTF-8"?>
    
    <beans xmlns = "http://www.springframework.org/schema/beans"
       xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context = "http://www.springframework.org/schema/context"
       xsi:schemaLocation = "http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">
    
       <context:annotation-config/>
    
       <!-- Definition for textEditor bean without constructor-arg  -->
       <bean id = "textEditor" class = "com.jc2182.TextEditor">
       </bean>
    
       <!-- Definition for spellChecker bean -->
       <bean id = "spellChecker" class = "com.jc2182.SpellChecker">
       </bean>
    
    </beans>
    创建完源和Bean配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,这将打印以下消息:
    Inside TextEditor constructor.
    Inside SpellChecker constructor.
    Inside checkSpelling.
  • 构造函数上@Autowired注解实例

    您也可以将@Autowired应用于构造函数。构造函数@Autowired注解指示,即使在XML文件中配置Bean时不使用任何&l;tconstructor-arg>元素,也应在创建Bean时自动构造该构造函数。让我们检查以下示例。
    这是TextEditor.java文件的内容
    package com.jc2182;
    
    import org.springframework.beans.factory.annotation.Autowired;
    
    public class TextEditor {
       private SpellChecker spellChecker;
    
       @Autowired
       public TextEditor(SpellChecker spellChecker){
          System.out.println("Inside TextEditor constructor." );
          this.spellChecker = spellChecker;
       }
       public void spellCheck(){
          spellChecker.checkSpelling();
       }
    }
    以下是配置文件
    <?xml version = "1.0" encoding = "UTF-8"?>
    
    <beans xmlns = "http://www.springframework.org/schema/beans"
       xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context = "http://www.springframework.org/schema/context"
       xsi:schemaLocation = "http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">
    
       <context:annotation-config/>
    
       <!-- Definition for textEditor bean without constructor-arg  -->
       <bean id = "textEditor" class = "com.jc2182.TextEditor">
       </bean>
    
       <!-- Definition for spellChecker bean -->
       <bean id = "spellChecker" class = "com.jc2182.SpellChecker">
       </bean>
    
    </beans>
    创建完源和Bean配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,这将打印以下消息:
    Inside SpellChecker constructor.
    Inside TextEditor constructor.
    Inside checkSpelling.
  • @Autowired(required = false)选项

    默认情况下,@Autowired注解表示与@Required注解类似,需要依赖项,但是,可以通过对@Autowired 使用(required = false)选项来关闭默认行为。即使您没有为age属性传递任何值,但仍然需要name属性,下面的示例仍然有效。您可以自己尝试该示例,因为除了只更改了Student.java文件之外,它与@Required注释示例相似。
    package com.jc2182;
    
    import org.springframework.beans.factory.annotation.Autowired;
    
    public class Student {
       private Integer age;
       private String name;
    
       @Autowired(required=false)
       public void setAge(Integer age) {
          this.age = age;
       }
       public Integer getAge() {
          return age;
       }
       
       @Autowired
       public void setName(String name) {
          this.name = name;
       }
       public String getName() {
          return name;
       }
    }