springboot打包如何忽略Test單元測試

springboot打包忽略Test單元測試

在maven pom.xml中加入配置:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.20.1</version>
    <configuration>
        <skipTests>true</skipTests>
    </configuration>
</plugin>

spring boot跳過maven test

在eclipse每次使用run as -> maven install, 總是運行junit test,一些test還關聯數據庫, 有的比較危險。怎麼跳過測試skip test呢?

spring-boot- maven -plugin 插件 已經集成瞭maven-surefire-plugin插件

隻需要在pom.xml裡增加

<properties>
    <!-- maven方式跳過maven test, 等同$ mvn package -Dmaven.test.skip=true -->
    <!-- <maven.test.skip>true</maven.test.skip> -->
    <!-- surefire plugin方式跳過maven test, 等同$ mvn package -DskipTests -->
    <skipTests>true</skipTests>
</properties>

這裡需要註意的是maven.test.skip,跳過瞭一切與test相關的類, 連.class都不生成, 如果允許junit測試會發現ClassNotFound錯誤,

而skipTests會編譯測試類,即生成.class文件,隻是不運行測試類, 你可以手動運行測試類。

以前沒有用spring boot的時候是這樣跳過maven test的, 在pom.xml添加:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.12.4</version>
    <configuration>
        <skipTests>true</skipTests>
    </configuration>
</plugin>

參考:http://maven.apache.org/plugins-archives/maven-surefire-plugin-2.12.4/examples/skipping-test.html

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: