Spring4.0 学习笔记(四)

基于注解配置 Bean

在 classpath 中扫描组件

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

  • 特定组件包括

    • @Component: 基本注解, 标识了一个受 Spring 管理的组件
    • @Respository: 标识持久层组件
    • @Service: 标识服务层(业务层)组件
    • @Controller: 标识表现层组件
  • 对于扫描到的组件, Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称
  • 当在组件类上使用了特定的注解之后, 还需要在 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:include-filter context:exclude-filter 子节点支持多种类型的过滤表达式:
    • 这里写图片描述
      代码
      -包结构
      这里写图片描述
    <!-- 导入 context 命名空间 , 导入 spring-aop-4.0.2.RELEASE.jar -->
    <!-- 指定 Spring IOC 容器扫描的包 -->
    <!-- 可以通过 resource-pattern 来指定扫描的资源 -->
    <!-- 
    <context:component-scan base-package="com.anqi.anotation"
        resource-pattern="repository/*.class"></context:component-scan>
     -->

     <!-- context:exclude-filter 子节点指定排除哪些指定表达式的组件 -->
     <!--  
    <context:component-scan base-package="com.anqi.anotation">
        <context:exclude-filter type="annotation" 
            expression="org.springframework.stereotype.Repository"/>
        <context:exclude-filter type="annotation" 
            expression="org.springframework.stereotype.Repository"/>
    </context:component-scan>
    -->

    <!-- 
        context:include-filter 子节点指定包含哪些表达式的组件, 该子节点需要 use-default-filters 
            配合使用 
        use-default-filters 默认为 true 表示会扫描包下的所有资源    
    -->
    <context:component-scan base-package="com.anqi.anotation" use-default-filters="false">
        <!--
        <context:include-filter type="annotation" 
            expression="org.springframework.stereotype.Repository"/> -->
        <context:include-filter type="assignable" 
            expression="org.springframework.stereotype.Repository"/>

    </context:component-scan>
import org.springframework.stereotype.Component;

@Component
public class TestObject {
}
import org.springframework.stereotype.Controller;
@Controller
public class UserController {

    public void execute() {
        System.out.println("UserController excute");
    }
}
public interface UserRepository {
    void save();
}
import org.springframework.stereotype.Repository;
@Repository("userRepository")
public class UserRepositoryIml implements UserRepository {

    public void save() {
        System.out.println("UserRespository save..");
    }

}
import org.springframework.stereotype.Service;
@Service
public class UserService {
    public void add() {
        System.out.println("UserService ..add");
    }
}
public class Main {

    public static void main(String[] args) {

        ApplicationContext ctx = new 
                ClassPathXmlApplicationContext("bean-annotation.xml");

        TestObject testObject = (TestObject) ctx.getBean("testObject");
        System.out.println(testObject);

        UserController userController = (UserController) ctx.getBean("userController"); 
        System.out.println(userController);

        UserService userService = (UserService) ctx.getBean("userService"); 
        System.out.println(userService);

        UserRepositoryIml userRepositoryIml = (UserRepositoryIml) ctx.getBean("userRepository");
        System.out.println(userRepositoryIml);
    }

}

组件装配

使用 @Autowired 自动装配 Bean

@Autowired 注解自动装配具有兼容类型的单个 Bean属性

  • 构造器, 普通字段(即使是非 public), 一切具有参数的方法都可以应用@Authwired 注解
  • 默认情况下, 所有使用 @Authwired 注解的属性都需要被设置. 当 Spring 找不到匹配的 Bean 装配属性时,会抛出异常, 若某一属性允许不被设置, 可以设置 @Authwired 注解的 required 属性为 false
  • 默认情况下, 当 IOC 容器里存在多个类型兼容的 Bean 时, 通过类型的自动装配将无法工作. 此时可以在 @Qualifier 注解里提供 Bean 的名称. Spring 允许对方法的入参标注 @Qualifiter 已指定注入 Bean 的名称

  • @Authwired 注解也可以应用在数组类型的属性上, 此时 Spring 将会把所有匹配的 Bean 进行自动装配.

  • @Authwired 注解也可以应用在集合属性上, 此时 Spring 读取该集合的类型信息, 然后自动装配所有与之兼容的 Bean.

  • @Authwired 注解用在 java.util.Map 上时, 若该 Map 的键值为 String, 那么 Spring将自动装配与之 Map 值类型兼容的 Bean, 此时 Bean 的名称作为键值

<context:component-scan base-package="com.anqi.anotation">

</context:component-scan>
import org.springframework.stereotype.Component;
@Component
public class TestObject {
}
@Controller
public class UserController {
    @Autowired
    private UserService userService;
    public void execute() {
        System.out.println("UserController excute");
        userService.add();
    }
}
public interface UserRepository {
    void save();
}
@Repository("userRespository")
//修改bean的名称,在 main 函数 可以 getBean("userRespository")来获取
public class UserRepositoryIml implements UserRepository {
    @Autowired
    private TestObject testObject;

    public void save() {
        System.out.println("UserRespository save..");
        System.out.println(testObject);
    }

}
@Service
public class UserService {
    @Autowired
    private UserRepository userRepository;  
    /*  
        与上方效果一样             
        @Autowired
        public void setUserRepository(UserRepository userRepository) {
            this.userRepository = userRepository;
    }*/

    public void setUserRepository(UserRepository userRepository) {
        this.userRepository = userRepository;
    }
    public void add() {
        System.out.println("UserService ..add");
        userRepository.save();
    }

}

假如 TestObject 没有注解,即没被加载到 IOC 中, 那么引用将会报错

public class TestObject {
}

那么如何让引用的值为 null 而不是报错呢

@Repository("userRespository")
public class UserRepositoryIml implements UserRepository {

    @Autowired(required=false)
    private TestObject testObject;

    public void save() {
        System.out.println("UserRespository save..");
        System.out.println(testObject);
    }

}

如果有两个类实现了统一接口呢

@Repository
public class UserJdbcRepositoryIpl implements UserRepository {

    public void save() {
        System.out.println("UserJdbcRepositoryIpl...");
    }

}
@Repository("userRespository")
public class UserRepositoryIml implements UserRepository {

    @Autowired(required=false)
    private TestObject testObject;

    public void save() {
        System.out.println("UserRespository save..");
        System.out.println(testObject);
    }

}

可以采取 @Qualifier(“userJdbcRepositoryIpl”) 来指定 首字母也要小写

@Service
public class UserService {

    @Autowired
    @Qualifier("userJdbcRepositoryIpl")
    private UserRepository userRepository;  
    /*  
        与上方效果一样             
        @Autowired
        public void setUserRepository(UserRepository userRepository) {
            this.userRepository = userRepository;
    }*/

    public void setUserRepository(UserRepository userRepository) {
        this.userRepository = userRepository;
    }
    public void add() {
        System.out.println("UserService ..add");
        userRepository.save();
    }

}

使用 @Resource 或 @Inject 自动装配 Bean

  • Spring 还支持 @Resource 和 @Inject 注解,这两个注解和 @Autowired 注解的功用类似
  • @Resource 注解要求提供一个 Bean 名称的属性,若该属性为空,则自动采用标注处的变量或方法名作为 Bean 的名称
  • @Inject 和 @Autowired 注解一样也是按类型匹配注入的 Bean, 但没有 reqired 属性
  • 建议使用 @Autowired 注解

Spring 4.x 新特性:泛型依赖注入

Spring 4.x 中可以为子类注入子类对应的泛型类型的成员变量的引用

这里写图片描述

<context:component-scan base-package="com.anqi.generic.di"></context:component-scan>
public class BaseRepository<T> {

}
public class BaseService<T> {

    @Autowired
    private BaseRepository<T> repository;

    public void add() {
        System.out.println("BaseService add..");
        System.out.println(repository);
    }
}
@Repository
public class UserRepository extends BaseRepository<User>{

}
@Service
public class UserService extends BaseService<User>{
}
public class User {
}
public class Main {
    public static void main(String[] args) {
        ApplicationContext ctx = new
                ClassPathXmlApplicationContext("bean-generic-di.xml");

        UserService service = (UserService) ctx.getBean("userService");
        service.add();
        //BaseService add..
        //com.anqi.generic.di.UserRepository@4d3167f4
    }
}

猜你喜欢

转载自blog.csdn.net/baidu_37181928/article/details/80036882
今日推荐