Spring 基础通过注解注入Bean

Posted KeepGoing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 基础通过注解注入Bean相关的知识,希望对你有一定的参考价值。

原课程:通过注解注入Bean

注入bean知识点思维导图

Spring 4.x推荐使用基于构造器的方式进行bean注入7.4.1 Dependency Injection
spring为什么推荐使用构造器注入

通过构造器和Set方法注入Bean


注意:通过构造器注入Bean时,如果只有一个构造器,可以不写@Autowired注解,详见17. Spring Beans and Dependency Injection


The following example shows a @Service Bean that uses constructor injection to obtain a required RiskAssessor bean:

package com.example.service;

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

@Service
public class DatabaseAccountService implements AccountService {

	private final RiskAssessor riskAssessor;

	@Autowired
	public DatabaseAccountService(RiskAssessor riskAssessor) {
		this.riskAssessor = riskAssessor;
	}

	// ...

}

If a bean has one constructor, you can omit the @Autowired, as shown in the following example:

@Service
public class DatabaseAccountService implements AccountService {

	private final RiskAssessor riskAssessor;

	public DatabaseAccountService(RiskAssessor riskAssessor) {
		this.riskAssessor = riskAssessor;
	}

	// ...

}

通过属性直接注入Bean

实例化和注入时指定Bean的ID

List/Set注入

直接注入List实例

将多个泛型实例注入到List

Map注入

直接注入Map实例

将多个泛型实例注入到Map

把某个类型的bean组成一个Map或者List注入到另一个bean中,可以使用@Autowired或@Resource实现。
springboot注入@autowire——Map/List

Integer等包装类型直接赋值

Spring IoC容器内置接口实例注入

以上是关于Spring 基础通过注解注入Bean的主要内容,如果未能解决你的问题,请参考以下文章

如何获取spring 注解的bean

Spring注解基础学习总结

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

注解@component定义的bean怎么注入一个通过xml定义的bean

Spring基础IOC容器及常见注解

Spring属性注入的注解