@Autowired自动装配

自动装配:Spring利用依赖注入(DI),完成对IOC容器中各个组件的依赖关系的赋值。
新建controller,service,dao包,在各个包下,分别新建BookController,BookService,BookRepository类。

package com.ljessie.controller;

import com.ljessie.service.BookService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;

@Controller
public class BookController {
    @Autowired
    private BookService bookService;
}
package com.ljessie.service;

import com.ljessie.dao.BookRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import javax.inject.Inject;

@Service
public class BookService {

    @Autowired
    private BookRepository bookRepository;

    public void print(){
        System.out.println(bookRepository);
    }

    @Override
    public String toString() {
        return "BookService{" +
                "bookRepository=" + bookRepository +
                '}';
    }
}
package com.ljessie.dao;

import org.springframework.stereotype.Repository;

//名字是默认的首字母小写
@Repository
public class BookRepository {

    private String lable = "1";

    public String getLable() {
        return lable;
    }

    public void setLable(String lable) {
        this.lable = lable;
    }

    @Override
    public String toString() {
        return "BookRepository{" +
                "lable='" + lable + '\'' +
                '}';
    }
}

新建MainConfigOfAutowired类

package com.ljessie.config;

import com.ljessie.bean.Car;
import com.ljessie.bean.Color;
import com.ljessie.dao.BookRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;

@Configuration
@ComponentScan({"com.ljessie.service","com.ljessie.controller","com.ljessie.dao"})
public class MainConfigOfAutowired {
}

新建IOCTest_Autowired

package com.ljessie.test;

import com.ljessie.bean.Boss;
import com.ljessie.bean.Car;
import com.ljessie.bean.Color;
import com.ljessie.config.MainConfigOfAutowired;
import com.ljessie.config.MainConfigOfLifeCycle;
import com.ljessie.dao.BookRepository;
import com.ljessie.service.BookService;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class IOCTest_Autowired {

    @Test
    public void test01(){
        //创建IOC容器
        AnnotationConfigApplicationContext annotationConfigApplicationContext = new AnnotationConfigApplicationContext(MainConfigOfAutowired.class);
        System.out.println("容器创建完成");
        BookService bean = annotationConfigApplicationContext.getBean(BookService.class);
        BookRepository bean1 = annotationConfigApplicationContext.getBean(BookRepository.class);
        System.out.println(bean1.toString());
        System.out.println(bean.toString());
        System.out.println(annotationConfigApplicationContext);
        //关闭容器
        annotationConfigApplicationContext.close();
    }
}

运行test01()

容器创建完成
BookRepository{lable='1'}
BookService{bookRepository=BookRepository{lable='1'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 10:52:38 CST 2020]; root of context hierarchy
一月 19, 2020 10:52:38 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 10:52:38 CST 2020]; root of context hierarchy

Autowired自动注入:
1.默认优先按照类型去容器中找对应的组件,annotationConfigApplicationContext.getBean(BookRepository.class);如果找到,就赋值。
2.如果找到多个相同类型的组件,再将属性的名称作为组件的id去容器中查找annotationConfigApplicationContext.getBean("bookRepository")
@Qualifier("bookRepository"):使用@Qualifier指定需要装配组件的id,而不是使用属性。
在MainConfigOfAutowired添加方法

@Bean("bookRepository2")
    public BookRepository bookRepository(){
        BookRepository bookRepository = new BookRepository();
        bookRepository.setLable("2");
        return  bookRepository;
    }

在BookService里面,给bookRepository添加@Qualifier注解,指定装配bookRepository

    @Qualifier("bookRepository")
    @Autowired(required = false)
    private BookRepository bookRepository;

注掉test01()获取bookRepository组件代码,否则会报错

//BookRepository bean1 = annotationConfigApplicationContext.getBean(BookRepository.class);
//System.out.println(bean1.toString());

运行test01()

容器创建完成
BookService{bookRepository=BookRepository{lable='1'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:00:14 CST 2020]; root of context hierarchy
一月 19, 2020 11:00:15 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:00:14 CST 2020]; root of context hierarchy

给BookService里面注入的BookRepository的id为bookRepository。修改@Qualifier为@Qualifier("bookRepository2")

    @Qualifier("bookRepository2")
    @Autowired(required = false)
    private BookRepository bookRepository;

再运行test01(),给BookService里面注入的BookRepository为MainConfigOfAutowired里面bookRepository()方法配置的BookRepository。

容器创建完成
BookService{bookRepository=BookRepository{lable='2'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:02:32 CST 2020]; root of context hierarchy
一月 19, 2020 11:02:32 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:02:32 CST 2020]; root of context hierarchy

@Primary:让Spring进行自动装配的时候,默认使用首选的Bean。也可以继续使用@Qualifier指定需要装配的bean的名字。
注掉BookService里面的@Qualifier注解

    //@Qualifier("bookRepository2")
    @Autowired(required = false)
    private BookRepository bookRepository;

MainConfigOfAutowired类的bookRepository()方法添加@Primary注解

    @Primary
    @Bean("bookRepository2")
    public BookRepository bookRepository(){
        BookRepository bookRepository = new BookRepository();
        bookRepository.setLable("2");
        return  bookRepository;
    }

运行test01(),此时给BookService注入的BookRepository是bookRepository()方法配置的BookRepository。

容器创建完成
BookService{bookRepository=BookRepository{lable='2'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:07:09 CST 2020]; root of context hierarchy
一月 19, 2020 11:07:09 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:07:09 CST 2020]; root of context hierarchy

@Resource:Spring还支持使用@Resource(JSR250)注解,可以和Autowired一样进行自动装配,默认是按照组件名称进行装配。没有@Primary功能,也没有@Autowired(required=false)功能。
修改BookService代码

//    @Qualifier("bookRepository2")
//    @Autowired(required = false)
    @Resource(name="bookRepository2")
    private BookRepository bookRepository;

运行test01()

容器创建完成
BookService{bookRepository=BookRepository{lable='2'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:12:08 CST 2020]; root of context hierarchy
一月 19, 2020 11:12:08 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:12:08 CST 2020]; root of context hierarchy

@Inject:需要导入javax.inject包,和@Autowired功能一样,支持@Primary功能,没有@Autowired(required=false)
添加Maven依赖

<!-- https://mvnrepository.com/artifact/javax.inject/javax.inject -->
        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
            <version>1</version>
        </dependency>

修改BookService代码

//    @Qualifier("bookRepository2")
//    @Autowired(required = false)
//    @Resource(name="bookRepository2")
    @Inject
    private BookRepository bookRepository;

运行test01()

容器创建完成
BookService{bookRepository=BookRepository{lable='2'}}
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:15:24 CST 2020]; root of context hierarchy
一月 19, 2020 11:15:25 上午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 19 11:15:24 CST 2020]; root of context hierarchy

@Autowired是Spring定义的,@Resource和@Inject是JAVA规范。
@Autowired标注在方法上
新建Car

package com.ljessie.bean;

import org.springframework.stereotype.Component;

@Component
public class Car {
    public Car(){
        System.out.println("Car Constructor......");
    }

    public void init(){
        System.out.println("Car init......");
    }

    public void destroy(){
        System.out.println("Car destroy......");
    }
}

新建Boss

package com.ljessie.bean;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * 默认加载IOC容器中的组件,容器启动会调用无参构造器创建对象,再进行初始化赋值操作。
 */
@Component
public class Boss {

    private Car car;
    public Car getCar() {
        return car;
    }

    @Override
    public String toString() {
        return "Boss{" +
                "car=" + car +
                '}';
    }

    /**
     * 标注在方法上,Spring容器创建当前对象,就会调用此方法,完成赋值
     * @param car 从IOC容器中获取
     */
//    @Autowired
    public void setCar(Car car) {
        this.car = car;
    }
}

在MainConfigOfAutowired类中,添加ComponentScan里面的数组,扫描bean包

@Configuration
@ComponentScan({"com.ljessie.service","com.ljessie.controller","com.ljessie.dao","com.ljessie.bean"})
public class MainConfigOfAutowired {
  //省略其他代码
}

修改IOCTest_Autowired,test01()代码

@Test
    public void test01(){
        //创建IOC容器
        AnnotationConfigApplicationContext annotationConfigApplicationContext = new AnnotationConfigApplicationContext(MainConfigOfAutowired.class);
        System.out.println("容器创建完成");
//        BookService bean = annotationConfigApplicationContext.getBean(BookService.class);
//        BookRepository bean1 = annotationConfigApplicationContext.getBean(BookRepository.class);
//        System.out.println(bean1.toString());
//        System.out.println(bean.toString());

        Boss boss = annotationConfigApplicationContext.getBean(Boss.class);
        Car car = annotationConfigApplicationContext.getBean(Car.class);
        System.out.println(boss);
        System.out.println(car);
//
//        Color color = annotationConfigApplicationContext.getBean(Color.class);
//        System.out.println(color);

        System.out.println(annotationConfigApplicationContext);
        //关闭容器
        annotationConfigApplicationContext.close();
    }

运行test01()

Car Constructor......
容器创建完成
Boss{car=null}
com.ljessie.bean.Car@7ea37dbf
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:23:28 CST 2020]; root of context hierarchy
一月 26, 2020 2:23:28 下午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:23:28 CST 2020]; root of context hierarchy

在Boss中的setCar(Car car)方法上面,添加@Autowired注释

@Autowired
    public void setCar(Car car) {
        this.car = car;
    }

再次运行test01():Boss中的Car属性已经被赋值

Car Constructor......
容器创建完成
Boss{car=com.ljessie.bean.Car@27c86f2d}
com.ljessie.bean.Car@27c86f2d
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:27:40 CST 2020]; root of context hierarchy
一月 26, 2020 2:27:40 下午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:27:40 CST 2020]; root of context hierarchy

@Autowired标注在构造器上:如果组件只有一个有参构造器,可以省略@Autowired,参数位置的组件还是从容器中获取。
在Boss中添加构造方法

 /**
     * 构造器要用的组件,也是从容器中获取
     */
    @Autowired
    public BossCar car){
        this.car = car;
        System.out.println("Boss....有参构造器");
    }

运行test01():Spring调用Boss中的有参构造器,完成Car的赋值

Car Constructor......
Boss....有参构造器
容器创建完成
Boss{car=com.ljessie.bean.Car@6a01e23}
com.ljessie.bean.Car@6a01e23
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:30:05 CST 2020]; root of context hierarchy

@Autowired标注在参数上:修改Boss中的构造方法

/**
     * 构造器要用的组件,也是从容器中获取
     */
//    @Autowired
    public Boss(@Autowired Car car){
        this.car = car;
        System.out.println("Boss....有参构造器");
    }

运行test01():同样可以完成赋值操作。

Car Constructor......
Boss....有参构造器
容器创建完成
Boss{car=com.ljessie.bean.Car@1df82230}
com.ljessie.bean.Car@1df82230
org.springframework.context.annotation.AnnotationConfigApplicationContext@7a46a697: startup date [Sun Jan 26 14:33:46 CST 2020]; root of context hierarchy

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容