springboot如何配置maven
时间: 2024-01-30 09:03:37 浏览: 204
来管理依赖和插件?
可以通过在pom.xml文件中添加依赖和插件来配置Maven。首先,需要在pom.xml文件中添加Spring Boot的父级依赖,如下所示:
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
```
然后,需要添加Spring Boot的starter依赖,以及需要的其他依赖。例如,如果想要使用Spring Data JPA和MySQL数据库,需要添加以下依赖:
```xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
```
最后,可以在pom.xml文件中配置插件,例如Spring Boot Maven插件来打包应用程序和运行应用程序。例如,以下插件可以将应用程序打包为可执行Jar文件:
```xml
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
```
阅读全文