Spring4学习笔记(八):通过注解的方式配置bean和@Autowired 自动装配

来源:互联网 发布:雷霆vs快船球员数据 编辑:程序博客网 时间:2024/06/05 02:48

在 classpath 中扫描组件
组件扫描(component scanning): Spring 能够从 classpath 下自动扫描, 侦测和实例化具有特定注解的组件.
特定组件包括:
@Component: 基本注解, 标识了一个受 Spring 管理的组件
@Respository: 标识持久层组件
@Service: 标识服务层(业务层)组件
@Controller: 标识表现层组件
对于扫描到的组件, Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称

在 classpath 中扫描组件
还需要在 Spring 的配置文件中声明 <context:component-scan>
base-package 属性指定一个需要扫描的基类包,Spring 容器将会扫描这个基类包里及其子包中的所有类.
如果仅希望扫描特定的类而非基包下的所有类,可使用 resource-pattern 属性过滤特定的类
当需要扫描多个包时, 可以使用逗号分隔.
<context:include-filter>子节点表示要包含的目标类
<context:exclude-filter> 子节点表示要排除在外的目标类
<context:component-scan>下可以拥有若干个 <context:include-filter><context:exclude-filter> 子节点

组件装配
<context:component-scan>元素还会自动注AutowiredAnnotationBean PostProcessor 实例, 该实例可以自动装配具有 @Autowired 和 @Resource 、@Inject注解的属性.

使用@Autowired自动装配bean
@Autowired 注解自动装配具有兼容类型的单个 Bean属性
构造器, 普通字段(即使是非 public), 一切具有参数的方法都可以应用@Authwired 注解
默认情况下, 所有使用 @Authwired 注解的属性都需要被设置. 当 Spring 找不到匹配的 Bean 装配属性时, 会抛出异常, 若某一属性允许不被设置, 可以设置 @Authwired 注解的 required 属性为 false
默认情况下, 当 IOC 容器里存在多个类型兼容的 Bean 时, 通过类型的自动装配将无法工作. 此时可以在 @Qualifier 注解里提供 Bean 的名称. Spring 允许对方法的入参标注 @Qualifiter 已指定注入 Bean 的名称
@Autowired 注解也可以应用在数组类型的属性上, 此时 Spring 将会把所有匹配的 Bean 进行自动装配.
@Autowired 注解也可以应用在集合属性上, 此时 Spring 读取该集合的类型信息, 然后自动装配所有与之兼容的 Bean.
@Autowired注解用在 java.util.Map 上时, 若该 Map 的键值为 String, 那么 Spring 将自动装配与之 Map 值类型兼容的 Bean, 此时 Bean 的名称作为键值

实例:
1、项目的架构
这里写图片描述
2、持久层

public interface UserDao {//持久层接口    public void add(UserBean userBean);}
@Repositorypublic class UserDaoImp implements UserDao{//持久层实现类    @Override    public void add(UserBean userBean) {        System.out.println("this is @Repository 持久层实现UserDao");        System.out.println("add:" + userBean);    }}

3、业务层

@Servicepublic class UserService {    @Autowired    private UserBean userBean;    @Autowired    private UserDao userDao;    public void service(){        userDao.add(userBean);        System.out.println("ths is @Servive 业务层,调用持久层的Add方法");    }}

4、表现层

@Servicepublic class UserController {//表现层    @Autowired    private UserService userService;    public void controller(){        userService.service();        System.out.println("this is @Controller表现层 调用业务层");    }}

5、xml配置

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:context="http://www.springframework.org/schema/context"    xmlns:p="http://www.springframework.org/schema/p"    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">    <!-- 指定IOC容器扫描包 -->    <context:component-scan base-package="com.spring.autowired" ></context:component-scan>    <bean id="userBean" class="com.spring.bean.UserBean" p:name="zhangsan" p:password="123"></bean></beans>

6、Run

public class Run {    public static void main(String[] args) {        // TODO Auto-generated method stub        AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");        UserController uc = ctx.getBean(UserController.class);        uc.controller();        ctx.close();    }}

7、UserBean

package com.spring.bean;public class UserBean {//userbean    private String name;    private String password;    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public String getPassword() {        return password;    }    public void setPassword(String password) {        this.password = password;    }    @Override    public String toString() {        return "UserBean [name=" + name + ", password=" + password + "]";    }}
阅读全文
0 0