pom文件结构

核心模块

spring-boot-starter:核心模块,包括自动配置支持、日志和YAML

测试模块

spring-boot-starter-test:测试模块,包括JUnit、Hamcrest、Mockito

web模块

spring-boot-starter-web

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-test</artifactId>
  9. <scope>test</scope>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-web</artifactId>
  14. </dependency>
  15. </dependencies>

参考链接

  1. 使用Spring Boot快速构建应用

  2. SpringBoot-Learning