pom文件结构
核心模块
spring-boot-starter:核心模块,包括自动配置支持、日志和YAML
测试模块
spring-boot-starter-test:测试模块,包括JUnit、Hamcrest、Mockito
web模块
spring-boot-starter-web
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>