SpringIoc容器中bean的存取

方式一:

xml配置文件:applicationContext.xml

存bean:<bean id class>

取bean:

ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
context.getBean();

方式二:

存bean:

@Bean+方法返回值

@Configuration
public class Test {
    
    //默认名字是stu(方法名),可以自定义(stuBean)
    @Bean(stuBean)  //@Bean
    public Student stu(){
        Student stu1 = new Student("zansan", 10);
        return stu1;  //返回值
    }
}

 取bean:

ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);

注解形式的存bean详解:

1、必须有@Configuration注解(配置类)

2、形式:

三层组件(@Controller、@Service、@Repository------>@Component)

整体基础:在三层类上加注解和扫描器,让ioc容器识别

 1)给三层组件分别加注解

2)将注解所在包纳入ioc扫描器(ComponentScan):

xml配置文件:

<context:component-scan base-package="com.yanqun.controller"></context:component-scan>

注解扫描器:

component-scan:只对三层负责

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值