溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

發(fā)布時間:2021-09-03 13:25:52 來源:億速云 閱讀:184 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

    springBoot Junit測試用例出現(xiàn)@Autowired不生效

    前提條件:

    1,測試類上面添加支持的注解

    就能取到spring中的容器的實例,如果配置了@Autowired那么就自動將對象注入。

    @RunWith(SpringJUnit4ClassRunner.class)
    @SpringBootTest(classes = Application.class)//這里Application是啟動類

    pom文件添加:

    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-test</artifactId>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>4.3.25.RELEASE</version>
    <scope>compile</scope>
    </dependency>

    2,出現(xiàn)錯誤

    java.lang.NoSuchMethodError: org.springframework.util.Assert.state(ZLjava/util/function/Supplier;)V

    這種錯誤的出現(xiàn)一般都是jar包沖突,這里是將spring-test的版本號由5.1.11版本換成了4.3.25解決了(可參考比較spring-context的版本),當重復引用時也會提示錯誤,所以引入時需要注意!

    3,注解解釋

    @runWith注解作用:

    • – @RunWith就是一個運行器

    • – @RunWith(JUnit4.class)就是指用JUnit4來運行

    • – @RunWith(SpringJUnit4ClassRunner.class),讓測試運行于Spring測試環(huán) 境,以便在測試開始的時候自動創(chuàng)建Spring的應用上下文

    • – @RunWith(Suite.class)的話就是一套測試集合

    SpringTest與JUnit等其他測試框架結(jié)合起來,提供了便捷高效的測試手段。而SpringBootTest 是在SpringTest之上的再次封裝,增加了切片測試,增強了mock能力。

    4,junit測試如何在idea上通過類中方法直接生成測試用例

    第一步

    從插件資源庫中搜索JunitGenerator V2.0插件并安裝

    springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

    第二步

    配置測試用例的生成目錄

    • 1.打開File->Settings

    • 2.搜索junit,找到JUnit Generator

    • 3.Properties選項卡里的Output Path為測試用例生成的目錄,修改為test目錄:${SOURCEPATH}/../../test/java/${PACKAGE}/${FILENAME}

    • 4.切換到JUnit 4選項卡,可以修改生成測試用例的模板,比如類名、包名等

    springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

    第三步

    為指定的方法創(chuàng)建自動創(chuàng)建測試用例右鍵

    springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

    Junit中@Autowired失效

    今天學習spring注解的時候,用junit來測試

    利用注解在容器中創(chuàng)建Student對象

    springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

    然后用@Autowired注解進行自動裝配

    springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦

    出現(xiàn)了空指針異常

    原因

    在Test方法執(zhí)行的時候,并不會給你創(chuàng)建容器,junit也不知道你是否在使用spring,默認單例模式下沒有容器也就不會有@Autowired自動裝配有效

    解決方案

    1. 導入 Spring 整合 Junit 的 jar包

    在pom.xml中加入依賴

    ...
     <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-test</artifactId>
                <version>5.0.2.RELEASE</version>
            </dependency>
     ...

    注意在使用5.x的spring依賴時,junit版本需要在4.12及以上

    2. 使用 Junit 提供的一個注解 –@Runwith把原有的 main 方法替換了,替換成 Spring 提供

    3. 告知 Spring 的運行器, Spring 和 ioc 創(chuàng)建是基于 xml 還是注解的,并且說明位置,用到的注解如下

    @ContextConfiguration

    Locations : 指定 xml 文件的位置,加上 classpath 關(guān)鍵字,表示在類路徑下(適用于使用xml文件進行IOC)

    classes : 指定注解類所在地位置(適用于你使用新創(chuàng)建的配置類取代xml文件進行IOC)

    如下:

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations = "classpath:applicationContext.xml")
    public class test010 {
        @Autowired
        Student student;
        @Test
        public void test()
        {
            student.say();
        }
    }

    運行結(jié)果

    hello,Student

    感謝各位的閱讀!關(guān)于“springBoot Junit測試用例出現(xiàn)@Autowired不生效怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

    向AI問一下細節(jié)

    免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI