在pom.xml中添加如下依赖
12345678910111213141516171819
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId></dependency>````### 测试类通过@SpringBootTest注解配置单元测试类```Java@SpringBootTestpublic class ApplicationTest { @Autowired private UserController UserController; @Test public void testJunit(){ ... }}