springboot常用starter介绍

spring开发变得非常简单方便。

1. web starter
使用Spring MVC来构建RESTful Web应用,并使用Tomcat作为默认内嵌容器


    org.springframework.boot
    spring-boot-starter-web

2. data-jpa starter
使用基于Hibernate 的 Spring Data JPA


    org.springframework.boot
    spring-boot-starter-data-jpa

3. thymeleaf starter
在MVC应用中使用Trymeleaf渲染视图


    org.springframework.boot
    spring-boot-starter-thymeleaf

4. spring-boot-starter
核心Spring Boot starter,包括自动配置支持,日志和YAML


    org.springframework.boot
    spring-boot-starter

你可能感兴趣的:(Springboot)