SpringBoot中pom.xml不引入依赖, 怎么使用parent父项目的依赖
在你的子项目中,只需按照正常的方式添加Spring Boot Starter和其他依赖项。Maven将会自动解析并包含父项目和所有依赖项。首先,确保你的Spring Boot项目是一个子项目,即它继承自一个父项目。在Spring Boot项目中,如果你想使用父项目的依赖,而不想在。这样,你就可以使用父项目中的依赖项,而无需在子项目的。中显式引入依赖,你可以使用Maven的继承机制。在上面的示例中,
在Spring Boot项目中,如果你想使用父项目的依赖,而不想在pom.xml中显式引入依赖,你可以使用Maven的继承机制。
首先,确保你的Spring Boot项目是一个子项目,即它继承自一个父项目。要实现这一点,在pom.xml文件中,将<packaging>元素设置为pom,并且在<parent>元素中指定父项目的坐标。
以下是一个示例pom.xml文件,其中包含父项目的依赖:
<?xml version="1.0" encoding="UTF-8"?>
<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>my-spring-boot-project</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<parent>
<groupId>com.example</groupId>
<artifactId>my-parent-project</artifactId>
<version>1.0.0</version>
</parent>
<!-- Spring Boot Starter dependencies -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Add other Spring Boot dependencies as needed -->
</dependencies>
<!-- Other project configuration -->
</project>
在上面的示例中,我们指定了父项目的坐标,即com.example:my-parent-project:1.0.0。这将使Maven在构建时自动继承父项目的依赖。
在你的子项目中,只需按照正常的方式添加Spring Boot Starter和其他依赖项。Maven将会自动解析并包含父项目和所有依赖项。
这样,你就可以使用父项目中的依赖项,而无需在子项目的pom.xml中显式引入它们。
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐

所有评论(0)