怎么往spring boot项目中添加 jar 包
时间: 2023-09-12 14:13:40 浏览: 97
要将 jar 包添加到 Spring Boot 项目中,您可以按照以下步骤操作:
1. 将 jar 包复制到您的项目文件夹中的某个位置(如 `lib` 目录)。
2. 在您的项目的 `pom.xml` 文件中添加 `dependency` 依赖项。例如,如果您要添加 `example.jar` 包,可以在 `pom.xml` 文件中添加以下依赖项:
```xml
<dependency>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/example.jar</systemPath>
</dependency>
```
其中,`groupId`、`artifactId` 和 `version` 需要根据您的 jar 包进行设置,`systemPath` 需要指向您刚才复制的 jar 包的路径。
3. 在 Maven 中重新加载项目或使用命令 `mvn clean install` 安装依赖项。 Gradle 用户需要重新运行 `gradle build`。
4. 添加依赖项后,您可以在您的代码中使用该 jar 包中的类和方法了。
阅读全文