Spring通过注解配置bean

配置 bean有两种方式:基于 XML 文件的方式;基于注解的方式(基于注解配置 Bean;基于注解来装配 Bean 的属性)

之前我们都是在IOC配置文件xml中配置bean,现在我们尝试在代码源文件中通过注解的方式标注特定类对应的Bean。

在 classpath 中扫描组件

组件扫描(component scanning): Spring 能够从 classpath 下自动扫描, 侦测和实例化具有特定注解的组件.

特定组件包括:

@Component: 基本注解, 标识了一个受 Spring 管理的组件

@Respository: 标识持久层组件

@Service : 标识服务层(业务层)组件

@Controller : 标识表现层组件

对于扫描到的组件, Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称

当在组件类上使用了特定的注解之后, 还需要在 Spring 的配置文件中声明 :

 <context:component-scan base-package="com.lyf.B">
        <!--/<context:exclude-filter type="regex" expression=".*Axe"></context:exclude-filter>-->
    </context:component-scan>

base-package 属性指定一个需要扫描的基类包,Spring 容器将会扫描这个基类包里及其子包中的所有类.

当需要扫描多个包时, 可以使用逗号分隔.

如果仅希望扫描特定的类而非基包下的所有类,可使用 resource-pattern 属性过滤特定的类,
 <context:include-filter> 子节点表示要包含的目标类

<context:exclude-filter> 子节点表示要排除在外的目标类

<context:component-scan> 下可以拥有若干个 <context:include-filter> 和 <context:exclude-filter> 子节点

<context:include-filter> 和 <context:exclude-filter> 子节点支持多种类型的过滤表达式:

这里写图片描述

如果我们bean类中的某个属性是另一个bean,应该怎么用注解的方式进行表示呢?

这就需要进行组件装配。

@Scope:相信大家对这个不陌生吧,表示bean的作用域,使用方式:Scope(“prototype”)
@Resource:配合依赖,使用方式:Resource(name=”XXXX”)等同于xml中的配置

public interface Axe {
  void chop();
}
@Component("steel")//标识了一个受 Spring 管理的组件,name为steel
public class SteelAxe implements Axe{
    public void chop() {
        System.out.println("铁斧砍柴真快");
    }
}
@Component("stone")
@Scope("singleton")//@Scope("prototype")
//singleton每个bean定义只生成一个对象实例,每次getBean请求获得的都是此实例,prototype每次getBean()的都是不同的新实例
public class StoneAxe implements Axe{
    public void chop() {
        System.out.println("石斧砍柴真慢");
    }
}
//为属性装配
@Component
public class People {
    @Autowired//根据类型StoneAxe进行自动装配的
    private StoneAxe axe;
    /*或者
    @Autowired
    @Qualifier("stone")
    private Axe axe;
   */
   /*或者放在set方法中
    @Autowired
    public void setAxe(StoneAxe axe) {
        this.axe = axe;
    }
   */
    public Axe getAxe() {
        return axe;
    }
    public void setAxe(StoneAxe axe) {
        this.axe = axe;
    }
    public void go(){
        this.axe.chop();
    }
}

测试方法

public class Test {
    public static void main(String[] args) {
        ApplicationContext ctx=new ClassPathXmlApplicationContext("bean.xml");
        StoneAxe stoneAxe=(StoneAxe) ctx.getBean("stone");
        StoneAxe stoneAxe1=(StoneAxe) ctx.getBean("stone");
        System.out.println(stoneAxe);
        System.out.println(stoneAxe1);
        People people=(People) ctx.getBean("people");
        people.go();
    }
}

输出结果:

com.lyf.B.StoneAxe@2897ac
com.lyf.B.StoneAxe@2897ac
石斧砍柴真慢
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值