Spring boot 整合Junit

由于要在一个新springBoot项目上整合junit,遇到一点波折,记录下来,遇到此坑的可以看下

之前的项目是基于springMVC的,整合junit的代码不能完全复制过来,所以在网上搜了一下如何基于springBoot框架整合junit

大致都会说

1.引入pom依赖


   junit
   junit
    4.12


   org.springframework.boot
   spring-boot-starter-test

2.建一个测试类

加上类注解

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)

@WebAppConfiguration

3.测试方法名上加注解

@Test

然后Run就行了

实际上我去引入依赖之后 在测试类上添加@SpringApplicationConfiguration注解时 会发生找不到类的错误

后来知道springBoot测试里用的是

@SpringBootTest(classes = 启动类.class)

class = 这里要写上自己的SpringBoot启动类

就这一个坑。。

你可能感兴趣的:(工作经验)