spring 测试类头部

spring mvc

```

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration("classpath:spring-mvc.xml")

public class BatchInsertTest {

}

```

spring boot

```

@RunWith(SpringRunner.class)

@SpringBootTest(classes = IotGpsServerApplication.class)

public class AddCdstbTest {

}

```

你可能感兴趣的:(spring 测试类头部)