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 {
}
```
网友评论