Spring journey -- 自动化装配 bean Fir

Spring 从两个角度实现自动化装配:

  1. 组件扫描(component scanning)Spring 会自动发现应用上下文中所创建的 Bean;
  2. 自动装配(autowiring) Spring 自动满足 Bean 之间的依赖
代码简单实现:

一个 CD 接口:
package com.springaction.soundsystem;

/**
 * Created by user on 2/21/17.
 */
public interface CompactDisc {
    void play();
}

一个简单实现:
package com.springaction.soundsystem;

import org.springframework.stereotype.Component;

/**
 * Created by user on 2/21/17.
 */

@Component
public class SgtPeppers implements CompactDisc{

    private String title = "Sgt. Pepper's Lonly Hearts Club Band";

    private String artist = "The Beatles";

    public void play(){
        System.out.println("Playing " + title + " by " + artist);
    }
}

一个组件扫描配置类:
package com.springaction.soundsystem;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
 * Created by user on 2/21/17.
 */
@Configuration
@ComponentScan
public class CDPlayerConfig {
}

一个简单的 Junit Assert:
package com.springaction.soundsystem;

import static org.junit.Assert.*;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * Created by user on 2/21/17.
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = CDPlayerConfig.class)
public class CDPlayerTest {

    @Autowired
    private CompactDisc cd;

    @Test
    public void cdShouldNotBeNull(){
        assertNotNull(cd);
    }
}

测试结果: CompactDisc bean 被自动装配到了应用上下文中,绿条出现了。


上面用到的注解:
  1. @Component : 表明该类会作为组件类,并告知 Spring 要为这个类创建 Bean ;
  2. @Configuration : 注释位于类的顶端,它告知 Spring 容器这个类是一个拥有 bean 定义和依赖项的配置类;
  3. @Component : 默认会扫描与配置类相同包以及该包下的所有子包,查找带有@Component 注解的类;
  4. @RunWith : 注释标签是 Junit 提供的,用来说明此测试类的运行者,这里用了 SpringJUnit4ClassRunner,以便在测试开始的时候自动创建 Spring 的应用上下文;
  5. @ContextConfiguration : 会告诉应用上下文需要在配置类中加载配置。

未完等续......





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值