四、Spring IoC实践和应用(三种配置方式总结)

本章概要

  • 三种配置方式总结
    • XML方式配置总结
    • XML+注解方式配置总结
    • 完全注解方式配置总结
  • 整合Spring5-Test5搭建测试环境

4.5 三种配置方式总结

4.5.1 XML方式配置总结
  1. 所有内容写到xml格式配置文件中
  2. 声明bean通过
  3. 引入外部的properties文件可以通过
  4. IoC具体容器实现选择ClassPathXmlApplicationContext对象
4.5.2 XML+注解方式配置总结
  1. 注解负责标记IoC的类和进行属性装配
  2. xml文件依然需要,需要通过
  3. 标记IoC注解:@Component,@Service,@Controller,@Repository
  4. 标记DI注解:@Autowired @Qualifier @Resource @Value
  5. IoC具体容器实现选择ClassPathXmlApplicationContext对象
4.5.3 完全注解方式配置总结
  1. 完全注解方式指的是去掉xml文件,使用配置类 + 注解实现
  2. xml文件替换成使用@Configuration注解标记的类
  3. 标记IoC注解:@Component,@Service,@Controller,@Repository
  4. 标记DI注解:@Autowired @Qualifier @Resource @Value
  5. IoC具体容器实现选择AnnotationConfigApplicationContext对象

4.6 整合Spring5-Test5搭建测试环境

  1. 整合测试环境作用
  • 好处1:不需要自己创建IOC容器对象了
  • 好处2:任何需要的bean都可以在测试类中直接享受自动装配
  1. 导入相关依赖

<dependency>
  <groupId>org.junit.jupitergroupId>
  <artifactId>junit-jupiter-apiartifactId>
  <version>5.3.1version>
dependency>
<dependency>
  <groupId>org.springframeworkgroupId>
  <artifactId>spring-testartifactId>
  <version>6.0.6version>
  <scope>testscope>
dependency>
  1. 整合测试注解使用
//@SpringJUnitConfig(locations = {"classpath:spring-context.xml"})  //指定配置文件xml
@SpringJUnitConfig(value = {BeanConfig.class})  //指定配置类
public class Junit5IntegrationTest {

    @Autowired
    private User user;

    @Test
    public void testJunit5() {
        System.out.println(user);
    }
}

你可能感兴趣的:(#,Spring,Framework,XML方式配置总结,完全注解方式配置总结)