Spring框架整合junit:包含配置文件的方式以及纯注解开发的方式

Spring框架整合junit:包含配置文件的方式以及纯注解开发的方式

    • [1. 准备工作](#1. 准备工作)
    • [2. 配置文件的方式](#2. 配置文件的方式)
      • [2.1 未整合前](#2.1 未整合前)
      • [2.2 整合以后](#2.2 整合以后)
    • [3. 纯注解开发的方式](#3. 纯注解开发的方式)
      • [3.1 未整合前](#3.1 未整合前)
      • [3.2 整合后](#3.2 整合后)

Spring框架合集:
Spring框架核心IOC的使用:IOC的作用+Bean管理+实例化Bean的方式+DI依赖注入
Spring框架核心IOC的使用:配置式开发+注解式开发+纯注解式开发

1. 准备工作

添加pom依赖

xml 复制代码
        <!-- spring整合junit -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.0.2.RELEASE</version>
            <scope>test</scope>
        </dependency>

2. 配置文件的方式

如果不整合junit,那每次在测试类中都要加载配置文件,每次都要 new 一个 ClassPathXmlApplicationContext ,整合之后可以直接调用需要测试类的方法

2.1 未整合前

java 复制代码
public class UserServiceTest {


    //spring ioc 的方式创建对象,ioc是一个map,key-value形式,key是对象的标识,value是ioc创建的对象
    @Test
    public void run1(){
        //创建spring ioc工厂,主要是为了加载spring的配置文件
    ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
        //获取bean对象

	UserService userService = (UserService) ac.getBean("xx");  //强制类型转换
    userService.hello();


    }

}

2.2 整合以后

这里的@ContextConfiguration("classpath:applicationContext.xml")里面的applicationContext.xml是配置文件,@Autowired是为userService注入值

java 复制代码
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class UserServiceTest {
    @Autowired
    private UserService userService;

    @Test
    public void run1(){

        userService.hello();


    }

}

3. 纯注解开发的方式

3.1 未整合前

未整合前每次需要new一个AnnotationConfigApplicationContext,创建工厂加载配置类,整合以后可以直接调用需要测试的类的方法

整合前的写法

java 复制代码
public class UserServiceTest {
    @Autowired
    private AccountService accountService;
    @Test
    public void run(){


    //创建工厂,加载配置类
    ApplicationContext ac = new AnnotationConfigApplicationContext(SpringConfig.class);
    AccountService accountService = (AccountService) ac.getBean("accountServiceImpl");
    System.out.println(accountService.findAll());

    }



}

3.2 整合后

java 复制代码
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SpringConfig.class)
public class UserServiceTest {
    @Autowired
    private AccountService accountService;
    @Test
    public void run(){

    System.out.println(accountService.findAll());

    }



}
相关推荐
风铃儿~8 小时前
Spring AI 入门:Java 开发者的生成式 AI 实践之路
java·人工智能·spring
hstar952712 小时前
三十三、面向对象底层逻辑-SpringMVC九大组件之HandlerExceptionResolver接口设计
java·spring·设计模式·架构
面朝大海,春不暖,花不开12 小时前
Spring Security默认配置覆盖指南
java·后端·spring
IT_Octopus14 小时前
多线程下使用缓存+锁Lock, 出现“锁失效” + “缓存未命中竞争”的缓存击穿情况,双重检查缓存解决问题
java·spring·缓存
qq_3380329219 小时前
Spring Boot/Spring应用中配置自定义RedisTemplate
spring boot·redis·spring
考虑考虑20 小时前
Springboot3.5.x版本actuator新属性
spring boot·后端·spring
萌新小码农‍1 天前
Spring框架学习day7--SpringWeb学习(概念与搭建配置)
学习·spring·状态模式
Mr Aokey1 天前
Spring MVC参数绑定终极手册:单&多参/对象/集合/JSON/文件上传精讲
java·后端·spring
长勺1 天前
Spring中@Primary注解的作用与使用
java·后端·spring
想用offer打牌1 天前
面试回答喜欢用构造器注入,面试官很满意😎...
后端·spring·面试