步骤1:创建Maven项目 步骤2:在pom.xml中添加Spring Boot相关依赖 说明:把在pom.xml添加的构建Spring Boot项目和Web场景开发对应的依赖内容写在下方。
时间: 2024-09-18 15:15:48 浏览: 120
Maven pom.xml 添加本地jar包依赖以及打包方法
创建一个Maven项目并配置Spring Boot主要是为了自动化管理项目的构建过程,并引入Spring Boot框架所需的库。以下是步骤1和步骤2的具体操作:
步骤1:创建Maven项目
首先,你需要使用Maven的`mvn archetype:generate`命令,它会帮助你快速生成一个新的Maven项目结构。选择Spring Initializr (https://start.spring.io/)也是一个方便的选择,它可以在线自动生成包含Spring Boot依赖的pom.xml。
步骤2:在pom.xml中添加Spring Boot相关依赖
在项目的`pom.xml`文件中,你需要添加Spring Boot的核心依赖,通常包括`spring-boot-starter-web`。这是为了让项目具备Web开发的功能。另外,如果你打算使用Thymeleaf作为模板引擎,还需要添加`spring-boot-starter-thymeleaf`。完整的`<dependencies>`部分可能会像这样:
```xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 如果需要Thymeleaf -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
```
阅读全文