Spring 注入 Bean 的七种方式
逆锋起笔
共 7086字,需浏览 15分钟
·
2021-08-29 21:12
来源:juejin.cn/post/6844903813753602056
通过注解注入Bean
背景
<bean id="bean" class="beandemo.Bean" />
<context:component-scan base-package="com.company.beandemo"/>
通过注解注入的一般形式
public class MyBean{
}
//创建一个class配置文件
@Configuration
public class MyConfiguration{
//将一个Bean交由Spring进行管理
@Bean
public MyBean myBean(){
return new MyBean();
}
}
ClassPathXmlApplicationContext
,而是获取的AnnotationConfigApplicationContext
实例。ApplicationContext context = new AnnotationConfigApplicationContext(MyConfiguration.class);
MyBean myBean = cotext.getBean("myBean",MyBean.class);
System.out.println("myBean = " + myBean);
@Configuration
注解去标记了该类,这样标明该类是一个Spring的一个配置类,在加载配置的时候会去加载他。@Bean
的注解,标明这是一个注入Bean的方法,会将下面的返回的Bean注入IOC。通过构造方法注入Bean
@Component
public class MyBeanConstructor {
private AnotherBean anotherBeanConstructor;
@Autowired
public MyBeanConstructor(AnotherBean anotherBeanConstructor){
this.anotherBeanConstructor = anotherBeanConstructor;
}
@Override
public String toString() {
return "MyBean{" +
"anotherBeanConstructor=" + anotherBeanConstructor +
'}';
}
}
@Component(value="Bean的id,默认为类名小驼峰")
public class AnotherBean {
}
@Configuration
@ComponentScan("com.company.annotationbean")
public class MyConfiguration{
}
@Qualifier
注解@Conmonent
,那么我们就可以在加载Bean的时候把他像零件一样装配:wrench:到这个IOC汽车上了@Component
:@Controller 标注在Controller层 @Service 标注在Service层 @Repository 标注在dao层
@Component
的类进行注入。通过set方法注入Bean
@Component
public class MyBeanSet {
private AnotherBean anotherBeanSet;
@Autowired
public void setAnotherBeanSet(AnotherBean anotherBeanSet) {
this.anotherBeanSet = anotherBeanSet;
}
@Override
public String toString() {
return "MyBeanSet{" +
"anotherBeanSet=" + anotherBeanSet +
'}';
}
}
@AutoWired
,与上面不同的是,我们不会在实例化该类时就自动装配:wrench:这个对象,而是在显式调用setter的时候去装配。通过属性去注入Bean
@Component
public class MyBeanProperty {
@Autowired
private AnotherBean anotherBeanProperty;
@Override
public String toString() {
return "MyBeanProperty{" +
"anotherBeanProperty=" + anotherBeanProperty +
'}';
}
}
对于有些小伙伴问私有属性,Spring怎么去加载它到IOC的?推荐去看看反射
通过List注入Bean
@Component
public class MyBeanList {
private List<String> stringList;
@Autowired
public void setStringList(List<String> stringList) {
this.stringList = stringList;
}
public List<String> getStringList() {
return stringList;
}
}
@Configuration
@ComponentScan("annoBean.annotationbean")
public class MyConfiguration {
@Bean
public List<String> stringList(){
List<String> stringList = new ArrayList<String>();
stringList.add("List-1");
stringList.add("List-2");
return stringList;
}
}
@Bean
//通过该注解设定Bean注入的优先级,不一定连续数字
@Order(34)
public String string1(){
return "String-1";
}
@Bean
@Order(14)
public String string2(){
return "String-2";
}
第二种方式的优先级高于第一种,当两个都存在的时候,若要强制去使用第一种方式,则要去指定Bean的id即可
通过Map去注入Bean
@Component
public class MyBeanMap {
private Map<String,Integer> integerMap;
public Map<String, Integer> getIntegerMap() {
return integerMap;
}
@Autowired
public void setIntegerMap(Map<String, Integer> integerMap) {
this.integerMap = integerMap;
}
}
@Bean
public Map<String,Integer> integerMap(){
Map<String,Integer> integerMap = new HashMap<String, Integer>();
integerMap.put("map-1",1);
integerMap.put("map-2",2);
return integerMap;
}
@Bean
public Integer integer1(){
return 1;
}
@Bean
public Integer integer2(){
return 2;
}
逆锋起笔
是一个专注于程序员圈子的技术平台,你可以收获最新技术动态
、最新内测资格
、BAT等大厂大佬的经验
、增长自身
、学习资料
、职业路线
、赚钱思维
,微信搜索逆锋起笔
关注!
往期回顾
评论