《读spring源码》3根据bean注解探索注解形式的bean name是从哪里来的?

我们会发现bean会有一个默认的名字那么这个名字是怎么来的?
在这里插入图片描述

package com.enjoy.cap1;

import com.enjoy.cap1.config.MainConfig;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class MainTest {

    public static void main(String args[]){

        ApplicationContext app = new AnnotationConfigApplicationContext(MainConfig.class);
        String[] beanNamesForType = app.getBeanNamesForType(Person.class);
        for(String beanName:beanNamesForType){
            System.out.println(beanName);
        }
    }
}

package com.enjoy.cap1.config;


import com.enjoy.cap1.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 代表config == 配置文件
 */
@Configuration
public class MainConfig {
    //给容器中配置bean
    @Bean
    public Person person1(){
        return new Person("张三",22);
    }
}

如果把bean的名字改了然后运行程序发现
在这里插入图片描述

bean的名字改变了,而被是配置文件bean的方法名称 也就是在用注解的时候配置bean的时候方法名称对应xml配置文件中的bean id

还有一种方式可以不使用bean的名字为 方法代码如下

package com.enjoy.cap1.config;


import com.enjoy.cap1.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 代表config == 配置文件
 */
@Configuration
public class MainConfig {
    //给容器中配置bean
    @Bean("ssss")
    public Person person1(){
        return new Person("张三",22);
    }
}

测试结果如下:
在这里插入图片描述

我们可以在bean的后面直接指定bean的名称 对应xml中的bean id

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值