spring-boot-starter
是 Spring Boot 提供的一系列启动器(Starters),这些启动器是预配置的依赖项集合,用于快速引入常见的 Spring 功能。启动器的目的是简化项目的依赖管理,使开发者可以更方便地集成和使用 Spring 的各种功能。
常见的 Spring Boot 启动器
以下是一些常见的 Spring Boot 启动器及其用途:
-
spring-boot-starter:
- 核心启动器,提供 Spring Boot 的核心功能。
-
spring-boot-starter-web:
- 用于构建 Web 应用程序,包括 Spring MVC。
-
spring-boot-starter-data-jpa:
- 用于使用 Spring Data JPA 进行数据库访问。
-
spring-boot-starter-security:
- 用于集成 Spring Security,提供安全功能。
-
spring-boot-starter-thymeleaf:
- 用于集成 Thymeleaf 模板引擎,生成动态 HTML 内容。
-
spring-boot-starter-data-mongodb:
- 用于使用 Spring Data MongoDB 进行 MongoDB 数据库访问。
-
spring-boot-starter-mail:
- 用于发送电子邮件。
-
spring-boot-starter-cache:
- 用于集成 Spring Cache,提供缓存功能。
如何使用 Spring Boot 启动器
要使用 Spring Boot 启动器,只需在项目的 pom.xml
文件中添加相应的依赖项。以下是一些示例:
1. 核心启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2. Web 启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
3. Spring Data JPA 启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
4. Spring Security 启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
5. Thymeleaf 启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
示例项目
以下是一个简单的 Spring Boot 项目示例,展示了如何使用 spring-boot-starter-web
启动器创建一个 RESTful 服务。
1. 项目结构
my-spring-boot-app
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── demo
│ │ │ └── DemoApplication.java
│ │ │ └── HelloController.java
│ │ └── resources
│ │ └── application.properties
│ └── test
│ └── java
│ └── com
│ └── example
│ └── demo
│ └── DemoApplicationTests.java
└── pom.xml
2. pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId
标签:启动器,spring,boot,Boot,Spring,starter
From: https://www.cnblogs.com/csdn001/p/18353123