springboot程序@RunWith和@Test爆紅

在搭建個人網盤項目中遇到的問題
1.springboot啓動類依賴版本2.2.1.RELEASE 需要更高的junit版本4.13

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13</version>
        </dependency>

2.去掉test

3.springboot啓動類依賴2.1.7報錯,改用2.2.1版本

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

以上參考博客
https://blog.csdn.net/lingdian1614114082/article/details/104430560

4.項目不能啓動run main方法的問題
參考我的另外一篇博客
https://blog.csdn.net/liminghui4321/article/details/103092888

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章