springboot的pom.xml配置
时间: 2023-04-24 20:01:52 浏览: 122
maven的本地仓库配置文件settings.xml和项目中文件pom.xml.zip
Spring Boot的pom.xml配置文件包含了项目所需的依赖和插件。
首先,在顶部添加以下内容,表示使用Spring Boot框架:
```
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.1</version>
</parent>
```
然后,在dependencies节点下添加项目所需的依赖。例如,如果需要使用Spring MVC和Spring Data JPA,可以添加以下内容:
```
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependencies>
```
最后,在build节点下添加插件,例如下面的插件是用于打包可执行的jar文件:
```
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
```
这是一个简单的pom.xml配置示例,实际项目中可能需要添加更多的依赖和插件。
阅读全文