真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springboot單元測(cè)試兩種方法實(shí)例詳解

這篇文章主要介紹了springboot單元測(cè)試兩種方法實(shí)例詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

創(chuàng)新互聯(lián)建站云計(jì)算的互聯(lián)網(wǎng)服務(wù)提供商,擁有超過(guò)13年的服務(wù)器租用、成都西云數(shù)據(jù)中心、云服務(wù)器、網(wǎng)頁(yè)空間、網(wǎng)站系統(tǒng)開發(fā)經(jīng)驗(yàn),已先后獲得國(guó)家工業(yè)和信息化部頒發(fā)的互聯(lián)網(wǎng)數(shù)據(jù)中心業(yè)務(wù)許可證。專業(yè)提供云主機(jī)、網(wǎng)頁(yè)空間、國(guó)際域名空間、VPS主機(jī)、云服務(wù)器、香港云服務(wù)器、免備案服務(wù)器等。

springboot的單元測(cè)試,這里介紹兩種方式,一種是在測(cè)試類中添加注解;另一種是在代碼中啟動(dòng)項(xiàng)目的main方法中繼承接口(也可以寫在其他方法中)。

如 對(duì)查看數(shù)據(jù)庫(kù)的連接池信息 進(jìn)行單元測(cè)試

1. 在類上使用注解:

@RunWith(SpringRunner.class)

@SpringBootTest

@RunWith(SpringRunner.class)
@SpringBootTest
public class RobotsApplicationTests {

  @Autowired
  DataSource dataSource;

  @Test
  public void test(){
    System.out.println(dataSource.getClass());
  }

}

2. 繼承CommandLineRunner接口

CommandLineRunner:表示在項(xiàng)目啟動(dòng)完成后 會(huì)執(zhí)行該功能,只需將測(cè)試的內(nèi)容寫在其run()方法中,如:

@SpringBootApplication
@EnableScheduling
@ComponentScan(basePackages={"com.cmit.hall.plat","com.cmit.hall.pub"}) 
@ServletComponentScan(value= {"com.cmit.hall.pub.interceptor","com.cmit.hall.plat.config","com.cmit.hall.pub.session"})
@EnableredisHttpSession(maxInactiveIntervalInSeconds=1800)
public class PlatApp implements CommandLineRunner {
  
  @Autowired
  DataSource dataSource;

  public static void main(String[] args) {
    SpringApplication.run(PlatApp.class, args);
  }
  
  @Override
  public void run(String... args) throws Exception {
    System.out.println(">>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行,執(zhí)行加載數(shù)據(jù)等操作<<<<<<<<<<<<<");
    System.out.println("DATASOURCE = " + dataSource);
  }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


文章題目:springboot單元測(cè)試兩種方法實(shí)例詳解
路徑分享:http://weahome.cn/article/gspcjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部